-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.json
61 lines (61 loc) · 1.89 KB
/
plugin.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "NewsData.io",
"avatar": "https://newsdata.io/images/global/newsdata-icon.png",
"variables": {
"API_KEY": "Your API Key"
},
"functions": [
{
"name": "search_latest_news",
"description": "Query latest news articles from NewsData.io",
"parameters": {
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "Search news articles for specific keywords or phrases"
},
"qInTitle": {
"type": "string",
"description": "Search news articles for specific keywords or phrases present in the news titles only"
},
"country": {
"type": "string",
"description": "Search the news articles from a specific country"
},
"category": {
"type": "string",
"description": "Search the news articles for a specific category"
},
"language": {
"type": "string",
"description": "Search the news articles for a specific language"
},
"domain": {
"type": "string",
"description": "Search the news articles for specific domains or news sources"
},
"full_content": {
"type": "boolean",
"description": "Get only those news articles which contain full content of the articles"
},
"image": {
"type": "boolean",
"description": "Get only those news articles which contain images"
},
"video": {
"type": "boolean",
"description": "Get only those news articles which contain videos"
},
"page": {
"type": "string",
"description": "Use page parameter to navigate to the next page"
}
},
"required": [
"q"
]
}
}
]
}