@@ -57,7 +57,7 @@ def insert(
5757 * ,
5858 chunk_size_in_tokens : int ,
5959 documents : Iterable [Document ],
60- vector_db_id : str ,
60+ vector_store_id : str ,
6161 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6262 # The extra values given here take precedence over values defined on the client or passed to this method.
6363 extra_headers : Headers | None = None ,
@@ -73,7 +73,7 @@ def insert(
7373
7474 documents: List of documents to index in the RAG system
7575
76- vector_db_id : ID of the vector database to store the document embeddings
76+ vector_store_id : ID of the vector database to store the document embeddings
7777
7878 extra_headers: Send extra headers
7979
@@ -90,7 +90,7 @@ def insert(
9090 {
9191 "chunk_size_in_tokens" : chunk_size_in_tokens ,
9292 "documents" : documents ,
93- "vector_db_id " : vector_db_id ,
93+ "vector_store_id " : vector_store_id ,
9494 },
9595 rag_tool_insert_params .RagToolInsertParams ,
9696 ),
@@ -104,7 +104,7 @@ def query(
104104 self ,
105105 * ,
106106 content : InterleavedContent ,
107- vector_db_ids : SequenceNotStr [str ],
107+ vector_store_ids : SequenceNotStr [str ],
108108 query_config : QueryConfig | Omit = omit ,
109109 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
110110 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -119,7 +119,7 @@ def query(
119119 Args:
120120 content: The query content to search for in the indexed documents
121121
122- vector_db_ids : List of vector database IDs to search within
122+ vector_store_ids : List of vector database IDs to search within
123123
124124 query_config: (Optional) Configuration parameters for the query operation
125125
@@ -136,7 +136,7 @@ def query(
136136 body = maybe_transform (
137137 {
138138 "content" : content ,
139- "vector_db_ids " : vector_db_ids ,
139+ "vector_store_ids " : vector_store_ids ,
140140 "query_config" : query_config ,
141141 },
142142 rag_tool_query_params .RagToolQueryParams ,
@@ -173,7 +173,7 @@ async def insert(
173173 * ,
174174 chunk_size_in_tokens : int ,
175175 documents : Iterable [Document ],
176- vector_db_id : str ,
176+ vector_store_id : str ,
177177 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
178178 # The extra values given here take precedence over values defined on the client or passed to this method.
179179 extra_headers : Headers | None = None ,
@@ -189,7 +189,7 @@ async def insert(
189189
190190 documents: List of documents to index in the RAG system
191191
192- vector_db_id : ID of the vector database to store the document embeddings
192+ vector_store_id : ID of the vector database to store the document embeddings
193193
194194 extra_headers: Send extra headers
195195
@@ -206,7 +206,7 @@ async def insert(
206206 {
207207 "chunk_size_in_tokens" : chunk_size_in_tokens ,
208208 "documents" : documents ,
209- "vector_db_id " : vector_db_id ,
209+ "vector_store_id " : vector_store_id ,
210210 },
211211 rag_tool_insert_params .RagToolInsertParams ,
212212 ),
@@ -220,7 +220,7 @@ async def query(
220220 self ,
221221 * ,
222222 content : InterleavedContent ,
223- vector_db_ids : SequenceNotStr [str ],
223+ vector_store_ids : SequenceNotStr [str ],
224224 query_config : QueryConfig | Omit = omit ,
225225 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
226226 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -235,7 +235,7 @@ async def query(
235235 Args:
236236 content: The query content to search for in the indexed documents
237237
238- vector_db_ids : List of vector database IDs to search within
238+ vector_store_ids : List of vector database IDs to search within
239239
240240 query_config: (Optional) Configuration parameters for the query operation
241241
@@ -252,7 +252,7 @@ async def query(
252252 body = await async_maybe_transform (
253253 {
254254 "content" : content ,
255- "vector_db_ids " : vector_db_ids ,
255+ "vector_store_ids " : vector_store_ids ,
256256 "query_config" : query_config ,
257257 },
258258 rag_tool_query_params .RagToolQueryParams ,
0 commit comments