@@ -72,14 +72,14 @@ description: |
7272 Example with hybrid search:
7373 ```python
7474 response = await vector_io.query_chunks(
75- vector_db_id ="my_db",
75+ vector_store_id ="my_db",
7676 query="your query here",
7777 params={"mode": "hybrid", "max_chunks": 3, "score_threshold": 0.7},
7878 )
7979
8080 # Using RRF ranker
8181 response = await vector_io.query_chunks(
82- vector_db_id ="my_db",
82+ vector_store_id ="my_db",
8383 query="your query here",
8484 params={
8585 "mode": "hybrid",
@@ -91,7 +91,7 @@ description: |
9191
9292 # Using weighted ranker
9393 response = await vector_io.query_chunks(
94- vector_db_id ="my_db",
94+ vector_store_id ="my_db",
9595 query="your query here",
9696 params={
9797 "mode": "hybrid",
@@ -105,7 +105,7 @@ description: |
105105 Example with explicit vector search:
106106 ```python
107107 response = await vector_io.query_chunks(
108- vector_db_id ="my_db",
108+ vector_store_id ="my_db",
109109 query="your query here",
110110 params={"mode": "vector", "max_chunks": 3, "score_threshold": 0.7},
111111 )
@@ -114,7 +114,7 @@ description: |
114114 Example with keyword search:
115115 ```python
116116 response = await vector_io.query_chunks(
117- vector_db_id ="my_db",
117+ vector_store_id ="my_db",
118118 query="your query here",
119119 params={"mode": "keyword", "max_chunks": 3, "score_threshold": 0.7},
120120 )
@@ -277,14 +277,14 @@ The SQLite-vec provider supports three search modes:
277277Example with hybrid search:
278278``` python
279279response = await vector_io.query_chunks(
280- vector_db_id = " my_db" ,
280+ vector_store_id = " my_db" ,
281281 query = " your query here" ,
282282 params = {" mode" : " hybrid" , " max_chunks" : 3 , " score_threshold" : 0.7 },
283283)
284284
285285# Using RRF ranker
286286response = await vector_io.query_chunks(
287- vector_db_id = " my_db" ,
287+ vector_store_id = " my_db" ,
288288 query = " your query here" ,
289289 params = {
290290 " mode" : " hybrid" ,
@@ -296,7 +296,7 @@ response = await vector_io.query_chunks(
296296
297297# Using weighted ranker
298298response = await vector_io.query_chunks(
299- vector_db_id = " my_db" ,
299+ vector_store_id = " my_db" ,
300300 query = " your query here" ,
301301 params = {
302302 " mode" : " hybrid" ,
@@ -310,7 +310,7 @@ response = await vector_io.query_chunks(
310310Example with explicit vector search:
311311``` python
312312response = await vector_io.query_chunks(
313- vector_db_id = " my_db" ,
313+ vector_store_id = " my_db" ,
314314 query = " your query here" ,
315315 params = {" mode" : " vector" , " max_chunks" : 3 , " score_threshold" : 0.7 },
316316)
@@ -319,7 +319,7 @@ response = await vector_io.query_chunks(
319319Example with keyword search:
320320``` python
321321response = await vector_io.query_chunks(
322- vector_db_id = " my_db" ,
322+ vector_store_id = " my_db" ,
323323 query = " your query here" ,
324324 params = {" mode" : " keyword" , " max_chunks" : 3 , " score_threshold" : 0.7 },
325325)
0 commit comments