修复 StateBase -> BaseState 的导入名称
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Has been cancelled

This commit is contained in:
2026-04-29 19:10:24 +08:00
parent a1d51fb1ce
commit 2f83aca2c0

View File

@@ -1,7 +1,7 @@
"""核心模块 - 基类和通用工具""" """核心模块 - 基类和通用工具"""
from .formatter import MarkdownFormatter from .formatter import MarkdownFormatter
from .state_base import StateBase from .state_base import BaseState
from .intent import ( from .intent import (
IntentType, IntentType,
IntentResult, IntentResult,
@@ -18,7 +18,7 @@ from .human_review import (
__all__ = [ __all__ = [
"MarkdownFormatter", "MarkdownFormatter",
"StateBase", "BaseState",
"IntentType", "IntentType",
"IntentResult", "IntentResult",
"IntentClassifier", "IntentClassifier",