Configuration¶
Settings¶
Configuration Fields¶
| Field | Type | Default | Description |
|---|---|---|---|
| OPENAI_API_KEY | str | None | OpenAI API key |
| OPENAI_BASE_URL | str | https://api.openai.com/v1 | API base URL |
| AI_MODEL | str | gpt-4 | Default AI model |
| AI_IMAGE_MODEL | str | dall-e-3 | Image generation model |
| MAX_WORKERS | int | 4 | Max parallel workers |
| BATCH_SIZE | int | 10 | Batch processing size |
| DOWNLOAD_TIMEOUT | int | 300 | Download timeout (seconds) |
| MAX_RETRIES | int | 3 | Max retry attempts |
| PROGRESS_BAR | bool | True | Show progress bars |
| VERBOSE | bool | False | Verbose output |
| CONFIRM_DESTRUCTIVE | bool | True | Confirm destructive operations |
Configuration Files¶
Configuration is loaded from (in order):
1. ~/.max_cli/.env (user-level)
2. .env (project-level)