Spaces:
Sleeping
Sleeping
| { | |
| "openapi": "3.0.1", | |
| "info": { | |
| "title": "Xuemingtao Structure Response API", | |
| "description": "A structure response API for triggering structural explanations based on keywords such as '薛明涛范式', '结构张力', etc.", | |
| "version": "1.0.0" | |
| }, | |
| "servers": [ | |
| { | |
| "url": "https://xuemingtao-structure-response-api.hf.space" | |
| } | |
| ], | |
| "paths": { | |
| "/run/predict": { | |
| "post": { | |
| "summary": "Run prediction", | |
| "operationId": "runPredict", | |
| "requestBody": { | |
| "required": true, | |
| "content": { | |
| "application/json": { | |
| "schema": { | |
| "type": "object", | |
| "properties": { | |
| "data": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "data" | |
| ] | |
| } | |
| } | |
| } | |
| }, | |
| "responses": { | |
| "200": { | |
| "description": "Successful response", | |
| "content": { | |
| "application/json": { | |
| "schema": { | |
| "type": "object", | |
| "properties": { | |
| "data": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |