修复子图中 state 的导入路径
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Has been cancelled

This commit is contained in:
2026-04-29 19:04:56 +08:00
parent ad791abfcd
commit 4132b7d23b
6 changed files with 6 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ News Analysis Subgraph Builder
from app.main_graph.graph import StateGraph, START, END
from app.main_graph.state import NewsAnalysisState
from .state import NewsAnalysisState
from .nodes import (
parse_intent,
query_news,

View File

@@ -9,7 +9,7 @@ from datetime import datetime
# 公共工具
from ..common import MarkdownFormatter
from app.main_graph.state import (
from .state import (
NewsAnalysisState,
NewsAction,
NewsItem,