标注推荐匹配之闲聊推荐
更新时间:2024-11-04
1、接口地址:GET {IP}:{PORT}/open/v1/label/recommend/chitchat
2、说明:根据用户问法获取推荐闲聊
3、入参(query param中)
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
query | string | 用户问法 |
4、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | T | 返回数据 | |
list | list | data | 数据列表 |
total | int | data | 总数 |
id | string | list | 闲聊标准问id |
question | string | list | 闲聊标准问 |
score | float | list | 相关度得分 |
示例:
{
"time": 1599050426236,
"data": {
"total": 3,
"list": [
{
"id": "1b249ade-e8f4-442c-a5c4-372412b123fd",
"question": "周二去跑步",
"score": 0.3
},
{
"id": "79fa8bd2-85e9-4dbf-afef-db2cd986cf9b",
"question": "周一去跑步",
"score": 0.3
},
{
"id": "f587feeb-9229-483b-841f-fb70746102d7",
"question": "周三去跑步",
"score": 0.3
}
]
},
"code": 200,
"msg": "OK"
}