Skip to content
Merged
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
2 changes: 1 addition & 1 deletion agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def build_agent():
# temperature=0 for deterministic, reproducible demo behavior — the
# intentional bugs (tone, scope, truncation) come from the prompt and
# max_tokens, not sampling, so pinning temperature keeps traces consistent.
model=ChatAnthropic(model=_model_id(), max_tokens=300, temperature=0),
model=ChatAnthropic(model=_model_id(), max_tokens=2048, temperature=0),
tools=TOOLS,
system_prompt=SYSTEM_PROMPT,
middleware=[_readonly_context_hub_fs()],
Expand Down