3030URL = "https://jigsawstack.com"
3131
3232
33- # Deep Research Test Cases
3433DEEP_RESEARCH_TEST_CASES = [
3534 {
3635 "name" : "basic_deep_research" ,
37- "params" : {
38- "query" : "climate change effects" ,
39- },
40- },
41- {
42- "name" : "technical_deep_research" ,
43- "params" : {
44- "query" : "quantum computing applications in cryptography" ,
45- },
46- },
47- {
48- "name" : "deep_research_with_depth" ,
49- "params" : {
50- "query" : "renewable energy sources" ,
51- "depth" : 2 ,
52- },
53- },
36+ "params" : {"query" : "climate change effects" , "max_depth" : 1 },
37+ }
5438]
5539
5640
@@ -72,7 +56,6 @@ def test_deep_research(self, test_case):
7256 assert isinstance (result ["results" ], str )
7357 assert len (result ["results" ]) > 0
7458
75- # Check for sources
7659 if "sources" in result :
7760 assert isinstance (result ["sources" ], list )
7861
@@ -99,7 +82,6 @@ async def test_deep_research_async(self, test_case):
9982 assert isinstance (result ["results" ], str )
10083 assert len (result ["results" ]) > 0
10184
102- # Check for sources
10385 if "sources" in result :
10486 assert isinstance (result ["sources" ], list )
10587
0 commit comments