mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-18 17:39:46 +00:00
# What does this PR do? <!-- Provide a short summary of what this PR does and why. Link to relevant issues if applicable. --> <!-- If resolving an issue, uncomment and update the line below --> <!-- Closes #[issue-number] --> - Updates provider and distro codegen to handle the new format - Migrates provider and distro files to the new format ## Test Plan - Manual testing <!-- Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.* -->
29 lines
961 B
Text
29 lines
961 B
Text
---
|
|
description: "NVIDIA's dataset I/O provider for accessing datasets from NVIDIA's data platform."
|
|
sidebar_label: Remote - Nvidia
|
|
title: remote::nvidia
|
|
---
|
|
|
|
# remote::nvidia
|
|
|
|
## Description
|
|
|
|
NVIDIA's dataset I/O provider for accessing datasets from NVIDIA's data 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-project | The NVIDIA project ID. |
|
|
| `datasets_url` | `<class 'str'>` | No | http://nemo.test | Base URL for the NeMo Dataset API |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
api_key: ${env.NVIDIA_API_KEY:=}
|
|
dataset_namespace: ${env.NVIDIA_DATASET_NAMESPACE:=default}
|
|
project_id: ${env.NVIDIA_PROJECT_ID:=test-project}
|
|
datasets_url: ${env.NVIDIA_DATASETS_URL:=http://nemo.test}
|
|
```
|