lobechat-plugin-workers-sch.../public/manifest.json

52 lines
1.3 KiB
JSON
Raw Normal View History

2024-03-26 02:17:45 +00:00
{
2024-04-15 15:19:17 +00:00
"author": "Barry",
2024-03-26 02:17:45 +00:00
"homepage": "https://github.com/GithuBarry/chat-plugin-search-engine",
"identifier": "search-engine-serper",
2024-04-15 15:19:17 +00:00
"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"
}
}
}
}
],
2024-03-26 02:17:45 +00:00
"meta": {
"avatar": "🔍",
"tags": ["web", "search"],
2024-04-15 15:19:17 +00:00
"title": "Search Google via Serper",
"description": "Google search engine via Serper.dev free API (2500x🆓/month)"
2024-03-26 02:17:45 +00:00
},
2024-04-15 15:19:17 +00:00
"settings": {
"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"
}
}
}
}