mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 15:23:51 +00:00
Add vllm to the inference registry
Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
parent
a08fd8f331
commit
31a0c51dea
1 changed files with 9 additions and 0 deletions
|
@ -104,4 +104,13 @@ def available_providers() -> List[ProviderSpec]:
|
||||||
config_class="llama_stack.providers.adapters.inference.bedrock.BedrockConfig",
|
config_class="llama_stack.providers.adapters.inference.bedrock.BedrockConfig",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
InlineProviderSpec(
|
||||||
|
api=Api.inference,
|
||||||
|
provider_id="vllm",
|
||||||
|
pip_packages=[
|
||||||
|
"vllm",
|
||||||
|
],
|
||||||
|
module="llama_stack.providers.impls.vllm",
|
||||||
|
config_class="llama_stack.providers.impls.vllm.VLLMConfig",
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue