mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-07 11:08:20 +00:00
removed temporary mypy fix
Signed-off-by: Daniele Martinoli <dmartino@redhat.com>
This commit is contained in:
parent
c5b720851a
commit
1a6825ccb9
2 changed files with 1 additions and 4 deletions
|
@ -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 = {}
|
||||
|
|
|
@ -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/",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue