FAQ-标准问识别(算子)
更新时间:2024-11-04
FAQ-标准问识别(算子)
1、接口地址:GET {IP}:{PORT}/core/v1/faq/recall
2、入参
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
top | int | 是 | 返回结果数,默认返回5条,最大不能超过10条, 超过按照10条返回 |
query | string | 否 | 查询语句 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | T | 返回数据 | |
total | int | data | 总大小 |
questions | list | data | 查询页数 |
question | string | questions | 问题 |
confidence | double | questions | 相似度 |
answers | map | questions | 回答内容 |
channel | string | questions | 渠道 |
dir | string | questions | 目录标识 |
list | list | answer | 答案 |
text | string | list | 答案内容 |
type | string | list | 答案类型 1文本 3富文本 4图片 |
url | string | list | 图片地址,当answer.list.type=4时,出现此字段 |
detail | list | questions | 扩展问详情 最大值3个 |
question | string | detail | 扩展问 |
confidence | double | detail | 相似度 |
type | int | detail | 问题的类型 0是扩展问 3是模板 |
示例:
{
"time": 1573721580227,
"data": {
"total": 2,
"questions": [
{
"question": "我爱中国",
"confidence": 1,
"dir" : "0",
"answers": [
{
"channel": "c1",
"list": [
{
"type": 1,
"text": "渠道答案",
"url": null
}
]
},
{
"channel": "通用渠道",
"list": [
{
"type": 1,
"text": "通用答案",
"url": null
}
]
}
],
"detail": [
{
"question": "我爱中国首都",
"confidence": 0.06000000238418579,
"type": 0
},
{
"question": "我爱北京",
"confidence": 0.03333333507180214,
"type": 0
}
]
},
{
"question": "我爱上海",
"confidence": 0.03333333507180214,
"dir" : "0",
"answers": [
{
"channel": "通用渠道",
"list": [
{
"type": 1,
"text": "通用答案",
"url": null
}
]
}
],
"detail": []
}
]
},
"code": 200,
"msg": "OK"
}