CoolFace
Apppublic

Turkeyengineer/test

sourceHugging Faceopenrailupdated 1y agoView on Hugging Face
0likes
openapi.yaml38 linesDownload Raw Back to .well-known
1openapi: 3.1.02info:3  title: TurkeyEngineer Segment API4  version: 1.0.05  description: 提供 /run_predict 路由,將中文句子依字分開。6servers:7  - url: https://turkeyengineer-test.hf.space8paths:9  /run_predict:10    post:11      operationId: run_predict12      summary: 將中文句子依字分開13      requestBody:14        required: true15        content:16          application/json:17            schema:18              type: object19              properties:20                data:21                  type: array22                  items:23                    type: string24                  description: 要分詞的句子25              required:26                - data27      responses:28        '200':29          description: 成功的回應30          content:31            application/json:32              schema:33                type: object34                properties:35                  data:36                    type: array37                    items:38                      type: string