关键词提取
更新时间:2024-11-04
1、接口地址:GET {IP}:{PORT}/open/v{versionId}/nlu/keyword/fetch
2、入参
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
query | string | 否 | 请求文本 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | list< map< string, object>> | 数据列表 |
示例:
Plain Text
1{
2 "time":1590394646206,
3 "data":[
4 {
5 "中国人":1.1057613751765798
6 },
7 {
8 "是":0.7954663624674271
9 },
10 {
11 "我":0.1506923505089506
12 }
13 ],
14 "code":200,
15 "msg":"OK"
16}