mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-05 20:27:35 +00:00
fix: make provider_id a required field in vector DB registration
This commit is contained in:
parent
9e5ef1af3c
commit
820ec43eed
2 changed files with 2 additions and 11 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue