From 8f127df9489272d7069bf6f247cb3242fb1b3160 Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Thu, 4 Sep 2025 10:09:49 +0800 Subject: [PATCH] Fixed the deepseek v3 planning issue #545 (#554) --- src/graph/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/nodes.py b/src/graph/nodes.py index e006ca2..14080aa 100644 --- a/src/graph/nodes.py +++ b/src/graph/nodes.py @@ -105,7 +105,7 @@ def planner_node( elif AGENT_LLM_MAP["planner"] == "basic": llm = get_llm_by_type("basic").with_structured_output( Plan, - # method="json_mode", + method="json_mode", ) else: llm = get_llm_by_type(AGENT_LLM_MAP["planner"])