系统意图列表
更新时间:2023-03-10
1、接口地址:(GET) {IP}:{PORT}/open/v1/sys/intent
2、入参(query param)
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
ps | int | 是 | 页面大小【默认20】 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | object | 数据 | |
total | int | data | 数据总量 |
ps | int | data | 页面大小 |
pn | int | data | 页码 |
list | list | data | 数据列表 |
agentId | string | list | agentId |
created | long | list | 创建时间戳 |
nameZh | string | list | 意图中文名称 |
intro | string | list | 系统意图示例,类似这些对话会被识别为该意图,以“\x01”分割 |
name | string | list | 意图ID |
description | string | list | 意图描述 |
id | string | list | 数据存储id |
updated | string | list | 数据更新时间戳 |
addedSystem | boolean | list | 当前agent是否已启用该系统意图 |
示例:
{
"time":1572255991674,
"data":{
"total":6,
"ps":20,
"list":[
{
"agentId":"sys_agent_id",
"created":"",
"nameZh":"挂断意图",
"intro":"挂断 \x01exit",
"name":"sys_exit",
"description":"挂断意图",
"id":"sys_intent_9",
"updated":""
},
{
"agentId":"sys_agent_id",
"addedSystem":true,
"created":1560280513000,
"nameZh":"转人工意图",
"intro":"转人工",
"name":"sys_manual_service",
"description":"转人工意图",
"id":"sys_intent_7",
"updated":""
}
],
"pn":1
},
"code":200,
"msg":"OK"
}