Files
openclaw/extensions/tavily/openclaw.plugin.json
Lakshya Agarwal b36e456b09 feat: add Tavily as a bundled web search plugin with search and extract tools (#49200)
Merged via squash.

Prepared head SHA: ece9226e88
Co-authored-by: lakshyaag-tavily <266572148+lakshyaag-tavily@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
2026-03-20 01:06:26 -04:00

38 lines
842 B
JSON

{
"id": "tavily",
"skills": ["./skills"],
"providerAuthEnvVars": {
"tavily": ["TAVILY_API_KEY"]
},
"uiHints": {
"webSearch.apiKey": {
"label": "Tavily API Key",
"help": "Tavily API key for web search and extraction (fallback: TAVILY_API_KEY env var).",
"sensitive": true,
"placeholder": "tvly-..."
},
"webSearch.baseUrl": {
"label": "Tavily Base URL",
"help": "Tavily API base URL override."
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"webSearch": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": ["string", "object"]
},
"baseUrl": {
"type": "string"
}
}
}
}
}
}