通过输入描述身体症状的自然语言文本,获得就诊科室的推荐信息
参数名称 | 类型 | 是否必须 | 备注 | 示例 |
---|---|---|---|---|
content | string | 是 | 待分析文本,最大长度为 1000 字符,支持 UTF-8 编码 | 肚子疼 |
参数名称 | 类型 | 备注 |
---|---|---|
department_code | string | 科室 ID |
department_name | string | 科室名称 |
department_level | integer | 科室级别(数值越大,科室粒度越细) |
children | array | 子科室 |
children.department_code | string | 科室 ID |
children.department_name | string | 科室名称 |
children.department_level | integer | 科室级别(数值越小,科室级别越高,顶层科室级别为 1) |
children.score | integer | 预测指数,范围 [0,1],两位小数 |
请求
POST https://medical.nocode.com/open/v2/nc.ms.smart.department.recommend
{
"content": "肚子疼"
}
返回结果
{
"data": [
{
"children": [
{
"score": 0.99,
"department_code": "1103",
"department_name": "消化内科",
"department_level": 2
}
],
"department_code": "11",
"department_name": "内科",
"department_level": 1
}
],
"meta": {
"intent_score": 0.4
}
}