Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ PREFERRED_DEAL_DISCOUNT_MAX=0.15
# Provider: Anthropic (default)
ANTHROPIC_API_KEY=your-anthropic-api-key-here
DEFAULT_LLM_MODEL=anthropic/claude-sonnet-4-5-20250929
MANAGER_LLM_MODEL=anthropic/claude-opus-4-20250514
MANAGER_LLM_MODEL=anthropic/claude-opus-4-8
LLM_TEMPERATURE=0.3
LLM_MAX_TOKENS=4096

Expand All @@ -175,7 +175,7 @@ LLM_MAX_TOKENS=4096
# AWS_SECRET_ACCESS_KEY=your-aws-secret-key
# AWS_REGION=us-west-2
# DEFAULT_LLM_MODEL=bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0
# MANAGER_LLM_MODEL=bedrock/us.anthropic.claude-opus-4-20250514-v1:0
# MANAGER_LLM_MODEL=bedrock/us.anthropic.claude-opus-4-8

# Provider: Custom OpenAI-compatible endpoint (alternative)
# For endpoints with no CrewAI native provider prefix of their own — NVIDIA
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ad-seller freewheel-login --provider bc
| Variable | Type | Default | Description |
|----------|------|---------|-------------|
| `DEFAULT_LLM_MODEL` | `str` | `"anthropic/claude-sonnet-4-5-20250929"` | Model for specialist agents (pricing, negotiation, etc.) |
| `MANAGER_LLM_MODEL` | `str` | `"anthropic/claude-opus-4-20250514"` | Model for manager/orchestrator agents |
| `MANAGER_LLM_MODEL` | `str` | `"anthropic/claude-opus-4-8"` | Model for manager/orchestrator agents |
| `LLM_TEMPERATURE` | `float` | `0.3` | LLM temperature (lower = more deterministic) |
| `LLM_MAX_TOKENS` | `int` | `4096` | Maximum tokens per LLM response |
| `OPENAI_COMPATIBLE_LLM_API_KEY` | `str` | `None` | API key for a [custom OpenAI-compatible endpoint](#custom-openai-compatible-endpoints) (optional — some endpoints don't require one) |
Expand Down Expand Up @@ -263,7 +263,7 @@ GAM_API_VERSION=v202505
# LLM
# =============================================================================
DEFAULT_LLM_MODEL=anthropic/claude-sonnet-4-5-20250929
MANAGER_LLM_MODEL=anthropic/claude-opus-4-20250514
MANAGER_LLM_MODEL=anthropic/claude-opus-4-8
LLM_TEMPERATURE=0.3
LLM_MAX_TOKENS=4096

Expand Down
2 changes: 1 addition & 1 deletion src/ad_seller/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Settings(BaseSettings):
# gemini/gemini-2.5-flash (requires GOOGLE_API_KEY)
# bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0 (requires AWS creds)
default_llm_model: str = "anthropic/claude-sonnet-4-5-20250929"
manager_llm_model: str = "anthropic/claude-opus-4-20250514"
manager_llm_model: str = "anthropic/claude-opus-4-8"
llm_temperature: float = 0.3
llm_max_tokens: int = 4096

Expand Down
Loading