diff --git a/agent/agent.py b/agent/agent.py index 646cffb..444fcb6 100644 --- a/agent/agent.py +++ b/agent/agent.py @@ -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()],