CoolFace
Apppublic

Xuemingtao/Structure-GPT-plugin-API

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
openapi.json57 linesDownload Raw Back to root
1{2  "openapi": "3.0.1",3  "info": {4    "title": "薛明涛结构预测系统",5    "version": "1.0.0",6    "description": "基于珠子张力链响应的结构系统,用于识别结构关键词并返回动态响应"7  },8  "servers": [9    {10      "url": "https://structure-api-render.onrender.com"11    }12  ],13  "paths": {14    "/predict": {15      "post": {16        "summary": "结构关键词触发响应",17        "operationId": "structure_predict",18        "requestBody": {19          "required": true,20          "content": {21            "application/json": {22              "schema": {23                "type": "object",24                "properties": {25                  "text": {26                    "type": "string",27                    "description": "待分析的结构关键词或语句"28                  }29                },30                "required": ["text"]31              }32            }33          }34        },35        "responses": {36          "200": {37            "description": "结构响应成功",38            "content": {39              "application/json": {40                "schema": {41                  "type": "object",42                  "properties": {43                    "response": {44                      "type": "string",45                      "description": "系统返回的结构响应文本"46                    }47                  }48                }49              }50            }51          }52        }53      }54    }55  }56}57