From 10732afdfdd2d3ed004d0a344b8d226dd2b34200 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 6 Jun 2026 20:41:57 -0300 Subject: [PATCH] Avoid DeepAgents default_temperature kwarg --- agent.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/agent.py b/agent.py index c492a67..7b564bb 100644 --- a/agent.py +++ b/agent.py @@ -125,8 +125,7 @@ class ChartAgent(A2AAgent[ChartAgentConfig, NoAuth]): return create_a2a_deep_agent( ctx, creds=creds, - default_temperature=0.0, - backend=backend, + backend=backend, skills=skill_sources or None, tools=[text_stats], middleware=[log_model_call],