22 lines
515 B
Python
22 lines
515 B
Python
"""
|
|||
|
|
对话模块
|
||
|
|
提供对话式 Agent 的核心功能
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .intent_understanding import IntentUnderstanding, Intent
|
||
|
|
from .conversation_state import ConversationState, Message, Task, TaskStatus
|
||
|
|
from .response_generator import ResponseGenerator
|
||
|
|
from .conversational_agent import ConversationalAgent, ChatResponse
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"IntentUnderstanding",
|
||
|
|
"Intent",
|
||
|
|
"ConversationState",
|
||
|
|
"Message",
|
||
|
|
"Task",
|
||
|
|
"TaskStatus",
|
||
|
|
"ResponseGenerator",
|
||
|
|
"ConversationalAgent",
|
||
|
|
"ChatResponse",
|
||
|
|
]
|