diff --git a/llama_stack/providers/remote/vector_io/qdrant/qdrant.py b/llama_stack/providers/remote/vector_io/qdrant/qdrant.py index c850aef12..70e75a420 100644 --- a/llama_stack/providers/remote/vector_io/qdrant/qdrant.py +++ b/llama_stack/providers/remote/vector_io/qdrant/qdrant.py @@ -103,10 +103,6 @@ class QdrantVectorIOAdapter(VectorIO, VectorDBsProtocolPrivate): def __init__( self, config: Union[RemoteQdrantVectorIOConfig, InlineQdrantVectorIOConfig], inference_api: Api.inference ) -> None: - # TODO: this is required otherwise the precommit hook fails with - # _init__.py:17: error: Cannot instantiate abstract class "QdrantVectorIOAdapter" with abstract attribute "vector_db_store" [abstract] - # Will investigate further and remove it once fixed - self.vector_db_store = None self.config = config self.client: AsyncQdrantClient = None self.cache = {} diff --git a/pyproject.toml b/pyproject.toml index 4a5befbd0..68df76600 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -248,6 +248,7 @@ exclude = [ "^llama_stack/providers/inline/vector_io/chroma/", "^llama_stack/providers/inline/vector_io/faiss/", "^llama_stack/providers/inline/vector_io/milvus/", + "^llama_stack/providers/inline/vector_io/qdrant/", "^llama_stack/providers/inline/vector_io/sqlite_vec/", "^llama_stack/providers/remote/agents/sample/", "^llama_stack/providers/remote/datasetio/huggingface/",