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

# CONFIGURATION AND PROFILES

> How the CLI remembers your workspace and settings

The CLI always runs against an active profile (`default` unless you switch). Profiles
store your organization, project, and other settings there so you do not need
to pass them on every command.

## CREATE AND USE ANOTHER PROFILE

```bash theme={null}
oumi-cli config profile add workspace-b
oumi-cli config profile use workspace-b
```

## SAVED VALUES

| Setting       | Profile key  | Change it with                 |
| ------------- | ------------ | ------------------------------ |
| Organization  | `org_id`     | `organizations set <ORG_ID>`   |
| Project       | `project_id` | `projects set <PROJECT_ID>`    |
| Output format | `output`     | `config set output <MODE>`     |
| Log level     | `log_level`  | `config set log_level <LEVEL>` |

Command-line flags and environment variables can override saved values for an
invocation without changing the profile.

Full commands: [config reference](/cli/commands/config).
