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
| Option | Short | Description |
|---|
--force | -f | Overwrite existing config file |
Show
Display the current configuration (API key is masked):
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"
| Option | Description |
|---|
--api-key | VLM Run API key |
--base-url | VLM Run API base URL |
Unset
Remove configuration values:
# Remove API key
vlmrun config unset --api-key
# Remove base URL
vlmrun config unset --base-url
| Option | Description |
|---|
--api-key | Unset the API key |
--base-url | Unset the base URL |
Configuration Priority
Configuration values are resolved in the following order (highest priority first):
- CLI flags (
--api-key, --base-url)
- Environment variables (
VLMRUN_API_KEY, VLMRUN_BASE_URL)
- Config file (
~/.vlmrun/config.toml)