From 2f83aca2c04c5e075083a545ff69521181bf0919 Mon Sep 17 00:00:00 2001 From: root <953994191@qq.com> Date: Wed, 29 Apr 2026 19:10:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20StateBase=20->=20BaseState?= =?UTF-8?q?=20=E7=9A=84=E5=AF=BC=E5=85=A5=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/core/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/core/__init__.py b/backend/app/core/__init__.py index a9c3e65..29b0db8 100644 --- a/backend/app/core/__init__.py +++ b/backend/app/core/__init__.py @@ -1,7 +1,7 @@ """核心模块 - 基类和通用工具""" from .formatter import MarkdownFormatter -from .state_base import StateBase +from .state_base import BaseState from .intent import ( IntentType, IntentResult, @@ -18,7 +18,7 @@ from .human_review import ( __all__ = [ "MarkdownFormatter", - "StateBase", + "BaseState", "IntentType", "IntentResult", "IntentClassifier",