Skip to main content

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.

Overview

The Veri CLI stores credentials locally so the SDK can reuse them automatically.

Credential File

Credentials are stored at:
~/.veri/credentials.json
The file contains:
  • api_key
  • api_url
The CLI writes the file with user-only permissions.

Login Flow

When you run:
veri login
the CLI:
  1. opens the dashboard API keys page
  2. asks you to paste the key
  3. optionally verifies the API is reachable
  4. stores the credentials locally

SDK Reuse

Once credentials are stored, the Python SDK can auto-load them:
from veri_sdk import Client

client = Client()
That means local CLI login is the simplest way to bootstrap SDK usage.

Current Limits

  • the current public auth story is still evolving
  • the CLI does not yet manage keys, jobs, or datasets directly
  • most of the product surface still lives in the API and Python SDK