-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
69 lines (69 loc) · 1.76 KB
/
openclaw.plugin.json
File metadata and controls
69 lines (69 loc) · 1.76 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
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
62
63
64
65
66
67
68
69
{
"id": "justserpapi",
"name": "JustSerpAPI",
"description": "JustSerpAPI web_search provider for OpenClaw",
"version": "0.1.0",
"providerAuthEnvVars": {
"justserpapi": ["JUSTSERPAPI_API_KEY", "JUSTSERP_API_KEY"]
},
"uiHints": {
"webSearch.apiKey": {
"label": "JustSerpAPI API Key",
"help": "API key for JustSerpAPI web search (fallback: JUSTSERPAPI_API_KEY or JUSTSERP_API_KEY).",
"sensitive": true,
"placeholder": "sk-..."
},
"webSearch.baseUrl": {
"label": "JustSerpAPI Base URL",
"help": "JustSerpAPI API base URL override."
},
"webSearch.language": {
"label": "Default language",
"help": "Optional Google language code, such as en."
},
"webSearch.country": {
"label": "Default country",
"help": "Optional Google country code, such as us."
},
"webSearch.safeSearch": {
"label": "Default SafeSearch",
"help": "Optional default SafeSearch setting: active or off."
}
},
"contracts": {
"webSearchProviders": ["justserpapi"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"webSearch": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": ["string", "object"]
},
"baseUrl": {
"type": "string"
},
"language": {
"type": "string"
},
"country": {
"type": "string"
},
"safeSearch": {
"type": "string",
"enum": ["active", "off"]
},
"count": {
"type": "number",
"minimum": 1,
"maximum": 10
}
}
}
}
}
}