@@ -36,7 +36,7 @@ def test_method_top_documents_with_all_params(self, client: Zeroentropy) -> None
36
36
collection_name = "collection_name" ,
37
37
k = 0 ,
38
38
query = "query" ,
39
- filter = "string" ,
39
+ filter = {} ,
40
40
include_metadata = True ,
41
41
)
42
42
assert_matches_type (QueryTopDocumentsResponse , query , path = ["response" ])
@@ -84,7 +84,7 @@ def test_method_top_pages_with_all_params(self, client: Zeroentropy) -> None:
84
84
collection_name = "collection_name" ,
85
85
k = 0 ,
86
86
query = "query" ,
87
- filter = "string" ,
87
+ filter = {} ,
88
88
include_content = True ,
89
89
)
90
90
assert_matches_type (QueryTopPagesResponse , query , path = ["response" ])
@@ -132,7 +132,7 @@ def test_method_top_snippets_with_all_params(self, client: Zeroentropy) -> None:
132
132
collection_name = "collection_name" ,
133
133
k = 0 ,
134
134
query = "query" ,
135
- filter = "string" ,
135
+ filter = {} ,
136
136
precise_responses = True ,
137
137
)
138
138
assert_matches_type (QueryTopSnippetsResponse , query , path = ["response" ])
@@ -184,7 +184,7 @@ async def test_method_top_documents_with_all_params(self, async_client: AsyncZer
184
184
collection_name = "collection_name" ,
185
185
k = 0 ,
186
186
query = "query" ,
187
- filter = "string" ,
187
+ filter = {} ,
188
188
include_metadata = True ,
189
189
)
190
190
assert_matches_type (QueryTopDocumentsResponse , query , path = ["response" ])
@@ -232,7 +232,7 @@ async def test_method_top_pages_with_all_params(self, async_client: AsyncZeroent
232
232
collection_name = "collection_name" ,
233
233
k = 0 ,
234
234
query = "query" ,
235
- filter = "string" ,
235
+ filter = {} ,
236
236
include_content = True ,
237
237
)
238
238
assert_matches_type (QueryTopPagesResponse , query , path = ["response" ])
@@ -280,7 +280,7 @@ async def test_method_top_snippets_with_all_params(self, async_client: AsyncZero
280
280
collection_name = "collection_name" ,
281
281
k = 0 ,
282
282
query = "query" ,
283
- filter = "string" ,
283
+ filter = {} ,
284
284
precise_responses = True ,
285
285
)
286
286
assert_matches_type (QueryTopSnippetsResponse , query , path = ["response" ])
0 commit comments