langchain/tests/unit_tests/tools/openapi/test_specs/wellknown/apispec.json
Harrison Chase 26314d7004
Harrison/openapi parser (#2461)
Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com>
2023-04-05 22:19:09 -07:00

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": []
}