mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-16 14:57:20 +00:00
feat: initial implementation of snowflake provider + distro
This commit is contained in:
parent
4aa1bf6a60
commit
59d856363e
5 changed files with 293 additions and 0 deletions
|
@ -97,6 +97,15 @@ def available_providers() -> List[ProviderSpec]:
|
|||
config_class="llama_stack.providers.adapters.inference.tgi.InferenceEndpointImplConfig",
|
||||
),
|
||||
),
|
||||
remote_provider_spec(
|
||||
api=Api.inference,
|
||||
adapter=AdapterSpec(
|
||||
adapter_type="snowflake",
|
||||
pip_packages=["python-snowflake-snowpark"],
|
||||
module="llama_stack.providers.adapters.inference.snowflake",
|
||||
config_class="llama_stack.providers.adapters.inference.snowflake.SnowflakeImplConfig",
|
||||
),
|
||||
),
|
||||
remote_provider_spec(
|
||||
api=Api.inference,
|
||||
adapter=AdapterSpec(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue