修复状态兼容性问题: 移除 dict 解包操作
All checks were successful
构建并部署 AI Agent 服务 / deploy (push) Successful in 5m35s

This commit is contained in:
2026-05-02 00:44:23 +08:00
parent 563dea91d4
commit a3e2a5aea4
2 changed files with 22 additions and 23 deletions

View File

@@ -141,7 +141,7 @@ def create_llm_call_node(llm, tools: list):
"has_tool_calls": has_tool_calls
}
log_state_change("llm_call", {**state, **result}, "离开")
log_state_change("llm_call", state, "离开")
return result
except Exception as e: