Spaces:
Sleeping
Sleeping
| { | |
| "openapi": "3.0.0", | |
| "info": { | |
| "title": "Alert Pix Ai v2", | |
| "version": "1.0.0", | |
| "description": "This is a simple API for demonstration purposes." | |
| }, | |
| "paths": { | |
| "/api/generate": { | |
| "post": { | |
| "tags": ["Generate"], | |
| "summary": "Generate text from prompt", | |
| "operationId": "generateText", | |
| "requestBody": { | |
| "content": { | |
| "application/json": { | |
| "schema": { | |
| "$ref": "#/components/schemas/Generate" | |
| } | |
| } | |
| }, | |
| "required": true | |
| }, | |
| "responses": { | |
| "200": { | |
| "description": "Generated text", | |
| "content": { | |
| "application/json": { | |
| "schema": { | |
| "$ref": "#/components/schemas/Generate" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "components": { | |
| "schemas": { | |
| "Generate": { | |
| "type": "object", | |
| "properties": { | |
| "text": { | |
| "type": "string", | |
| "example": "This is a generated text." | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |