mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
26314d7004
Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"openapi": "3.0.0",
|
|
"info": {
|
|
"version": "1.0.0",
|
|
"title": "Wellknown",
|
|
"description": "A registry of AI Plugins.",
|
|
"contact": {
|
|
"name": "Wellknown",
|
|
"url": "https://wellknown.ai",
|
|
"email": "cfortuner@gmail.com"
|
|
},
|
|
"x-logo": {
|
|
"url": "http://localhost:3001/logo.png"
|
|
}
|
|
},
|
|
"servers": [
|
|
{
|
|
"url": "https://wellknown.ai/api"
|
|
}
|
|
],
|
|
"paths": {
|
|
"/plugins": {
|
|
"get": {
|
|
"operationId": "getProvider",
|
|
"tags": [
|
|
"Plugins"
|
|
],
|
|
"summary": "List all the Wellknown AI Plugins.",
|
|
"description": "List all the Wellknown AI Plugins. Returns ai-plugin.json objects in an array",
|
|
"parameters": [],
|
|
"responses": {
|
|
"200": {
|
|
"description": "OK"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/api/plugins": {
|
|
"get": {
|
|
"description": "Returns a list of Wellknown ai-plugins json objects from the Wellknown ai-plugins registry.",
|
|
"responses": {
|
|
"200": {
|
|
"description": "A list of Wellknown ai-plugins json objects."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"components": {},
|
|
"tags": []
|
|
} |