ax profiles commands let you create and manage named configuration profiles. Each profile stores an API key, routing settings, and output preferences. The active profile is used by all other ax commands.
ax profiles create
Create a new configuration profile. Runs interactively by default; use flags or --from-file to skip prompts.
| Option | Description |
|---|---|
--api-key | Arize API key |
--region | Routing region (e.g. us-east-1b) |
--output-format | Output format: table, json, csv, parquet |
--from-file, -f | Path to a TOML config file to load values from |
--verbose, -v | Enable verbose logs |
--from-file > interactive prompts.
If no profiles exist, the profile name defaults to default with no prompt. Detects existing ARIZE_* environment variables when running interactively (only when neither flags nor --from-file are used).
Examples:
ax profiles update
Update an existing profile. With --from-file, the profile is replaced by the file contents (flags are applied on top). With flags only, specified fields are updated and all others are preserved.
| Option | Description |
|---|---|
--api-key | New Arize API key |
--region | New routing region |
--output-format | New output format |
--from-file, -f | Replace profile with values from this TOML file |
--verbose, -v | Enable verbose logs |
ax profiles list
List all available configuration profiles. The active profile is marked with a dot.
ax profiles show
Show configuration for a profile. By default shows environment variable references like ${ARIZE_API_KEY} without expanding them.
| Option | Description |
|---|---|
--all | Show all sections including defaults |
--expand | Expand environment variable references to their actual values |
--verbose, -v | Enable verbose logs |
ax profiles use
Switch to a different configuration profile. Makes the specified profile active for all future commands.
ax profiles validate
Validate a configuration profile. Checks for missing or incorrect configuration and reports any issues.
ax profiles delete
Delete a configuration profile.
| Option | Description |
|---|---|
--force, -f | Skip the confirmation prompt |