We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c383a1a commit 72fa89eCopy full SHA for 72fa89e
1 file changed
backend/app/core/config.py
@@ -24,8 +24,9 @@ class Settings(BaseSettings):
24
anthropic_api_key: str = ""
25
serp_api_key: str = ""
26
27
- # The LLM that drives both agents. Latest Opus by default.
28
- agent_model: str = "claude-opus-4-8"
+ # The LLM that drives both agents. Sonnet: faster + cheaper than Opus, fine for
+ # this structured audit task. Override via AGENT_MODEL in .env.
29
+ agent_model: str = "claude-sonnet-4-6"
30
agent_max_tokens: int = 4096
31
32
# Idle seed loop: the scheduler automatically cycles the curated seed jobs to grow
0 commit comments