mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 07:14:20 +00:00
feat: add llamacpp in registry
This commit is contained in:
parent
ec73d0d55b
commit
9b3d7e85ff
1 changed files with 10 additions and 0 deletions
|
@ -333,4 +333,14 @@ def available_providers() -> list[ProviderSpec]:
|
||||||
description="IBM WatsonX inference provider for accessing AI models on IBM's WatsonX platform.",
|
description="IBM WatsonX inference provider for accessing AI models on IBM's WatsonX platform.",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
remote_provider_spec(
|
||||||
|
api=Api.inference,
|
||||||
|
adapter=AdapterSpec(
|
||||||
|
adapter_type="llamacpp",
|
||||||
|
pip_packages=["litellm"],
|
||||||
|
module="llama_stack.providers.remote.inference.llamacpp",
|
||||||
|
config_class="llama_stack.providers.remote.inference.llamacpp.config.LlamaCppImplConfig",
|
||||||
|
provider_data_validator="llama_stack.providers.remote.inference.llamacpp.config.LlamaCppProviderDataValidator",
|
||||||
|
),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue