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

# Quickstart

> Setting up Veri in under a minute

By the end of this you'll have:

* The `veri` CLI installed locally.
* An authenticated session.

When you're ready to spend real GPU time, jump to the workflow docs at the bottom of this page.

## Install

The CLI ships the Python SDK and CLI together.

<CodeGroup>
  ```bash uv (recommended) theme={null}
  uv tool install veri-sdk
  ```

  ```bash pipx theme={null}
  pipx install veri-sdk
  ```

  ```bash pip theme={null}
  pip install veri-sdk
  ```
</CodeGroup>

Verify:

```bash theme={null}
veri version
```

<Note>
  The CLI uses `~/.config/veri/config.toml` on Linux/macOS (or `$XDG_CONFIG_HOME/veri/config.toml`) for credentials and defaults.
</Note>

## Log in

Create an API key from the [Veri dashboard](https://veri.studio/dashboard/settings), then:

<CodeGroup>
  ```bash Browser flow (default) theme={null}
  veri login
  ```

  ```bash Paste an existing key theme={null}
  veri login --paste
  ```

  ```bash Non-interactive theme={null}
  veri login --token vk_your_api_key
  ```
</CodeGroup>

Confirm:

```bash theme={null}
veri whoami
```

Output (rendered as a table):

```text theme={null}
 api_url        https://api.veri.studio
 api_key        vk_abc123…d39f
 config_path    /Users/you/.config/veri/config.toml
 active_profile default
 balance_usd    12.50
 org_id         org_abc123
 plan           pro
 sdk_version    0.2.18
```

<Tip>
  Prefer environment variables? Set `VERI_API_KEY=vk_...` and any CLI call will pick it up. Env vars take precedence over the config file.
</Tip>

## Where to next

Pick the workflow you came for. Each guide covers the path against `https://api.veri.studio` and may spend GPU credit.

<CardGroup cols={3}>
  <Card title="Train a model" icon="graduation-cap" href="/training">
    Configure and run hosted training jobs
  </Card>

  <Card title="Deploy a model" icon="rocket" href="/deployments">
    Serve base or trained models behind an endpoint
  </Card>

  <Card title="Evaluate a model" icon="chart-line" href="/evaluations">
    Score models and deployments against datasets
  </Card>
</CardGroup>

## Stuck? Book a 15-minute call

A 15-minute call gets you unblocked faster than a docs page. Tell us what broke and we'll fix it.

<Card title="Book a 15-min beta call" icon="calendar" href="https://cal.com/veri.studio">
  Pick any time. If you're hitting a specific issue, share your account email and any
  failing job IDs.
</Card>

### Spot a bug?

Email [daniel@veri.studio](mailto:daniel@veri.studio) with what you expected, what happened, and any failing job IDs.
