llama-stack-mirror/docs/source/advanced_apis/post_training/remote_nvidia.md
Kelly Brown 026caa5551
docs: part 1 - fix warnings in documentation generation (#2861)
**Description**
This PR removes some of the warnings when uv builds the docs
- Errors appear when generating docs about .md files not appearing in
toctree. ~~Adding content to the `providers-gen.py ` file that adds `---
orphan: true ---` to to each file.~~. Added a toctree generator to the
`providers-gen.py` file, this gets rid of the errors in the builds.
- Deletes the `_openai_compat` files, extension of PR #2849
- Adds the `files` APIs section to the `providers` toctree on the index
page
- Manually adds the `--- orphan: true ---` to the advanced apis. Ill try
to find a way to modify the providers code gen so it automatically adds
it, but this fixes the errors.
- Adds the `testing.md` to the `contributing` toctree
- Adds `starting_llama_stack_server.md` to `distributions` toctree

There are some other warnings im still looking at but this PR gets rid
of most of the toctree errors
Theres also an issue with the actual distribution-codegen that I can
investigate in another PR. Opened a bug for it here #2873
2025-07-30 10:50:10 -07:00

1.1 KiB

orphan
true

remote::nvidia

Description

NVIDIA's post-training provider for fine-tuning models on NVIDIA's platform.

Configuration

Field Type Required Default Description
api_key str | None No The NVIDIA API key.
dataset_namespace str | None No default The NVIDIA dataset namespace.
project_id str | None No test-example-model@v1 The NVIDIA project ID.
customizer_url str | None No Base URL for the NeMo Customizer API
timeout <class 'int'> No 300 Timeout for the NVIDIA Post Training API
max_retries <class 'int'> No 3 Maximum number of retries for the NVIDIA Post Training API
output_model_dir <class 'str'> No test-example-model@v1 Directory to save the output model

Sample Configuration

api_key: ${env.NVIDIA_API_KEY:=}
dataset_namespace: ${env.NVIDIA_DATASET_NAMESPACE:=default}
project_id: ${env.NVIDIA_PROJECT_ID:=test-project}
customizer_url: ${env.NVIDIA_CUSTOMIZER_URL:=http://nemo.test}