fix: make provider_id a required field in vector DB registration

This commit is contained in:
Habeb Nawatha 2025-08-14 17:09:59 +03:00 committed by Sébastien Han
parent 9e5ef1af3c
commit 820ec43eed
2 changed files with 2 additions and 11 deletions

View file

@ -90,8 +90,8 @@ class VectorDBs(Protocol):
self,
vector_db_id: str,
embedding_model: str,
provider_id: str,
embedding_dimension: int | None = 384,
provider_id: str | None = None,
vector_db_name: str | None = None,
provider_vector_db_id: str | None = None,
) -> VectorDB: