Skip to content

Commit 753c08b

Browse files
committed
fix: fix parameter name when calling vector_stores.delete
Signed-off-by: Jorge Garcia Oncins <jgarciao@redhat.com>
1 parent 122f1a8 commit 753c08b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/llama_stack/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def vector_store(
263263
yield vector_store
264264

265265
try:
266-
llama_stack_client.vector_stores.delete(id=vector_store.id)
266+
llama_stack_client.vector_stores.delete(vector_store_id=vector_store.id)
267267
LOGGER.info(f"Deleted vector store {vector_store.id}")
268268
except Exception as e:
269269
LOGGER.warning(f"Failed to delete vector store {vector_store.id}: {e}")

0 commit comments

Comments
 (0)