- 构建完整的Recipient智能体系统,用于医疗对话信息整合 - 功能特性: * 根据完整对话记录更新现病史信息 * 根据完整对话记录更新既往史信息 * 从完整对话记录中提取患者主诉 * 输出顺序与生成顺序保持一致(现病史→既往史→主诉) - 包含完整的JSON格式示例输出和详细处理指令 - 遵循项目规范:中文注释、基于BaseAgent架构 - 支持同步和异步运行模式 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
5 lines
195 B
Python
5 lines
195 B
Python
from .agent import RecipientAgent
|
|
from .prompt import RecipientPrompt
|
|
from .response_model import RecipientResponseModel
|
|
|
|
__all__ = ["RecipientAgent", "RecipientPrompt", "RecipientResponseModel"] |