Skip to content

Commit 1942a52

Browse files
committed
fix: fix attributes parameters type to be consistent
Signed-off-by: Jorge Garcia Oncins <jgarciao@redhat.com>
1 parent 70609e5 commit 1942a52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/llama_stack/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def vector_store_create_and_poll(
7979
vector_store_id: str,
8080
file_id: str,
8181
*,
82-
attributes: Any,
82+
attributes: dict[str, str | int | float | bool] | None = None,
8383
poll_interval_sec: float = 5.0,
8484
wait_timeout: float = 240.0,
8585
) -> VectorStoreFile:

0 commit comments

Comments
 (0)