test / openapi.yaml
Turkeyengineer's picture
Update openapi.yaml
5c9e304 verified
raw
history blame
1.03 kB
openapi: 3.1.0
info:
title: TurkeyEngineer Segment API
version: 1.0.0
description: 呼叫 Hugging Face 上的斷詞 API,將中文句子依字分開。
servers:
- url: https://turkeyengineer-test.hf.space
paths:
/run_predict:
post:
operationId: run_predict
summary: 將中文句子依字分開
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
type: string
description: 要處理的中文句子陣列
required:
- data
responses:
'200':
description: 成功的回應分詞結果
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
type: string