Skip to content

Commit 72fa89e

Browse files
author
dev-pd
committed
Use Sonnet for agents (faster, cheaper); overridable via AGENT_MODEL
1 parent c383a1a commit 72fa89e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

backend/app/core/config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ class Settings(BaseSettings):
2424
anthropic_api_key: str = ""
2525
serp_api_key: str = ""
2626

27-
# The LLM that drives both agents. Latest Opus by default.
28-
agent_model: str = "claude-opus-4-8"
27+
# The LLM that drives both agents. Sonnet: faster + cheaper than Opus, fine for
28+
# this structured audit task. Override via AGENT_MODEL in .env.
29+
agent_model: str = "claude-sonnet-4-6"
2930
agent_max_tokens: int = 4096
3031

3132
# Idle seed loop: the scheduler automatically cycles the curated seed jobs to grow

0 commit comments

Comments
 (0)