- 将文件夹从 disease_analyzer 重命名为 disease_analyst - 统一类名:DiseaseAnalyzer → DiseaseAnalyst相关类 - 更新所有导入路径和引用关系 - 保持功能不变,提高命名一致性 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
262 B
Python
6 lines
262 B
Python
# 疾病分析智能体模块初始化文件
|
|
from .agent import DiseaseContextAnalyst
|
|
from .prompt import DiseaseAnalystPrompt
|
|
from .response_model import DiseaseAnalysisResult
|
|
|
|
__all__ = ['DiseaseContextAnalyst', 'DiseaseAnalystPrompt', 'DiseaseAnalysisResult'] |