mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 01:12:26 +00:00
in #2637, I combined the run and build config provider types to both use `Provider` since this includes a provider_id, a user must now specify this when writing a build yaml. This is not very clear because all a user should care about upon build is the code to be installed (the module and the provider_type) introduce `BuildProvider` and fixup the parts of the code impacted by this Signed-off-by: Charlie Doern <cdoern@redhat.com>
30 lines
778 B
YAML
30 lines
778 B
YAML
version: 2
|
|
distribution_spec:
|
|
description: Use NVIDIA NIM for running LLM inference, evaluation and safety
|
|
providers:
|
|
inference:
|
|
- provider_type: remote::nvidia
|
|
vector_io:
|
|
- provider_type: inline::faiss
|
|
safety:
|
|
- provider_type: remote::nvidia
|
|
agents:
|
|
- provider_type: inline::meta-reference
|
|
telemetry:
|
|
- provider_type: inline::meta-reference
|
|
eval:
|
|
- provider_type: remote::nvidia
|
|
post_training:
|
|
- provider_type: remote::nvidia
|
|
datasetio:
|
|
- provider_type: inline::localfs
|
|
- provider_type: remote::nvidia
|
|
scoring:
|
|
- provider_type: inline::basic
|
|
tool_runtime:
|
|
- provider_type: inline::rag-runtime
|
|
image_type: conda
|
|
image_name: nvidia
|
|
additional_pip_packages:
|
|
- aiosqlite
|
|
- sqlalchemy[asyncio]
|