Skip to content

Commit edc6178

Browse files
🌿 Fern Regeneration -- May 20, 2025 (elevenlabs#561)
* SDK regeneration * Fix tests and mypy issues * Fix ConvAI test --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: Paul Asjes <paul.asjes@elevenlabs.io>
1 parent bcd616f commit edc6178

File tree

787 files changed

+45815
-26955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

787 files changed

+45815
-26955
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
dist/
21
.mypy_cache/
2+
.ruff_cache/
33
__pycache__/
4+
dist/
45
poetry.toml
5-
.ruff_cache/

.mock/asyncapi.yml

Lines changed: 42 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,48 @@ channels:
3939
bindings:
4040
ws:
4141
query:
42-
$ref: '#/components/schemas/StreamInputQueryParameters'
42+
type: object
43+
properties:
44+
authorization:
45+
description: Your authorization bearer token.
46+
type: string
47+
model_id:
48+
description: The model ID to use.
49+
type: string
50+
language_code:
51+
description: The ISO 639-1 language code (for specific models).
52+
type: string
53+
enable_logging:
54+
description: Whether to enable logging of the request.
55+
type: boolean
56+
default: true
57+
enable_ssml_parsing:
58+
description: Whether to enable SSML parsing.
59+
type: boolean
60+
default: false
61+
output_format:
62+
$ref: '#/components/schemas/TextToSpeechOutputFormatEnum'
63+
inactivity_timeout:
64+
description: Timeout for inactivity before a context is closed (seconds), can be up to 180 seconds.
65+
type: integer
66+
default: 20
67+
sync_alignment:
68+
description: Whether to include timing data with every audio chunk.
69+
type: boolean
70+
default: false
71+
auto_mode:
72+
description: Reduces latency by disabling chunk schedule and buffers. Recommended for full sentences/phrases.
73+
type: boolean
74+
default: false
75+
apply_text_normalization:
76+
$ref: '#/components/schemas/TextToSpeechApplyTextNormalizationEnum'
77+
seed:
78+
description: If specified, system will best-effort sample deterministically. Integer between 0 and 4294967295.
79+
type: integer
80+
minimum: 0
81+
maximum: 4294967295
82+
example: 12345
83+
4384
publish:
4485
description: Send messages to the WebSocket
4586
operationId: sendMessage
@@ -813,50 +854,3 @@ components:
813854
'opus_48000_192',
814855
]
815856
default: 'mp3_44100'
816-
StreamInputQueryParameters:
817-
type: object
818-
properties:
819-
model_id:
820-
description: The model ID to use
821-
type: string
822-
language_code:
823-
description: The ISO 639-1 language code (for Turbo v2.5 and Flash v2.5 models only)
824-
type: string
825-
enable_logging:
826-
description: Whether to enable logging of the request
827-
type: string
828-
enable_ssml_parsing:
829-
description: Whether to enable SSML parsing
830-
type: boolean
831-
default: false
832-
optimize_streaming_latency:
833-
description: Latency optimization level (deprecated)
834-
type: string
835-
enum: ['0', '1', '2', '3', '4']
836-
default: '0'
837-
deprecated: true
838-
output_format:
839-
$ref: '#/components/schemas/TextToSpeechOutputFormatEnum'
840-
inactivity_timeout:
841-
description: Timeout for inactivity before connection is closed
842-
type: number
843-
default: 20
844-
sync_alignment:
845-
description: Whether to include timing data with every audio chunk
846-
type: boolean
847-
default: false
848-
auto_mode:
849-
description: This parameter focuses on reducing the latency by disabling the chunk schedule and all buffers. It is only recommended when sending full sentences or phrases, sending partial phrases will result in highly reduced quality. By default it's set to false.
850-
type: boolean
851-
default: false
852-
apply_text_normalization:
853-
$ref: '#/components/schemas/TextToSpeechApplyTextNormalizationEnum'
854-
seed:
855-
description: >-
856-
If specified, our system will make a best effort to sample deterministically, such that repeated requests
857-
with the same seed and parameters should return the same result. Determinism is not guaranteed. Must be an
858-
integer between 0 and 4294967295.
859-
type: integer
860-
minimum: 0
861-
maximum: 4294967295
862-
example: 12345

0 commit comments

Comments
 (0)