Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/studio/_images/customizations.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/dashboard.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/datasets.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/evaluations.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/jobs.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/prompt-tuned-models.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/run-evaluation.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/safe-synthesizer.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/secrets.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/studio/_images/workspaces.png

This file was deleted.

13 changes: 12 additions & 1 deletion docs/studio/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
!!! note
Studio is still in early development. Many features are missing or should be expected to change.

{{studio_short_name}} is the web app for AI development with NVIDIA {{platform_name}}. It provides a workspace-oriented UI for managing local platform resources, reviewing agents, running agent optimization workflows, monitoring agent telemetry, and working with datasets, jobs, and secrets.
{{studio_short_name}} is the web app for AI development with NVIDIA {{platform_name}}. It provides a workspace-oriented UI for managing local platform resources, reviewing agents, running agent optimization workflows, monitoring agent telemetry, and working with filesets, jobs, and secrets.

---

Expand Down Expand Up @@ -55,6 +55,17 @@ You can upload any file type into a fileset. However, each service supports spec
| --------------------------------------------------- | ------------------------------------- |
| [Data Designer](../data-designer/index.md) | `.json`, `.jsonl`, `.csv`, `.parquet` |

### Evaluations

**Evaluations** appears in two separate sidebar groups because it covers two distinct scopes:

| Location | What it shows |
| -------- | ------------- |
| **Agents > Evaluations** | Evaluation runs scoped to a specific agent — results tied to agent deployments and versions. |
| **Evaluate > Evaluations** | All evaluation results across the workspace, regardless of which agent or model was evaluated. |

Use **Agents > Evaluations** when reviewing how a specific agent performed. Use **Evaluate > Evaluations** for a broader view of evaluation history across the workspace.

### Jobs

Track and manage all platform jobs from a single view. The Jobs page aggregates jobs across enabled capabilities, such as Data Designer, so you can monitor progress, view logs, download artifacts, and cancel jobs in one place.
Expand Down
8 changes: 4 additions & 4 deletions docs/troubleshooting/studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

Learn how to troubleshoot common issues with {{studio_short_name}}.

## Datasets or Jobs Not Appearing in Studio
## Filesets or Jobs Not Appearing in Studio

If you do not see datasets or jobs that you created using the Python SDK or API, verify that you specified the `project` parameter in the creation or update API requests.
If you do not see filesets or jobs that you created using the Python SDK or API, verify that you specified the `project` parameter in the creation or update API requests.

Specify the `project` parameter when creating a dataset using the Python SDK or cURL:
Specify the `project` parameter when creating a fileset using the Python SDK or cURL:

*Creating a Dataset Using the Python SDK and Associating with a Project:*
*Creating a Fileset Using the Python SDK and Associating with a Project:*

```python
dataset = client.datasets.create(
Expand Down
Loading