Add missing "inline::" prefix for providers in building_distro.md (#702)

This fixes the following errors:

```
ValueError: Provider `meta-reference` is not available for API `agents`
ValueError: Provider `meta-reference` is not available for API `telemetry`
```
This commit is contained in:
Yuan Tang 2025-01-02 11:03:30 -06:00 committed by GitHub
parent a6c206ea66
commit eee25db11d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -338,8 +338,8 @@ distribution_spec:
inference: remote::ollama inference: remote::ollama
memory: inline::faiss memory: inline::faiss
safety: inline::llama-guard safety: inline::llama-guard
agents: meta-reference agents: inline::meta-reference
telemetry: meta-reference telemetry: inline::meta-reference
image_type: conda image_type: conda
``` ```