mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-07-24 07:53:22 +08:00
20 lines
519 B
JSON
20 lines
519 B
JSON
{
|
|
"id": "serper",
|
|
"name": "Serper",
|
|
"capability": "web_search",
|
|
"enabled": false,
|
|
"builtin": true,
|
|
"priority": 30,
|
|
"endpoint": "https://google.serper.dev/search",
|
|
"method": "POST",
|
|
"auth": { "type": "header", "headerName": "X-API-KEY", "apiKeyRef": "serper" },
|
|
"request": {
|
|
"bodyTemplate": { "q": "${query}", "num": "${maxResults}" }
|
|
},
|
|
"response": {
|
|
"resultsPath": "organic",
|
|
"item": { "titlePath": "title", "urlPath": "link", "snippetPath": "snippet" }
|
|
},
|
|
"timeoutMs": 10000
|
|
}
|