-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathclient.py
More file actions
551 lines (440 loc) · 16.2 KB
/
Copy pathclient.py
File metadata and controls
551 lines (440 loc) · 16.2 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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
# This file was auto-generated by Fern from our API Definition.
import typing
from .. import core
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.pagination import AsyncPager, SyncPager
from ..core.request_options import RequestOptions
from ..types.get_voice import GetVoice
from ..types.list_voices_response import ListVoicesResponse
from .raw_client import AsyncRawVoicesClient, RawVoicesClient
from .types.create_voices_request_gender import CreateVoicesRequestGender
# this is used as the default value for optional parameters
OMIT = typing.cast(typing.Any, ...)
class VoicesClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawVoicesClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> RawVoicesClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawVoicesClient
"""
return self._raw_client
def list(
self,
*,
cursor: typing.Optional[str] = None,
limit: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> SyncPager[GetVoice, ListVoicesResponse]:
"""
Lists the voices available to the caller - the shared voice
catalog plus the workspace's personal cloned voices. By default
the full catalogue is returned in one response. Pagination is
opt-in: pass `limit` (and then `cursor` from the previous
response) to page through the list while `has_more` is true. Max
page size is 200.
Parameters
----------
cursor : typing.Optional[str]
Opaque pagination cursor from a previous response.
limit : typing.Optional[int]
Max items per page (default 50, max 200).
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
SyncPager[GetVoice, ListVoicesResponse]
The voice catalogue (or a page of it when `limit` is set).
Examples
--------
from speechify import Speechify
client = Speechify(
"2026-07-07",
token="YOUR_TOKEN",
)
response = client.voices.list()
for item in response:
yield item
# alternatively, you can paginate page-by-page
for page in response.iter_pages():
yield page
"""
return self._raw_client.list(cursor=cursor, limit=limit, request_options=request_options)
def create(
self,
*,
name: str,
gender: CreateVoicesRequestGender,
sample: core.File,
consent: str,
idempotency_key: typing.Optional[str] = None,
locale: typing.Optional[str] = OMIT,
avatar: typing.Optional[core.File] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> GetVoice:
"""
Create a personal (cloned) voice for the user
Parameters
----------
name : str
Name of the personal voice
gender : CreateVoicesRequestGender
Gender marker for the personal voice
male GenderMale
female GenderFemale
not_specified GenderNotSpecified
sample : core.File
See core.File for more documentation
consent : str
A **string** representing the user consent information in JSON format
This should include the fullName and email of the consenting individual.
For example, `{"fullName": "John Doe", "email": "john@example.com"}`
idempotency_key : typing.Optional[str]
A client-generated key (an opaque string, max 255 chars) that makes a
side-effect POST safe to retry: the server runs the operation exactly
once and replays the first response (its status and body) for 24 hours.
Reusing a key with a different request body, or while the first request
is still in flight, returns `409 idempotency_conflict`. A replayed
response carries the `Idempotent-Replayed: true` header.
locale : typing.Optional[str]
Native language (locale) of the personal voice (e.g. en-US, es-ES, etc.)
avatar : typing.Optional[core.File]
See core.File for more documentation
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetVoice
A created voice
Examples
--------
from speechify import Speechify
client = Speechify(
"2026-07-07",
token="YOUR_TOKEN",
)
client.voices.create(
idempotency_key="a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
name="name",
gender="male",
consent="consent",
)
"""
_response = self._raw_client.create(
name=name,
gender=gender,
sample=sample,
consent=consent,
idempotency_key=idempotency_key,
locale=locale,
avatar=avatar,
request_options=request_options,
)
return _response.data
def get(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> GetVoice:
"""
Fetch a single voice by id - a shared catalogue voice or one of
the caller's own personal (cloned) voices. A personal voice that
belongs to another workspace returns 404, identical to an
unknown id, so voice inventory is never enumerable across tenants.
Parameters
----------
voice_id : str
The ID of the voice to fetch
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetVoice
The voice.
Examples
--------
from speechify import Speechify
client = Speechify(
"2026-07-07",
token="YOUR_TOKEN",
)
client.voices.get(
voice_id="voice_id",
)
"""
_response = self._raw_client.get(voice_id, request_options=request_options)
return _response.data
def delete(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None:
"""
Delete a personal (cloned) voice
Parameters
----------
voice_id : str
The ID of the voice to delete
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
None
Examples
--------
from speechify import Speechify
client = Speechify(
"2026-07-07",
token="YOUR_TOKEN",
)
client.voices.delete(
voice_id="voice_id",
)
"""
_response = self._raw_client.delete(voice_id, request_options=request_options)
return _response.data
def download_sample(
self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Iterator[bytes]:
"""
Download a personal (cloned) voice sample
Parameters
----------
voice_id : str
The ID of the voice to download sample for
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.Iterator[bytes]
Voice sample audio file
Examples
--------
from speechify import Speechify
client = Speechify(
"2026-07-07",
token="YOUR_TOKEN",
)
client.voices.download_sample(
voice_id="voice_id",
)
"""
with self._raw_client.download_sample(voice_id, request_options=request_options) as r:
yield from r.data
class AsyncVoicesClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawVoicesClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> AsyncRawVoicesClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawVoicesClient
"""
return self._raw_client
async def list(
self,
*,
cursor: typing.Optional[str] = None,
limit: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncPager[GetVoice, ListVoicesResponse]:
"""
Lists the voices available to the caller - the shared voice
catalog plus the workspace's personal cloned voices. By default
the full catalogue is returned in one response. Pagination is
opt-in: pass `limit` (and then `cursor` from the previous
response) to page through the list while `has_more` is true. Max
page size is 200.
Parameters
----------
cursor : typing.Optional[str]
Opaque pagination cursor from a previous response.
limit : typing.Optional[int]
Max items per page (default 50, max 200).
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncPager[GetVoice, ListVoicesResponse]
The voice catalogue (or a page of it when `limit` is set).
Examples
--------
import asyncio
from speechify import AsyncSpeechify
client = AsyncSpeechify(
"2026-07-07",
token="YOUR_TOKEN",
)
async def main() -> None:
response = await client.voices.list()
async for item in response:
yield item
# alternatively, you can paginate page-by-page
async for page in response.iter_pages():
yield page
asyncio.run(main())
"""
return await self._raw_client.list(cursor=cursor, limit=limit, request_options=request_options)
async def create(
self,
*,
name: str,
gender: CreateVoicesRequestGender,
sample: core.File,
consent: str,
idempotency_key: typing.Optional[str] = None,
locale: typing.Optional[str] = OMIT,
avatar: typing.Optional[core.File] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> GetVoice:
"""
Create a personal (cloned) voice for the user
Parameters
----------
name : str
Name of the personal voice
gender : CreateVoicesRequestGender
Gender marker for the personal voice
male GenderMale
female GenderFemale
not_specified GenderNotSpecified
sample : core.File
See core.File for more documentation
consent : str
A **string** representing the user consent information in JSON format
This should include the fullName and email of the consenting individual.
For example, `{"fullName": "John Doe", "email": "john@example.com"}`
idempotency_key : typing.Optional[str]
A client-generated key (an opaque string, max 255 chars) that makes a
side-effect POST safe to retry: the server runs the operation exactly
once and replays the first response (its status and body) for 24 hours.
Reusing a key with a different request body, or while the first request
is still in flight, returns `409 idempotency_conflict`. A replayed
response carries the `Idempotent-Replayed: true` header.
locale : typing.Optional[str]
Native language (locale) of the personal voice (e.g. en-US, es-ES, etc.)
avatar : typing.Optional[core.File]
See core.File for more documentation
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetVoice
A created voice
Examples
--------
import asyncio
from speechify import AsyncSpeechify
client = AsyncSpeechify(
"2026-07-07",
token="YOUR_TOKEN",
)
async def main() -> None:
await client.voices.create(
idempotency_key="a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
name="name",
gender="male",
consent="consent",
)
asyncio.run(main())
"""
_response = await self._raw_client.create(
name=name,
gender=gender,
sample=sample,
consent=consent,
idempotency_key=idempotency_key,
locale=locale,
avatar=avatar,
request_options=request_options,
)
return _response.data
async def get(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> GetVoice:
"""
Fetch a single voice by id - a shared catalogue voice or one of
the caller's own personal (cloned) voices. A personal voice that
belongs to another workspace returns 404, identical to an
unknown id, so voice inventory is never enumerable across tenants.
Parameters
----------
voice_id : str
The ID of the voice to fetch
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetVoice
The voice.
Examples
--------
import asyncio
from speechify import AsyncSpeechify
client = AsyncSpeechify(
"2026-07-07",
token="YOUR_TOKEN",
)
async def main() -> None:
await client.voices.get(
voice_id="voice_id",
)
asyncio.run(main())
"""
_response = await self._raw_client.get(voice_id, request_options=request_options)
return _response.data
async def delete(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None:
"""
Delete a personal (cloned) voice
Parameters
----------
voice_id : str
The ID of the voice to delete
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
None
Examples
--------
import asyncio
from speechify import AsyncSpeechify
client = AsyncSpeechify(
"2026-07-07",
token="YOUR_TOKEN",
)
async def main() -> None:
await client.voices.delete(
voice_id="voice_id",
)
asyncio.run(main())
"""
_response = await self._raw_client.delete(voice_id, request_options=request_options)
return _response.data
async def download_sample(
self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.AsyncIterator[bytes]:
"""
Download a personal (cloned) voice sample
Parameters
----------
voice_id : str
The ID of the voice to download sample for
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.AsyncIterator[bytes]
Voice sample audio file
Examples
--------
import asyncio
from speechify import AsyncSpeechify
client = AsyncSpeechify(
"2026-07-07",
token="YOUR_TOKEN",
)
async def main() -> None:
await client.voices.download_sample(
voice_id="voice_id",
)
asyncio.run(main())
"""
async with self._raw_client.download_sample(voice_id, request_options=request_options) as r:
async for _chunk in r.data:
yield _chunk