2026-03-19 10:36:55 +08:00
|
|
|
|
"""聊天模块:AI 回复用户(ProfileAgent + InterviewAgent + ChatOrchestrator)"""
|
2026-03-19 14:36:14 +08:00
|
|
|
|
|
2026-03-19 10:36:55 +08:00
|
|
|
|
from app.agents.chat.conversation_agent import ConversationAgent
|
|
|
|
|
|
from app.agents.chat.orchestrator import ChatOrchestrator
|
|
|
|
|
|
from app.agents.chat.profile_agent import ProfileAgent
|
|
|
|
|
|
from app.agents.chat.interview_agent import InterviewAgent
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
|
"ConversationAgent",
|
|
|
|
|
|
"ChatOrchestrator",
|
|
|
|
|
|
"ProfileAgent",
|
|
|
|
|
|
"InterviewAgent",
|
|
|
|
|
|
]
|