You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/tests/unit_tests/tools/openapi/test_specs/wellknown/apispec.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": []
}