mirror of
https://github.com/ChatGPTNextWeb/NextChat-Awesome-Plugins.git
synced 2026-07-08 01:32:03 +08:00
add plugin wolframalpha
This commit is contained in:
29
plugins/wolframalpha/README.md
Normal file
29
plugins/wolframalpha/README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# WolframAlpha
|
||||
|
||||
> A wrapper around Wolfram Alpha. Useful for when you need to answer questions about Math, Science, Technology, Culture, Society and Everyday Life. Input should be a search query. If the result contains an image link, use the markdown syntax to return the image.
|
||||
|
||||
## Schema
|
||||
[opanapi.json](./opanapi.json)
|
||||
|
||||
## Servers
|
||||
|
||||
`https://www.wolframalpha.com`
|
||||
|
||||
## Operations
|
||||
|
||||
1. Calculate
|
||||
> `GET` /api/v1/llm-api?input=
|
||||
|
||||
## Authentication
|
||||
|
||||
type: custom
|
||||
location: query
|
||||
value: appid=`xxx`
|
||||
|
||||

|
||||
|
||||
## Preview
|
||||
|
||||

|
||||
|
||||
|
||||
BIN
plugins/wolframalpha/authentication.png
Normal file
BIN
plugins/wolframalpha/authentication.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
36
plugins/wolframalpha/openapi.json
Normal file
36
plugins/wolframalpha/openapi.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"openapi": "3.1.0",
|
||||
"info": {
|
||||
"title": "WolframAlpha",
|
||||
"description": "A wrapper around Wolfram Alpha. Useful for when you need to answer questions about Math, Science, Technology, Culture, Society and Everyday Life. Input should be a search query. If the result contains an image link, use the markdown syntax to return the image.",
|
||||
"version": "v1.0.0"
|
||||
},
|
||||
"servers": [
|
||||
{
|
||||
"url": "https://www.wolframalpha.com"
|
||||
}
|
||||
],
|
||||
"paths": {
|
||||
"/api/v1/llm-api": {
|
||||
"get": {
|
||||
"operationId": "Calculate",
|
||||
"description": "A wrapper around Wolfram Alpha. Useful for when you need to answer questions about Math, Science, Technology, Culture, Society and Everyday Life. Input should be a search query. If the result contains an image link, use the markdown syntax to return the image.",
|
||||
"deprecated": false,
|
||||
"parameters": [
|
||||
{
|
||||
"name": "input",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"description": "questions about Math, Science, Technology, Culture, Society and Everyday Life",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"schemas": {}
|
||||
}
|
||||
}
|
||||
BIN
plugins/wolframalpha/preview.png
Normal file
BIN
plugins/wolframalpha/preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 72 KiB |
Reference in New Issue
Block a user