diff --git a/compiler/src/userIntents_parser/schema/ApplyCreditCard_1.0.1.json b/compiler/src/userIntents_parser/schema/ApplyCreditCard_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..b0ea9c33bfffd3037983ae72c1855d9a6e4e2f6c --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ApplyCreditCard_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ApplyCreditCard", + "intentVersion": "1.0.1", + "llmDescription": "办理信用卡", + "keywords": ["ApplyCreditCard"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ApplyInsuranceClaim_1.0.1.json b/compiler/src/userIntents_parser/schema/ApplyInsuranceClaim_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..e3dfe07c2cf9ca63538409adb7ca26edfc5c2e6f --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ApplyInsuranceClaim_1.0.1.json @@ -0,0 +1,59 @@ +{ + "intentName": "ApplyInsuranceClaim", + "intentVersion": "1.0.1", + "llmDescription": "申请理赔", + "keywords": ["ApplyInsuranceClaim"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId", + "insuranceType" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + }, + "insuranceType": { + "description": "保险类型。Car:车险。TrafficCompulsory:交强险。Health:健康险。Accident:意外险。Property:财产险。Travel:旅行险。Pet:宠物险。Enterprise:企业险。", + "type": "string", + "enum":[ + "Car", + "TrafficCompulsory", + "Health", + "Accident", + "Property", + "Travel", + "Pet", + "Enterprise" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/BuyStock_1.0.1.json b/compiler/src/userIntents_parser/schema/BuyStock_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..34aaf08f037dd437020f0a57904b55746ff48bc8 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/BuyStock_1.0.1.json @@ -0,0 +1,85 @@ +{ + "intentName": "BuyStock", + "intentVersion": "1.0.1", + "llmDescription": "买入股票", + "keywords": ["BuyStock"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "stockName", + "stockSymbol", + "stockMarket", + "purchasePrice", + "purchaseQuantity" + ] + }, + "properties": { + "stockName": { + "description": "股票名称。比如:贵州茅台,上证指数。股票名称和(股票代码/股票市场)二选一填入。", + "type": "string" + }, + "stockSymbol": { + "description": "股票代码,全球股票唯一代码。000001:国内上证指数代码。399001:国内深证指数代码。600519:国内股茅台代码。股票名称和(股票代码&股票市场)二选一填入。", + "type": "string", + "enum":[ + "000001", + "399001", + "600519" + ] + }, + "stockMarket": { + "description": "SH:上交所。SZ:深交所。BJ:北交所。和股票代码配合使用。", + "type": "string" + }, + "purchasePrice": { + "description": "买入股票价格。", + "type": "number" + }, + "purchaseQuantity": { + "description": "买入股票数量。", + "type": "number" + } + }, + "oneOf": [ + { + "required": [ + "stockName" + ] + }, + { + "required": [ + "stockSymbol" + ] + }, + { + "required": [ + "stockMarket" + ] + } + ] + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/BuyVehicleInsurance_1.0.1.json b/compiler/src/userIntents_parser/schema/BuyVehicleInsurance_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..67e8dacc31b05529bfb4f543ffdef15934cf9496 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/BuyVehicleInsurance_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "BuyVehicleInsurance", + "intentVersion": "1.0.1", + "llmDescription": "购买车险", + "keywords": ["BuyVehicleInsurance"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/InitiateFundsTransfer_1.0.1.json b/compiler/src/userIntents_parser/schema/InitiateFundsTransfer_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..832c42a9a925bda7410b8762b158c0692d9e76d2 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/InitiateFundsTransfer_1.0.1.json @@ -0,0 +1,69 @@ +{ + "intentName": "InitiateFundsTransfer", + "intentVersion": "1.0.1", + "llmDescription": "发起转账", + "keywords": ["InitiateFundsTransfer"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "payee", + "amount", + "cardNumber", + "cardTailNumber", + "openingBank", + "remark" + ] + }, + "properties": { + "payee": { + "description": "收款人。", + "type": "string" + }, + "amount": { + "description": "金额。", + "type": "number" + }, + "cardNumber": { + "description": "收款人卡号。", + "type": "string" + }, + "cardTailNumber": { + "description": "收款人银行卡尾号(4位)。", + "type": "string", + "maxLength": 16 + }, + "openingBank": { + "description": "收款人开户行。", + "type": "string" + }, + "remark": { + "description": "备注。", + "type": "string" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/JumpFunctionPage_1.0.1.json b/compiler/src/userIntents_parser/schema/JumpFunctionPage_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..19d9a0ae83711c06114046842ab4be1ab3a30b67 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/JumpFunctionPage_1.0.1.json @@ -0,0 +1,46 @@ +{ + "intentName": "JumpFunctionPage", + "intentVersion": "1.0.1", + "llmDescription": "跳转app功能页面", + "keywords": ["JumpFunctionPage"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "pageId" + ] + }, + "required": [ + "pageId" + ], + "properties": { + "pageId": { + "description": "具体功能的标识。", + "type": "string" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/OpenScan_1.0.1.json b/compiler/src/userIntents_parser/schema/OpenScan_1.0.1.json index c0fea902cdba3cdab78bfa61263fb00989c921a9..662bd970517b1448d0e3e6a800b170e217601cb9 100644 --- a/compiler/src/userIntents_parser/schema/OpenScan_1.0.1.json +++ b/compiler/src/userIntents_parser/schema/OpenScan_1.0.1.json @@ -15,7 +15,7 @@ "entityId": { "description": "数据唯一标识。", "type": "string", - "maxLength":64 + "maxLength": 64 }, "scanFunction": { "description": "扫描里的功能。", diff --git a/compiler/src/userIntents_parser/schema/PayRepayment_1.0.1.json b/compiler/src/userIntents_parser/schema/PayRepayment_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..3a01e60af1b1a6e25957f0612a91582ffc15bde2 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/PayRepayment_1.0.1.json @@ -0,0 +1,49 @@ +{ + "intentName": "PayRepayment", + "intentVersion": "1.0.1", + "llmDescription": "支付还款", + "keywords": ["PayRepayment"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "cardTailNumber", + "repaymentType" + ] + }, + "properties": { + "cardTailNumber": { + "description": "银行卡尾号(4位)。", + "type": "string", + "maxLength": 16 + }, + "repaymentType": { + "description": "还款类型。CreditCard:信用卡。ConsumerLoan:消费贷。", + "type": "string" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/PunchIn_1.0.1.json b/compiler/src/userIntents_parser/schema/PunchIn_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..605f8853b50c6d6ed6f7514fc7c0b7a718f94df8 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/PunchIn_1.0.1.json @@ -0,0 +1,47 @@ +{ + "intentName": "PunchIn", + "intentVersion": "1.0.1", + "llmDescription": "打卡", + "keywords": ["PunchIn"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "required": [ + "entityId" + ], + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/SearchTravelLocal_1.0.1.json b/compiler/src/userIntents_parser/schema/SearchTravelLocal_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..b7393bc9d49b7ed18522d2115f89522a6f3f7db7 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/SearchTravelLocal_1.0.1.json @@ -0,0 +1,62 @@ +{ + "intentName": "SearchTravelLocal", + "intentVersion": "1.0.1", + "llmDescription": "本地搜索旅游攻略", + "keywords": ["SearchTravelLocal"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "keywords", + "location", + "city", + "travelGuidesType" + ] + }, + "properties": { + "keywords": { + "description": "搜索关键词,如景点名称,多个搜索关键词用英文逗号分隔。", + "type": "string" + }, + "location": { + "description": "位置的经纬度信息。纬度的取值范围:[-90, 90],经度的取值范围:[-180, 180]。", + "type": "object" + }, + "city": { + "description": "用于搜索景点名称等场景按城市筛选过滤非本城市记录。", + "type": "string" + }, + "travelGuidesType": { + "description": "攻略类型。", + "type": "string", + "enum":[ + "Scenic", + "CitySelection" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/SellStock_1.0.1.json b/compiler/src/userIntents_parser/schema/SellStock_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..48b5a8e6bc001e74b77da5b5fc187a8e62accdc3 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/SellStock_1.0.1.json @@ -0,0 +1,85 @@ +{ + "intentName": "SellStock", + "intentVersion": "1.0.1", + "llmDescription": "卖出股票", + "keywords": ["SellStock"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "stockName", + "stockSymbol", + "stockMarket", + "sellingPrice", + "sellQuantity" + ] + }, + "properties": { + "stockName": { + "description": "股票名称。比如:贵州茅台,上证指数。股票名称和(股票代码/股票市场)二选一填入。", + "type": "string" + }, + "stockSymbol": { + "description": "股票代码,全球股票唯一代码。000001:国内上证指数代码。399001:国内深证指数代码。600519:国内股茅台代码。股票名称和(股票代码&股票市场)二选一填入。", + "type": "string", + "enum":[ + "000001", + "399001", + "600519" + ] + }, + "stockMarket": { + "description": "SH:上交所。SZ:深交所。BJ:北交所。和股票代码配合使用。", + "type": "string" + }, + "sellingPrice": { + "description": "卖出股票价格。", + "type": "number" + }, + "sellQuantity": { + "description": "卖出股票数量。", + "type": "number" + } + }, + "oneOf": [ + { + "required": [ + "stockName" + ] + }, + { + "required": [ + "stockSymbol" + ] + }, + { + "required": [ + "stockMarket" + ] + } + ] + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/SendRedPacket_1.0.1.json b/compiler/src/userIntents_parser/schema/SendRedPacket_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..3bf9200d6e9c98daa5b12651c4a3564216eb15fa --- /dev/null +++ b/compiler/src/userIntents_parser/schema/SendRedPacket_1.0.1.json @@ -0,0 +1,68 @@ +{ + "intentName": "SendRedPacket", + "intentVersion": "1.0.1", + "llmDescription": "发红包", + "keywords": ["SendRedPacket"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "totalAmount", + "amount", + "packetNumber", + "type", + "remarks" + ] + }, + "properties": { + "totalAmount": { + "description": "红包总金额。", + "type": "string" + }, + "amount": { + "description": "单个红包金额。", + "type": "string" + }, + "packetNumber": { + "description": "红包个数。", + "type": "string" + }, + "type": { + "description": "Ordinary:普通红包。FightingLuck:拼手气红包。GoodLuck:好运红包。", + "type": "string", + "enum": [ + "Ordinary", + "FightingLuck", + "GoodLuck" + ] + }, + "remarks": { + "description": "红包祝福语。", + "type": "string" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/StartMeeting_1.0.1.json b/compiler/src/userIntents_parser/schema/StartMeeting_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..f920d611bb5904b8b831b7ce0bdc9cae242341b2 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/StartMeeting_1.0.1.json @@ -0,0 +1,53 @@ +{ + "intentName": "StartMeeting", + "intentVersion": "1.0.1", + "llmDescription": "进入会议", + "keywords": ["StartMeeting"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "conferenceId", + "participantIds", + "conferenceType" + ] + }, + "properties": { + "conferenceId": { + "description": "会议唯一ID。", + "type": "string" + }, + "participantIds": { + "description": "与会人列表,对应联系人实体的entityId。", + "type": "array" + }, + "conferenceType": { + "description": "会议类型。Video:视频。Audio:音频。", + "type": "string" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewAccountBalance_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewAccountBalance_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..7032dd40179fe776b43b94987d9f5430813ab692 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewAccountBalance_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewAccountBalance", + "intentVersion": "1.0.1", + "llmDescription": "查看账户余额", + "keywords": ["ViewAccountBalance"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewAccountChangeFunc_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewAccountChangeFunc_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..80d936e72ba49d7be4ab07179d69c1afc3933905 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewAccountChangeFunc_1.0.1.json @@ -0,0 +1,60 @@ +{ + "intentName": "ViewAccountChangeFunc", + "intentVersion": "1.0.1", + "llmDescription": "查看账户变动功能", + "keywords": ["ViewAccountChangeFunc"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId", + "cardTailNumber", + "cardType", + "timeInterval" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + }, + "cardTailNumber": { + "description": "银行卡尾号(4位)。", + "type": "string", + "maxLength": 16 + }, + "cardType": { + "description": "银行卡类型。CreditCard:信用卡。SavingsCard:储蓄卡。", + "type": "string" + }, + "timeInterval": { + "description": "查询交易时间范围。", + "type": "array" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewAccountChange_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewAccountChange_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..6399c22f64593423ab82edb606bffed1a178ccfc --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewAccountChange_1.0.1.json @@ -0,0 +1,60 @@ +{ + "intentName": "ViewAccountChange", + "intentVersion": "1.0.1", + "llmDescription": "查看账户变动", + "keywords": ["ViewAccountChange"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId", + "cardTailNumber", + "cardType", + "timeInterval" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + }, + "cardTailNumber": { + "description": "银行卡尾号(4位)。", + "type": "string", + "maxLength": 16 + }, + "cardType": { + "description": "银行卡类型。CreditCard:信用卡。SavingsCard:储蓄卡。", + "type": "string" + }, + "timeInterval": { + "description": "查询交易时间范围。", + "type": "array" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewBankBranchInfo_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewBankBranchInfo_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..699a32a265260723b2079322ee191cb168d3d284 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewBankBranchInfo_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewBankBranchInfo", + "intentVersion": "1.0.1", + "llmDescription": "查看银行网点信息", + "keywords": ["ViewBankBranchInfo"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewCloudBackup_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewCloudBackup_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..8668366e0cbe5591902126c80c2c224cea666936 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewCloudBackup_1.0.1.json @@ -0,0 +1,47 @@ +{ + "intentName": "ViewCloudBackup", + "intentVersion": "1.0.1", + "llmDescription": "查看云盘备份", + "keywords": ["ViewCloudBackup"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "backupType" + ] + }, + "properties": { + "backupType": { + "description": "备份类型。Gallery:相册。Contact:通讯录。", + "type": "string", + "enum": [ + "Gallery", + "Contact" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewCreditReport_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewCreditReport_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..1ce3e7432adcaad0b31b96a868b71c65c5614e7b --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewCreditReport_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewCreditReport", + "intentVersion": "1.0.1", + "llmDescription": "查看信用报告", + "keywords": ["ViewCreditReport"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewFundReturns_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewFundReturns_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..a0c96700aacb57122ebd01a561bbaed2c06560b1 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewFundReturns_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewFundReturns", + "intentVersion": "1.0.1", + "llmDescription": "查看基金收益", + "keywords": ["ViewFundReturns"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewFund_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewFund_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..c03f17145ebf30e9e173b9dffbdab4c77ba9ca8b --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewFund_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "ViewFund", + "intentVersion": "1.0.1", + "llmDescription": "查看基金详情", + "keywords": ["ViewFund"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewHotelAppointmentInfo_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewHotelAppointmentInfo_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..7068d48126ac571cef2bdfc323a671899d768dbb --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewHotelAppointmentInfo_1.0.1.json @@ -0,0 +1,47 @@ +{ + "intentName": "ViewHotelAppointmentInfo", + "intentVersion": "1.0.1", + "llmDescription": "查看已订酒店信息", + "keywords": ["ViewHotelAppointmentInfo"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "required": [ + "entityId" + ], + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewInsurancePolicy_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewInsurancePolicy_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..e55e13630caf0a30793fe14e1c203e1ee397b70f --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewInsurancePolicy_1.0.1.json @@ -0,0 +1,59 @@ +{ + "intentName": "ViewInsurancePolicy", + "intentVersion": "1.0.1", + "llmDescription": "查看保单", + "keywords": ["ViewInsurancePolicy"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId", + "insuranceType" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + }, + "insuranceType": { + "description": "保险类型。Car:车险。TrafficCompulsory:交强险。Health:健康险。Accident:意外险。Property:财产险。Travel:旅行险。Pet:宠物险。Enterprise:企业险。", + "type": "string", + "enum":[ + "Car", + "TrafficCompulsory", + "Health", + "Accident", + "Property", + "Travel", + "Pet", + "Enterprise" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewJobInfo_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewJobInfo_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..eee8ce36b9b86910526857a3938489feb9a1145d --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewJobInfo_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "ViewJobInfo", + "intentVersion": "1.0.1", + "llmDescription": "查看工作信息", + "keywords": ["ViewJobInfo"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewOrderedBusiness_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewOrderedBusiness_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..f436733e787e79d141d23cb8036c7f0832e77c13 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewOrderedBusiness_1.0.1.json @@ -0,0 +1,48 @@ +{ + "intentName": "ViewOrderedBusiness", + "intentVersion": "1.0.1", + "llmDescription": "查看已订业务", + "keywords": ["ViewOrderedBusiness"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "category" + ] + }, + "properties": { + "category": { + "description": "余量分类。类型,DataTraffic:数据流量。VoiceTraffic:语音流量。SMSTraffic:短信流量。", + "type": "string", + "enum": [ + "DataTraffic", + "VoiceTraffic", + "SMSTraffic" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewOverdraft_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewOverdraft_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..57bc2536c5e5676bacba1c8d16f8fdd886ec26e4 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewOverdraft_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewOverdraft", + "intentVersion": "1.0.1", + "llmDescription": "查看白条", + "keywords": ["ViewOverdraft"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewPrivatePension_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewPrivatePension_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..434f53da127412b983d9563727f0f22f1d67ed80 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewPrivatePension_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewPrivatePension", + "intentVersion": "1.0.1", + "llmDescription": "查看个人养老金", + "keywords": ["ViewPrivatePension"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewRepayment_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewRepayment_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..abf712bffa9f7efa4dd124db606f7c984e4db9db --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewRepayment_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "ViewRepayment", + "intentVersion": "1.0.1", + "llmDescription": "查看还款", + "keywords": ["ViewRepayment"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewSceneryOrder_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewSceneryOrder_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..ac81d6b0374e38b317d3a58f18db3d4b3b420de1 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewSceneryOrder_1.0.1.json @@ -0,0 +1,47 @@ +{ + "intentName": "ViewSceneryOrder", + "intentVersion": "1.0.1", + "llmDescription": "查看景点订单", + "keywords": ["ViewSceneryOrder"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "required": [ + "entityId" + ], + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewSchoolCalendar_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewSchoolCalendar_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..7114c3da86162e5c2bdc68ec67007082928814e4 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewSchoolCalendar_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewSchoolCalendar", + "intentVersion": "1.0.1", + "llmDescription": "查看校历", + "keywords": ["ViewSchoolCalendar"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewSchoolTimetable_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewSchoolTimetable_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..a62f572abb5fc0a5dfe1f7968da66c2856fc8848 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewSchoolTimetable_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewSchoolTimetable", + "intentVersion": "1.0.1", + "llmDescription": "查看课程表", + "keywords": ["ViewSchoolTimetable"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewSearchPageLocal_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewSearchPageLocal_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..954e5790f94eb3cd31ca6fa38935ea74c06679b5 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewSearchPageLocal_1.0.1.json @@ -0,0 +1,46 @@ +{ + "intentName": "ViewSearchPageLocal", + "intentVersion": "1.0.1", + "llmDescription": "打开app搜索页面", + "keywords": ["ViewSearchPageLocal"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "query" + ] + }, + "required": [ + "query" + ], + "properties": { + "query": { + "description": "搜索内容。", + "type": "string" + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewSelectedStock_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewSelectedStock_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..4f67a6c511ec2795f6289cbeb94e78e56fdb2508 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewSelectedStock_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "ViewSelectedStock", + "intentVersion": "1.0.1", + "llmDescription": "查看自选股详情", + "keywords": ["ViewSelectedStock"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewStockIssuedCalendar_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewStockIssuedCalendar_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..41d30ffee9d70b3e770b712614ba48dcc2e3ca45 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewStockIssuedCalendar_1.0.1.json @@ -0,0 +1,33 @@ +{ + "intentName": "ViewStockIssuedCalendar", + "intentVersion": "1.0.1", + "llmDescription": "查看新股日历", + "keywords": ["ViewStockIssuedCalendar"], + "parameters": { + "type": "object", + "properties": {} + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewStockIssuedUpdated_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewStockIssuedUpdated_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..25c6047d0135457f726974053b8a9d497da2b830 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewStockIssuedUpdated_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "ViewStockIssuedUpdated", + "intentVersion": "1.0.1", + "llmDescription": "查看新股新债更新", + "keywords": ["ViewStockIssuedUpdated"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewStockMarketQuote_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewStockMarketQuote_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..e942fddc429bdc06307ba14e5d1af07d5f762d04 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewStockMarketQuote_1.0.1.json @@ -0,0 +1,48 @@ +{ + "intentName": "ViewStockMarketQuote", + "intentVersion": "1.0.1", + "llmDescription": "查看股票大盘行情", + "keywords": ["ViewStockMarketQuote"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "marketArea" + ] + }, + "properties": { + "stockName": { + "description": "大盘市场区域。CN:中国大盘(沪深A股)。US:美国大盘。HK:香港大盘。", + "type": "string", + "enum":[ + "CN", + "US", + "HK" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewTravelGuides_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewTravelGuides_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..17f7e7f9e43252483b633361f5a306c9bb01482b --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewTravelGuides_1.0.1.json @@ -0,0 +1,44 @@ +{ + "intentName": "ViewTravelGuides", + "intentVersion": "1.0.1", + "llmDescription": "查看旅游攻略", + "keywords": ["ViewTravelGuides"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId" + ] + }, + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewUtilityBill_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewUtilityBill_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..84d194af20e02431ce53a348577b431da2dea6a0 --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewUtilityBill_1.0.1.json @@ -0,0 +1,59 @@ +{ + "intentName": "ViewUtilityBill", + "intentVersion": "1.0.1", + "llmDescription": "查看生活缴费", + "keywords": ["ViewUtilityBill"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "entityId", + "billType" + ] + }, + "required": [ + "entityId" + ], + "properties": { + "entityId": { + "description": "数据唯一标识。", + "type": "string", + "maxLength": 64 + }, + "billType": { + "description": "缴费类型。0:水费。1:电费。2:燃气费。3:话费。4:流量。", + "type": "number", + "enum":[ + 0, + 1, + 2, + 3, + 4 + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +} diff --git a/compiler/src/userIntents_parser/schema/ViewWealthManageProduct_1.0.1.json b/compiler/src/userIntents_parser/schema/ViewWealthManageProduct_1.0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..51c65d0bd317cec1dd8eca082075297e29faf8ac --- /dev/null +++ b/compiler/src/userIntents_parser/schema/ViewWealthManageProduct_1.0.1.json @@ -0,0 +1,52 @@ +{ + "intentName": "ViewWealthManageProduct", + "intentVersion": "1.0.1", + "llmDescription": "查看理财产品", + "keywords": ["ViewWealthManageProduct"], + "parameters": { + "type": "object", + "propertyNames": { + "enum": [ + "wealthManageName", + "wealthManageType" + ] + }, + "properties": { + "wealthManageName": { + "description": "理财名称。", + "type": "string" + }, + "wealthManageType": { + "description": "理财类型。活期理财:Current。定期理财:Regular。", + "type": "string", + "enum": [ + "Current", + "Regular" + ] + } + } + }, + "result": { + "type": "object", + "propertyNames": { + "enum": [ + "code", + "result" + ] + }, + "required": [ + "code", + "result" + ], + "properties": { + "code": { + "description": "意图调用返回的结果码,0代表成功。", + "type": "number" + }, + "result": { + "description": "意图调用返回的数据,如果无数据则返回空。", + "type": "object" + } + } + } +}