Environment Variables
Create a.env file at the project root:
LLM Defaults
These defaults are used when no explicitllm_config is provided:
| Purpose | Model | Temperature | Max Tokens |
|---|---|---|---|
| Agent | openai/gpt-5.4 | 1.0 | 16,384 |
| Tool | openai/gpt-5.4-mini | 0.0 | 20,480 |
| Planning | openai/gpt-5.4-mini | 0.5 | 2,048 |
| Reflection | openai/gpt-5.4-mini | 0.0 | 1,024 |
llm_config parameter in the @agent decorator or the management API.
Operational Defaults
| Setting | Default |
|---|---|
DEFAULT_EXECUTABLE_TIMEOUT | 300s (5 min) |
DEFAULT_MAX_TURNS | 10 |
DEFAULT_MAX_REFLECTION_ATTEMPTS | 3 |
DEFAULT_TOOL_MAX_RETRIES | 3 |
DEFAULT_TOOL_RETRY_DELAY | 1s |
DEFAULT_TOOL_BACKOFF_FACTOR | 2.0 |