-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
348 lines (348 loc) · 7.43 KB
/
swagger.yaml
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
basePath: /
definitions:
gateway.VoiceLabel:
properties:
category:
type: string
label:
type: string
type: object
models.VoiceType:
enum:
- system
- cloned
type: string
x-enum-varnames:
- VoiceTypeSystem
- VoiceTypeCloned
null.String:
properties:
string:
type: string
valid:
type: boolean
type: object
tts.convertTextDto:
properties:
save:
type: boolean
text:
type: string
voiceId:
type: integer
voiceType:
$ref: '#/definitions/models.VoiceType'
type: object
tts.voiceDto:
properties:
description:
type: string
disabled:
type: boolean
id:
type: integer
labels:
items:
$ref: '#/definitions/gateway.VoiceLabel'
type: array
name:
type: string
new:
type: boolean
previewUrl:
allOf:
- $ref: '#/definitions/null.String'
description: '@deprecated'
previewUrls:
items:
type: string
type: array
rating:
type: number
voiceTier:
type: string
type: object
vc.voiceDto:
properties:
description:
type: string
disabled:
type: boolean
id:
type: integer
labels:
items:
$ref: '#/definitions/gateway.VoiceLabel'
type: array
name:
type: string
new:
type: boolean
previewUrl:
allOf:
- $ref: '#/definitions/null.String'
description: '@deprecated'
previewUrls:
items:
type: string
type: array
rating:
type: number
voiceTier:
type: string
type: object
voice.publicVoiceDto:
properties:
description:
type: string
disabled:
type: boolean
id:
type: integer
imageKey:
type: string
labels:
items:
$ref: '#/definitions/gateway.VoiceLabel'
type: array
name:
type: string
new:
type: boolean
previewUrl:
allOf:
- $ref: '#/definitions/null.String'
description: '@deprecated'
previewUrls:
items:
type: string
type: array
rating:
type: number
voiceTier:
type: string
type: object
voice_cloned.UpdateVoiceCloneDto:
properties:
name:
type: string
type: object
voice_cloned.VoiceClonedDto:
properties:
createdAt:
type: string
id:
type: integer
imageUrl:
type: string
name:
type: string
previewUrls:
items:
type: string
type: array
type: object
host: api.gemelo.ai
info:
contact: {}
description: gemelo.ai API documentation
title: gemelo.ai API
version: 1.0.0
paths:
/v1/cloned-voices:
get:
description: Returns all cloned voices
parameters:
- description: Max records per request
in: query
name: limit
type: integer
- description: Page indicator ('next' and 'prev' fields in the response)
in: query
name: cursor
type: string
responses:
"200":
description: OK
schema:
items:
$ref: '#/definitions/voice_cloned.VoiceClonedDto'
type: array
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice cloning
post:
consumes:
- multipart/form-data
description: Creates new cloned voice
parameters:
- description: .wav file (up to 60s / 32MB)
in: formData
name: audio
required: true
type: file
- description: Cloned voice name
in: formData
name: name
required: true
type: string
responses:
"200":
description: OK
schema:
$ref: '#/definitions/voice_cloned.VoiceClonedDto'
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice cloning
/v1/cloned-voices/{clonedVoiceID}:
delete:
description: Deletes the cloned voice
parameters:
- description: Cloned Voice ID
in: path
name: clonedVoiceID
required: true
type: integer
responses:
"204":
description: No Content
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice cloning
patch:
description: Updates the cloned voice
parameters:
- description: Cloned Voice ID
in: path
name: clonedVoiceID
required: true
type: integer
- description: Voice cloning update input
in: body
name: body
required: true
schema:
$ref: '#/definitions/voice_cloned.UpdateVoiceCloneDto'
responses:
"200":
description: OK
schema:
$ref: '#/definitions/voice_cloned.VoiceClonedDto'
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice cloning
/v1/tts/convert:
post:
description: Converts text to speech audio file
parameters:
- description: TTS input
in: body
name: body
required: true
schema:
$ref: '#/definitions/tts.convertTextDto'
responses:
"200":
description: Binary audio file
schema:
type: file
security:
- ClientKey: []
- ApiKey: []
tags:
- Text to speech
/v1/tts/voices:
get:
description: Returns all voices available for the Text to speech
responses:
"200":
description: OK
schema:
items:
$ref: '#/definitions/tts.voiceDto'
type: array
security:
- ClientKey: []
- ApiKey: []
tags:
- Text to speech
/v1/vc/convert:
post:
consumes:
- multipart/form-data
description: Converts voice in the uploaded audio file
parameters:
- description: .wav file to convert
in: formData
name: file
required: true
type: file
- description: VoiceID
in: query
name: voiceId
required: true
type: integer
- description: Voice type (system/cloned)
in: query
name: voiceType
type: string
responses:
"200":
description: Binary audio file
schema:
type: file
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice conversion
/v1/vc/voices:
get:
description: Returns all voices available for the Voice Conversion
responses:
"200":
description: OK
schema:
items:
$ref: '#/definitions/vc.voiceDto'
type: array
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice conversion
/v1/voices:
get:
description: Returns all system voices available for TTS and VC
responses:
"200":
description: OK
schema:
items:
$ref: '#/definitions/voice.publicVoiceDto'
type: array
security:
- ClientKey: []
- ApiKey: []
tags:
- Voice conversion
schemes:
- https
securityDefinitions:
ApiKey:
in: header
name: X-API-Key
type: apiKey
ClientKey:
in: header
name: X-Client-Key
type: apiKey
swagger: "2.0"