Spaces:
Sleeping
Sleeping
| { | |
| "openapi": "3.0.0", | |
| "info": { | |
| "title": "Codex Sovereign API Gateway", | |
| "version": "1.0.0" | |
| }, | |
| "paths": { | |
| "/evaluate": { | |
| "post": { | |
| "summary": "Evaluate work description", | |
| "requestBody": { | |
| "required": true, | |
| "content": { | |
| "application/json": { | |
| "schema": { | |
| "$ref": "#/components/schemas/EvaluationRequest" | |
| } | |
| } | |
| } | |
| }, | |
| "responses": { | |
| "200": { | |
| "description": "Evaluation Result" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "components": { | |
| "schemas": { | |
| "EvaluationRequest": { | |
| "type": "object", | |
| "properties": { | |
| "work_description": { | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |