Parse medical check-up reports, extract various test indicators and categorize them
该 Skill 用于解析体检报告,包括:
支持结构化数据输入:
{
"height": 175, // 身高 (cm)
"weight": 75, // 体重 (kg)
"sbp": 130, // 收缩压 (mmHg)
"dbp": 85, // 舒张压 (mmHg)
"lab_items": [ // 检验指标
{
"name": "空腹血糖",
"value": 7.2,
"unit": "mmol/L",
"ref_low": 3.9,
"ref_high": 6.1
}
]
}
返回结构化数据和自然语言摘要:
{
"structured": {
"basic_info": {
"bmi": {"value": 24.5, "category": "正常"},
"blood_pressure": {"category": "正常高值"}
},
"indicators": [...],
"summary": {"total_indicators": 15, "abnormal_count": 3}
},
"text": "体检概况摘要..."
}
使用 executor.py 混合执行模式:
Category:health-wellness