From 82ddee142cd74fd08f2ebfd869dedf4d8240305b Mon Sep 17 00:00:00 2001 From: Ben Browning Date: Fri, 14 Feb 2025 09:24:17 -0500 Subject: [PATCH] fix: Update QdrantConfig to QdrantVectorIOConfig This fixes an import introduced due to merging #1079 before #1039, and thus the changes from #1039 needing to update `QdrantConfig` to `QdrantVectorIOConfig`. Signed-off-by: Ben Browning --- llama_stack/providers/tests/vector_io/fixtures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_stack/providers/tests/vector_io/fixtures.py b/llama_stack/providers/tests/vector_io/fixtures.py index beb9b4ebd..1797d47a5 100644 --- a/llama_stack/providers/tests/vector_io/fixtures.py +++ b/llama_stack/providers/tests/vector_io/fixtures.py @@ -17,7 +17,7 @@ from llama_stack.providers.inline.vector_io.faiss import FaissVectorIOConfig from llama_stack.providers.inline.vector_io.sqlite_vec import SQLiteVectorIOConfig from llama_stack.providers.remote.vector_io.chroma import ChromaVectorIOConfig from llama_stack.providers.remote.vector_io.pgvector import PGVectorVectorIOConfig -from llama_stack.providers.remote.vector_io.qdrant import QdrantConfig +from llama_stack.providers.remote.vector_io.qdrant import QdrantVectorIOConfig from llama_stack.providers.remote.vector_io.weaviate import WeaviateVectorIOConfig from llama_stack.providers.tests.resolver import construct_stack_for_test from llama_stack.providers.utils.kvstore.config import SqliteKVStoreConfig @@ -132,7 +132,7 @@ def vector_io_chroma() -> ProviderFixture: def vector_io_qdrant() -> ProviderFixture: url = os.getenv("QDRANT_URL") if url: - config = QdrantConfig(url=url) + config = QdrantVectorIOConfig(url=url) provider_type = "remote::qdrant" else: raise ValueError("QDRANT_URL must be set")