mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-13 14:22:35 +00:00
Added in registry and tests passed
This commit is contained in:
parent
c2d74188ee
commit
07e9da19b3
5 changed files with 42 additions and 25 deletions
|
|
@ -84,4 +84,14 @@ def available_providers() -> List[ProviderSpec]:
|
|||
config_class="llama_stack.providers.adapters.memory.qdrant.QdrantConfig",
|
||||
),
|
||||
),
|
||||
remote_provider_spec(
|
||||
Api.memory,
|
||||
AdapterSpec(
|
||||
adapter_type="pinecone",
|
||||
pip_packages=EMBEDDING_DEPS + ["pinecone"],
|
||||
module="llama_stack.providers.adapters.memory.pinecone",
|
||||
config_class="llama_stack.providers.adapters.memory.pinecone.PineconeConfig",
|
||||
provider_data_validator="llama_stack.providers.adapters.memory.pinecone.PineconeRequestProviderData",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue