mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-11 03:46:03 +00:00
add clarifai inference provider
This commit is contained in:
parent
2d4f7d8acf
commit
a7b17fe58b
5 changed files with 316 additions and 0 deletions
|
|
@ -115,6 +115,17 @@ def available_providers() -> List[ProviderSpec]:
|
|||
config_class="llama_stack.providers.adapters.inference.databricks.DatabricksImplConfig",
|
||||
),
|
||||
),
|
||||
remote_provider_spec(
|
||||
api=Api.inference,
|
||||
adapter=AdapterSpec(
|
||||
adapter_type="clarifai",
|
||||
pip_packages=[
|
||||
"clarifai",
|
||||
],
|
||||
module="llama_stack.providers.adapters.inference.clarifai",
|
||||
config_class="llama_stack.providers.adapters.inference.clarifai.ClarifaiImplConfig",
|
||||
),
|
||||
),
|
||||
InlineProviderSpec(
|
||||
api=Api.inference,
|
||||
provider_type="vllm",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue