> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inference.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Dashboard

> Launch the interactive terminal dashboard for a live overview of your project.

`inf dashboard` launches a full-screen interactive terminal UI that gives you a live overview of training runs, evaluations, datasets, and inferences in your active project.

**Alias:** `inf dash`

## `inf dashboard`

Launch the TUI. The dashboard reads your active project from `~/.inf/config.json`, or use the global `--project <id>` flag to target a different project for this session.

<Metadata text="cli/dashboard/launch" />

```bash theme={"system"}
inf dashboard
```

### Keyboard Shortcuts

| Key                 | Action                        |
| ------------------- | ----------------------------- |
| `1` – `4`           | Switch between tabs directly  |
| `Tab` / `Shift+Tab` | Cycle through tabs            |
| `j` / `k`           | Navigate up and down in lists |
| `Enter`             | Drill into the selected item  |
| `r`                 | Refresh the current view      |
| `/`                 | Open the command palette      |
| `q` or `Ctrl+C`     | Quit the dashboard            |

### Tabs

The dashboard provides four tabs for navigating your project data:

| Tab        | Key | Description                                          |
| ---------- | --- | ---------------------------------------------------- |
| Training   | `1` | View training runs with status, progress, and loss   |
| Evals      | `2` | Browse eval run groups and individual run results    |
| Datasets   | `3` | List filtered datasets with export status            |
| Inferences | `4` | View recent inferences with token counts and latency |

Select any item in a list and press `Enter` to open a detail panel with more information.

### Examples

<Metadata text="cli/dashboard/examples" />

```bash theme={"system"}
# Launch for the active project
inf dashboard

# Launch for a specific project without changing your stored config
inf dashboard --project proj_789ghi012jkl

# Use the alias
inf dash
```

<Note>
  The dashboard requires a terminal that supports modern rendering. Most standard terminal emulators (Terminal.app, iTerm2, Alacritty, Windows Terminal) work well.
</Note>
