Structure-response-API / openapi.json
Xuemingtao's picture
Upload openapi.json
6bd7f29 verified
Raw
History Blame Contribute Delete
1.56 kB
{
"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"
}
}
}
}
}
}
}
}
}
}
}
}