-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
381 lines (362 loc) · 12 KB
/
Copy pathopenapi.yaml
File metadata and controls
381 lines (362 loc) · 12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
---
openapi: 3.0.3
info:
title: embedding-server API
version: 0.1.0
description: |
マルチモーダル埋め込み用のジョブ管理 API。
テキスト単体・画像単体・テキスト+画像ペアを受け付ける。
同一テキストの埋め込み結果はサーバー内部でキャッシュされる。
servers:
- url: http://localhost:8080
description: 開発環境
tags:
- name: embeddings
description: テキスト・画像・テキスト+画像から埋め込みジョブを作成する
- name: internal-worker
description: 内部で動いているワーカー用
paths:
/v1/embeddings/text:
post:
operationId: postEmbeddingsText
tags: [embeddings]
summary: テキストの埋め込みベクトルを返す
description: |
ジョブを DB に作成し、処理完了まで待機してから埋め込みベクトルを返す。
同一テキストはサーバー内部でキャッシュされ、キャッシュヒット時は即時返却。
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [text]
properties:
text:
$ref: "#/components/schemas/EmbeddingText"
responses:
"200":
description: 埋め込みベクトル
content:
application/json:
schema:
$ref: "#/components/schemas/EmbeddingResult"
"400":
description: テキストが無効、または JSON が不正です
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"503":
description: ジョブを受け付けられません。しばらく待ってから再送してください
headers:
Retry-After:
description: 推奨リトライ待機秒数
required: true
schema:
type: integer
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"504":
description: ジョブ処理がタイムアウトしました
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"500":
description: サーバー内部エラー
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/v1/embeddings/images:
post:
operationId: postEmbeddingsImages
tags: [embeddings]
summary: 画像群の埋め込みベクトルを返す
description: |
ジョブを DB に作成し、処理完了まで待機してから埋め込みベクトルを返す。
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
required: [images]
properties:
images:
type: array
minItems: 1
maxItems: 4
items:
$ref: "#/components/schemas/EmbeddingImageFile"
responses:
"200":
description: 埋め込みベクトル
content:
application/json:
schema:
$ref: "#/components/schemas/EmbeddingResult"
"400":
description: multipart または images フィールドが不正です
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"413":
description: アップロードサイズが上限を超えています
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"503":
description: ジョブを受け付けられません。しばらく待ってから再送してください
headers:
Retry-After:
description: 推奨リトライ待機秒数
required: true
schema:
type: integer
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"504":
description: ジョブ処理がタイムアウトしました
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"500":
description: サーバー内部エラー
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/v1/embeddings/multimodal:
post:
operationId: postEmbeddingsMultimodal
tags: [embeddings]
summary: テキストと画像群を合わせた埋め込みベクトルを返す
description: |
text + images 用のエンドポイント。textのみ、imageのみでもリクエスト可能。
ジョブを DB に作成し、処理完了まで待機してから埋め込みベクトルを返す。
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
properties:
text:
$ref: "#/components/schemas/EmbeddingText"
images:
type: array
maxItems: 4
items:
$ref: "#/components/schemas/EmbeddingImageFile"
responses:
"200":
description: 埋め込みベクトル
content:
application/json:
schema:
$ref: "#/components/schemas/EmbeddingResult"
"400":
description: text・images の指定が不正です
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"413":
description: アップロードサイズが上限を超えています
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"503":
description: ジョブを受け付けられません。しばらく待ってから再送してください
headers:
Retry-After:
description: 推奨リトライ待機秒数
required: true
schema:
type: integer
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"504":
description: ジョブ処理がタイムアウトしました
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"500":
description: サーバー内部エラー
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/internal/worker/jobs/claim:
post:
operationId: claimWorkerJob
tags: [internal-worker]
summary: 次の pending ジョブをロックして取得
description: |
DB 内で最古の pending ジョブを processing にし、id と payload を返す。
ジョブが無い場合は 204。
responses:
"200":
description: ジョブあり
content:
application/json:
schema:
type: object
required: [id, payload]
properties:
id:
$ref: "#/components/schemas/JobId"
payload:
$ref: "#/components/schemas/WorkerJobPayload"
"204":
$ref: "#/components/responses/NoContent"
"500":
description: サーバー内部エラー
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/internal/worker/jobs/{id}/complete:
post:
operationId: completeWorkerJob
tags: [internal-worker]
summary: ジョブを完了にする
parameters:
- $ref: "#/components/parameters/JobId"
requestBody:
description: |
worker が計算した埋め込み結果を返す。
テキスト埋め込みジョブの場合、サーバーはこの結果を対応するキーでキャッシュへ保存する。
required: true
content:
application/json:
schema:
type: object
required: [result]
properties:
result:
$ref: "#/components/schemas/EmbeddingResult"
responses:
"204":
$ref: "#/components/responses/NoContent"
"400":
description: リクエストが不正です
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"404":
description: 指定したジョブが見つかりません
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"500":
description: サーバー内部エラー
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/internal/worker/jobs/{id}/fail:
post:
operationId: failWorkerJob
tags: [internal-worker]
summary: ジョブを失敗にする
parameters:
- $ref: "#/components/parameters/JobId"
responses:
"204":
$ref: "#/components/responses/NoContent"
"400":
description: リクエストが不正です
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"404":
description: 指定したジョブが見つかりません
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"500":
description: サーバー内部エラー
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
components:
parameters:
JobId:
name: id
in: path
required: true
schema:
$ref: "#/components/schemas/JobId"
responses:
NoContent:
description: No Content
schemas:
ErrorResponse:
type: object
required: [message]
properties:
message:
type: string
description: エラーメッセージ
JobId:
type: string
format: uuid
EmbeddingResult:
type: object
required: [vector]
properties:
vector:
type: array
items:
type: number
format: float
description: 正規化済みの埋め込みベクトル
EmbeddingText:
type: string
maxLength: 8192
description: 埋め込みに用いるテキスト
EmbeddingImageFile:
type: string
format: binary
description: 埋め込みに用いる画像バイナリ
EmbeddingImageObject:
type: object
required: [key]
properties:
key:
type: string
description: worker がオブジェクトストレージから取得する画像オブジェクトキー
description: worker が参照する画像オブジェクト
EmbeddingImageObjects:
type: array
minItems: 1
items:
$ref: "#/components/schemas/EmbeddingImageObject"
description: worker が参照する画像オブジェクトのリスト
WorkerJobPayload:
type: object
description: worker が処理するジョブ内容
properties:
text:
$ref: "#/components/schemas/EmbeddingText"
image_objects:
$ref: "#/components/schemas/EmbeddingImageObjects"