1{ 2 "intentName": "ContactCustomerService", 3 "intentVersion": "1.0.1", 4 "llmDescription": "联系客服", 5 "keywords": ["ContactCustomerService"], 6 "parameters": { 7 "type": "object", 8 "properties": {} 9 }, 10 "result": { 11 "type": "object", 12 "propertyNames": { 13 "enum": [ 14 "code", 15 "result" 16 ] 17 }, 18 "required": [ 19 "code", 20 "result" 21 ], 22 "properties": { 23 "code": { 24 "description": "意图调用返回的结果码,0代表成功。", 25 "type": "number" 26 }, 27 "result": { 28 "description": "意图调用返回的数据,如果无数据则返回空。", 29 "type": "object" 30 } 31 } 32 } 33} 34