Fixed the deepseek v3 planning issue #545 (#554)

This commit is contained in:
Willem Jiang 2025-09-04 10:09:49 +08:00 committed by GitHub
parent 5f1981ac9b
commit 8f127df948
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"])