Update manifest.json

This commit is contained in:
Barry Wang 2024-04-15 11:19:17 -04:00
parent 5ce5f63fb7
commit 6e17029ef2
1 changed files with 45 additions and 8 deletions

View File

@ -1,15 +1,52 @@
{ {
"$schema": "../node_modules/@lobehub/chat-plugin-sdk/schema.json", "author": "Barry",
"api": [],
"author": "GithuBarry",
"homepage": "https://github.com/GithuBarry/chat-plugin-search-engine", "homepage": "https://github.com/GithuBarry/chat-plugin-search-engine",
"identifier": "search-engine-serper", "identifier": "search-engine-serper",
"api": [
{
"name": "searchGoogle",
"description": "Search Google and return top 10 results",
"url": "https://google.serper.dev/search",
"parameters": {
"type": "object",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"example": "今天吃什么"
},
"gl": {
"type": "string",
"description": "Google Geo location parameter",
"example": "cn"
},
"hl": {
"type": "string",
"description": "Google Geo locale parameter",
"example": "zh-cn"
}
}
}
}
],
"meta": { "meta": {
"avatar": "🔍", "avatar": "🔍",
"tags": ["web", "search"], "tags": ["web", "search"],
"title": "Search Engine Serper", "title": "Search Google via Serper",
"description": "Query search engine to get information" "description": "Google search engine via Serper.dev free API (2500x🆓/month)"
}, },
"openapi": "https://raw.githubusercontent.com/GithuBarry/chat-plugin-search-engine/main/public/openapi.json", "settings": {
"version": "1" "type": "object",
"required": ["X-API-KEY"],
"properties": {
"X-API-KEY": {
"title": "Serper API Key",
"description": "The API key for authentication with Serper API",
"type": "string",
"format": "password"
}
}
}
} }