修复重构后的导入错误和缺失模块
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Failing after 6m26s

This commit is contained in:
2026-04-29 17:23:20 +08:00
parent 862fef94dc
commit d6805d1db8
36 changed files with 117 additions and 60 deletions

View File

@@ -5,8 +5,8 @@ LangGraph 状态图构建模块 - 精简版,仅负责组装图
from langchain_core.language_models import BaseLLM
from app.main_graph.graph import StateGraph, START, END
from .state import MessagesState, GraphContext
from ..nodes import (
from app.main_graph.state import MessagesState, GraphContext
from .nodes import (
should_continue,
create_llm_call_node,
create_tool_call_node,
@@ -15,7 +15,7 @@ from ..nodes import (
finalize_node,
)
from app.main_graph.nodes.memory_trigger import memory_trigger_node, set_mem0_client
from ..memory import Mem0Client
from app.memory import Mem0Client
class GraphBuilder: