• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewStockMarketQuote",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看股票大盘行情",
5  "keywords": ["ViewStockMarketQuote"],
6  "domain": "FinanceDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "marketArea"
12      ]
13    },
14    "properties": {
15      "stockName": {
16        "description": "大盘市场区域。CN:中国大盘(沪深A股)。US:美国大盘。HK:香港大盘。",
17        "type": "string",
18        "enum":[
19          "CN",
20          "US",
21          "HK"
22        ]
23      }
24    }
25  },
26  "result": {
27    "type": "object",
28    "propertyNames": {
29      "enum": [
30        "code",
31        "result"
32      ]
33    },
34    "required": [
35      "code",
36      "result"
37    ],
38    "properties": {
39      "code": {
40        "description": "意图调用返回的结果码,0代表成功。",
41        "type": "number"
42      },
43      "result": {
44        "description": "意图调用返回的数据,如果无数据则返回空。",
45        "type": "object"
46      }
47    }
48  }
49}
50