@@ -237,6 +237,7 @@ def list(
237237 * ,
238238 limit : int | NotGiven = NOT_GIVEN ,
239239 offset : int | NotGiven = NOT_GIVEN ,
240+ q : Optional [str ] | NotGiven = NOT_GIVEN ,
240241 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
241242 # The extra values given here take precedence over values defined on the client or passed to this method.
242243 extra_headers : Headers | None = None ,
@@ -245,9 +246,10 @@ def list(
245246 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
246247 ) -> SyncLimitOffset [VectorStore ]:
247248 """
248- List all vector stores.
249+ List all vector stores with optional search .
249250
250- Args: pagination: The pagination options.
251+ Args: pagination: The pagination options. q: Optional search query to filter
252+ vector stores.
251253
252254 Returns: VectorStoreListResponse: The list of vector stores.
253255
@@ -256,6 +258,8 @@ def list(
256258
257259 offset: Offset of the first item to return
258260
261+ q: Search query for fuzzy matching over name and description fields
262+
259263 extra_headers: Send extra headers
260264
261265 extra_query: Add additional query parameters to the request
@@ -276,6 +280,7 @@ def list(
276280 {
277281 "limit" : limit ,
278282 "offset" : offset ,
283+ "q" : q ,
279284 },
280285 vector_store_list_params .VectorStoreListParams ,
281286 ),
@@ -667,6 +672,7 @@ def list(
667672 * ,
668673 limit : int | NotGiven = NOT_GIVEN ,
669674 offset : int | NotGiven = NOT_GIVEN ,
675+ q : Optional [str ] | NotGiven = NOT_GIVEN ,
670676 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
671677 # The extra values given here take precedence over values defined on the client or passed to this method.
672678 extra_headers : Headers | None = None ,
@@ -675,9 +681,10 @@ def list(
675681 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
676682 ) -> AsyncPaginator [VectorStore , AsyncLimitOffset [VectorStore ]]:
677683 """
678- List all vector stores.
684+ List all vector stores with optional search .
679685
680- Args: pagination: The pagination options.
686+ Args: pagination: The pagination options. q: Optional search query to filter
687+ vector stores.
681688
682689 Returns: VectorStoreListResponse: The list of vector stores.
683690
@@ -686,6 +693,8 @@ def list(
686693
687694 offset: Offset of the first item to return
688695
696+ q: Search query for fuzzy matching over name and description fields
697+
689698 extra_headers: Send extra headers
690699
691700 extra_query: Add additional query parameters to the request
@@ -706,6 +715,7 @@ def list(
706715 {
707716 "limit" : limit ,
708717 "offset" : offset ,
718+ "q" : q ,
709719 },
710720 vector_store_list_params .VectorStoreListParams ,
711721 ),
0 commit comments