-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtools.json
More file actions
36 lines (36 loc) · 1.08 KB
/
tools.json
File metadata and controls
36 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "baidu_place_search",
"description": "使用百度地图API进行地点检索服务",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "检索关键字"
},
"tag": {
"type": "string",
"description": "检索分类偏好,与query组合进行检索,多个分类以逗号分隔"
},
"region": {
"type": "string",
"description": "检索行政区划区域,如北京、上海"
},
"output": {
"type": "string",
"description": "输出格式",
"enum": ["json", "xml"],
"default": "json"
}
},
"required": ["query", "region"]
},
"axiosConfig": {
"url": "https://api.map.baidu.com/place/v2/search",
"method": "get",
"params": {
"ak": "rkHCNYzh78IwiXfZxYmaoNhLdh8bFSLs",
"output": "json"
}
}
}