Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vlm.run/llms.txt

Use this file to discover all available pages before exploring further.

The vlmrun config command manages CLI configuration stored at ~/.vlmrun/config.toml.

Initialize

Create a default configuration file:
# Create config file
vlmrun config init

# Overwrite existing config
vlmrun config init --force
OptionShortDescription
--force-fOverwrite existing config file

Show

Display the current configuration (API key is masked):
vlmrun config show

Set

Set configuration values:
# Set API key
vlmrun config set --api-key "your-api-key"

# Set base URL
vlmrun config set --base-url "https://api.vlm.run/v1"
OptionDescription
--api-keyVLM Run API key
--base-urlVLM Run API base URL

Unset

Remove configuration values:
# Remove API key
vlmrun config unset --api-key

# Remove base URL
vlmrun config unset --base-url
OptionDescription
--api-keyUnset the API key
--base-urlUnset the base URL

Configuration Priority

Configuration values are resolved in the following order (highest priority first):
  1. CLI flags (--api-key, --base-url)
  2. Environment variables (VLMRUN_API_KEY, VLMRUN_BASE_URL)
  3. Config file (~/.vlmrun/config.toml)