camb-sdk 1.5.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- camb/__init__.py +335 -0
- camb/audio_separation/__init__.py +4 -0
- camb/audio_separation/client.py +406 -0
- camb/audio_separation/raw_client.py +534 -0
- camb/client.py +717 -0
- camb/core/__init__.py +105 -0
- camb/core/api_error.py +23 -0
- camb/core/client_wrapper.py +113 -0
- camb/core/datetime_utils.py +28 -0
- camb/core/file.py +67 -0
- camb/core/force_multipart.py +18 -0
- camb/core/http_client.py +663 -0
- camb/core/http_response.py +55 -0
- camb/core/http_sse/__init__.py +42 -0
- camb/core/http_sse/_api.py +112 -0
- camb/core/http_sse/_decoders.py +61 -0
- camb/core/http_sse/_exceptions.py +7 -0
- camb/core/http_sse/_models.py +17 -0
- camb/core/jsonable_encoder.py +100 -0
- camb/core/pydantic_utilities.py +260 -0
- camb/core/query_encoder.py +58 -0
- camb/core/remove_none_from_dict.py +11 -0
- camb/core/request_options.py +35 -0
- camb/core/serialization.py +276 -0
- camb/deprecated_streaming/__init__.py +4 -0
- camb/deprecated_streaming/client.py +532 -0
- camb/deprecated_streaming/raw_client.py +639 -0
- camb/dictionaries/__init__.py +4 -0
- camb/dictionaries/client.py +785 -0
- camb/dictionaries/raw_client.py +1048 -0
- camb/dub/__init__.py +49 -0
- camb/dub/client.py +846 -0
- camb/dub/raw_client.py +1194 -0
- camb/dub/types/__init__.py +53 -0
- camb/dub/types/dubbed_output_in_alt_format_request_payload_output_format.py +8 -0
- camb/dub/types/get_dubbed_output_in_alt_format_dub_alt_format_run_id_language_post_response.py +9 -0
- camb/dub/types/get_dubbed_run_info_dub_result_run_id_get_response.py +7 -0
- camb/dub/types/get_dubbing_runs_results_dubbing_results_post_response_value.py +7 -0
- camb/environment.py +7 -0
- camb/errors/__init__.py +34 -0
- camb/errors/unprocessable_entity_error.py +11 -0
- camb/folders/__init__.py +4 -0
- camb/folders/client.py +213 -0
- camb/folders/raw_client.py +278 -0
- camb/languages/__init__.py +4 -0
- camb/languages/client.py +168 -0
- camb/languages/raw_client.py +223 -0
- camb/project_setup/__init__.py +4 -0
- camb/project_setup/client.py +537 -0
- camb/project_setup/raw_client.py +655 -0
- camb/py.typed +0 -0
- camb/raw_client.py +236 -0
- camb/story/__init__.py +37 -0
- camb/story/client.py +579 -0
- camb/story/raw_client.py +743 -0
- camb/story/types/__init__.py +38 -0
- camb/story/types/create_story_story_post_response.py +8 -0
- camb/story/types/setup_story_story_setup_post_response.py +8 -0
- camb/streaming/__init__.py +4 -0
- camb/streaming/client.py +645 -0
- camb/streaming/raw_client.py +796 -0
- camb/text_to_audio/__init__.py +4 -0
- camb/text_to_audio/client.py +469 -0
- camb/text_to_audio/raw_client.py +610 -0
- camb/text_to_speech/__init__.py +49 -0
- camb/text_to_speech/baseten.py +214 -0
- camb/text_to_speech/client.py +742 -0
- camb/text_to_speech/raw_client.py +995 -0
- camb/text_to_speech/types/__init__.py +47 -0
- camb/text_to_speech/types/create_stream_tts_request_payload_language.py +71 -0
- camb/text_to_speech/types/create_stream_tts_request_payload_speech_model.py +7 -0
- camb/text_to_speech/types/get_tts_results_tts_results_post_response_value.py +7 -0
- camb/text_to_speech/types/get_tts_run_info_tts_result_run_id_get_response.py +7 -0
- camb/text_to_voice/__init__.py +4 -0
- camb/text_to_voice/client.py +329 -0
- camb/text_to_voice/raw_client.py +405 -0
- camb/transcription/__init__.py +4 -0
- camb/transcription/client.py +465 -0
- camb/transcription/raw_client.py +587 -0
- camb/translated_story/__init__.py +4 -0
- camb/translated_story/client.py +309 -0
- camb/translated_story/raw_client.py +381 -0
- camb/translated_tts/__init__.py +4 -0
- camb/translated_tts/client.py +313 -0
- camb/translated_tts/raw_client.py +357 -0
- camb/translation/__init__.py +4 -0
- camb/translation/client.py +631 -0
- camb/translation/raw_client.py +787 -0
- camb/types/__init__.py +236 -0
- camb/types/add_target_language_out.py +20 -0
- camb/types/audio_output_type.py +5 -0
- camb/types/audio_stream.py +31 -0
- camb/types/config_stream.py +22 -0
- camb/types/config_stream_pipeline.py +28 -0
- camb/types/create_custom_voice_out.py +19 -0
- camb/types/create_project_setup_out.py +19 -0
- camb/types/create_stream_out.py +22 -0
- camb/types/create_stream_request_payload.py +70 -0
- camb/types/create_translated_tts_out.py +19 -0
- camb/types/create_tts_out.py +19 -0
- camb/types/data_stream.py +24 -0
- camb/types/demixing_option.py +10 -0
- camb/types/dictionary_term.py +21 -0
- camb/types/dictionary_with_terms.py +28 -0
- camb/types/dubbing_result.py +22 -0
- camb/types/exception_reasons.py +30 -0
- camb/types/folder.py +20 -0
- camb/types/formalities.py +3 -0
- camb/types/gender.py +3 -0
- camb/types/get_audio_separation_result_out.py +20 -0
- camb/types/get_create_project_setup_response.py +21 -0
- camb/types/get_probe_stream_in.py +21 -0
- camb/types/get_probe_stream_out.py +24 -0
- camb/types/get_setup_story_result_response.py +21 -0
- camb/types/get_text_to_voice_result_out.py +19 -0
- camb/types/get_tts_result_out_file_url.py +19 -0
- camb/types/http_validation_error.py +20 -0
- camb/types/language_enums.py +154 -0
- camb/types/language_pydantic_model.py +21 -0
- camb/types/languages.py +3 -0
- camb/types/orchestrator_pipeline_call_result.py +19 -0
- camb/types/orchestrator_pipeline_result.py +25 -0
- camb/types/orchestrator_pipeline_result_exception_reason.py +7 -0
- camb/types/orchestrator_pipeline_result_message.py +5 -0
- camb/types/output_format.py +10 -0
- camb/types/overdub_config.py +37 -0
- camb/types/project_details.py +28 -0
- camb/types/revoicing_option.py +5 -0
- camb/types/run_i_ds_request_payload.py +19 -0
- camb/types/segmenting_option.py +5 -0
- camb/types/source_stream.py +30 -0
- camb/types/story_details.py +27 -0
- camb/types/stream_category.py +3 -0
- camb/types/stream_tts_inference_options.py +38 -0
- camb/types/stream_tts_output_configuration.py +33 -0
- camb/types/stream_tts_voice_settings.py +28 -0
- camb/types/stream_type.py +3 -0
- camb/types/stream_url_for_languages.py +21 -0
- camb/types/target_stream.py +34 -0
- camb/types/task_status.py +5 -0
- camb/types/term_translation_input.py +21 -0
- camb/types/term_translation_output.py +20 -0
- camb/types/text_to_audio_result.py +19 -0
- camb/types/text_to_audio_type.py +5 -0
- camb/types/transcribing_option.py +5 -0
- camb/types/transcript.py +22 -0
- camb/types/transcript_data_type.py +5 -0
- camb/types/transcript_file_format.py +5 -0
- camb/types/transcription_result.py +20 -0
- camb/types/translating_option.py +5 -0
- camb/types/translation_result.py +19 -0
- camb/types/tts_provider.py +3 -0
- camb/types/validation_error.py +22 -0
- camb/types/validation_error_loc_item.py +5 -0
- camb/types/video_output_type_without_avi.py +5 -0
- camb/types/video_stream.py +28 -0
- camb/types/voice.py +28 -0
- camb/voice_cloning/__init__.py +34 -0
- camb/voice_cloning/client.py +265 -0
- camb/voice_cloning/raw_client.py +320 -0
- camb/voice_cloning/types/__init__.py +36 -0
- camb/voice_cloning/types/list_voices_list_voices_get_response_item.py +7 -0
- camb_sdk-1.5.4.dist-info/METADATA +282 -0
- camb_sdk-1.5.4.dist-info/RECORD +167 -0
- camb_sdk-1.5.4.dist-info/WHEEL +5 -0
- camb_sdk-1.5.4.dist-info/licenses/LICENSE +21 -0
- camb_sdk-1.5.4.dist-info/top_level.txt +1 -0
camb/__init__.py
ADDED
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
|
|
5
|
+
import typing
|
|
6
|
+
from importlib import import_module
|
|
7
|
+
|
|
8
|
+
if typing.TYPE_CHECKING:
|
|
9
|
+
from .types import (
|
|
10
|
+
AddTargetLanguageOut,
|
|
11
|
+
AudioOutputType,
|
|
12
|
+
AudioStream,
|
|
13
|
+
ConfigStream,
|
|
14
|
+
ConfigStreamPipeline,
|
|
15
|
+
CreateCustomVoiceOut,
|
|
16
|
+
CreateProjectSetupOut,
|
|
17
|
+
CreateStreamOut,
|
|
18
|
+
CreateStreamRequestPayload,
|
|
19
|
+
CreateTranslatedTtsOut,
|
|
20
|
+
CreateTtsOut,
|
|
21
|
+
DataStream,
|
|
22
|
+
DemixingOption,
|
|
23
|
+
DictionaryTerm,
|
|
24
|
+
DictionaryWithTerms,
|
|
25
|
+
DubbingResult,
|
|
26
|
+
ExceptionReasons,
|
|
27
|
+
Folder,
|
|
28
|
+
Formalities,
|
|
29
|
+
Gender,
|
|
30
|
+
GetAudioSeparationResultOut,
|
|
31
|
+
GetCreateProjectSetupResponse,
|
|
32
|
+
GetProbeStreamIn,
|
|
33
|
+
GetProbeStreamOut,
|
|
34
|
+
GetSetupStoryResultResponse,
|
|
35
|
+
GetTextToVoiceResultOut,
|
|
36
|
+
GetTtsResultOutFileUrl,
|
|
37
|
+
HttpValidationError,
|
|
38
|
+
LanguagePydanticModel,
|
|
39
|
+
Languages,
|
|
40
|
+
OrchestratorPipelineCallResult,
|
|
41
|
+
OrchestratorPipelineResult,
|
|
42
|
+
OrchestratorPipelineResultExceptionReason,
|
|
43
|
+
OrchestratorPipelineResultMessage,
|
|
44
|
+
OutputFormat,
|
|
45
|
+
OverdubConfig,
|
|
46
|
+
ProjectDetails,
|
|
47
|
+
RevoicingOption,
|
|
48
|
+
RunIDsRequestPayload,
|
|
49
|
+
SegmentingOption,
|
|
50
|
+
SourceStream,
|
|
51
|
+
StoryDetails,
|
|
52
|
+
StreamCategory,
|
|
53
|
+
StreamTtsInferenceOptions,
|
|
54
|
+
StreamTtsOutputConfiguration,
|
|
55
|
+
StreamTtsVoiceSettings,
|
|
56
|
+
StreamType,
|
|
57
|
+
StreamUrlForLanguages,
|
|
58
|
+
TargetStream,
|
|
59
|
+
TaskStatus,
|
|
60
|
+
TermTranslationInput,
|
|
61
|
+
TermTranslationOutput,
|
|
62
|
+
TextToAudioResult,
|
|
63
|
+
TextToAudioType,
|
|
64
|
+
TranscribingOption,
|
|
65
|
+
Transcript,
|
|
66
|
+
TranscriptDataType,
|
|
67
|
+
TranscriptFileFormat,
|
|
68
|
+
TranscriptionResult,
|
|
69
|
+
TranslatingOption,
|
|
70
|
+
TranslationResult,
|
|
71
|
+
ValidationError,
|
|
72
|
+
ValidationErrorLocItem,
|
|
73
|
+
VideoOutputTypeWithoutAvi,
|
|
74
|
+
VideoStream,
|
|
75
|
+
Voice,
|
|
76
|
+
)
|
|
77
|
+
from .errors import UnprocessableEntityError
|
|
78
|
+
from . import (
|
|
79
|
+
audio_separation,
|
|
80
|
+
deprecated_streaming,
|
|
81
|
+
dictionaries,
|
|
82
|
+
dub,
|
|
83
|
+
folders,
|
|
84
|
+
languages,
|
|
85
|
+
project_setup,
|
|
86
|
+
story,
|
|
87
|
+
streaming,
|
|
88
|
+
text_to_audio,
|
|
89
|
+
text_to_speech,
|
|
90
|
+
text_to_voice,
|
|
91
|
+
transcription,
|
|
92
|
+
translated_story,
|
|
93
|
+
translated_tts,
|
|
94
|
+
translation,
|
|
95
|
+
voice_cloning,
|
|
96
|
+
)
|
|
97
|
+
from .client import AsyncCambAI, CambAI
|
|
98
|
+
from .dub import (
|
|
99
|
+
DubbedOutputInAltFormatRequestPayloadOutputFormat,
|
|
100
|
+
GetDubbedOutputInAltFormatDubAltFormatRunIdLanguagePostResponse,
|
|
101
|
+
GetDubbedRunInfoDubResultRunIdGetResponse,
|
|
102
|
+
GetDubbingRunsResultsDubbingResultsPostResponseValue,
|
|
103
|
+
)
|
|
104
|
+
from .environment import CambApiEnvironment
|
|
105
|
+
from .story import CreateStoryStoryPostResponse, SetupStoryStorySetupPostResponse
|
|
106
|
+
from .text_to_speech import (
|
|
107
|
+
CreateStreamTtsRequestPayloadLanguage,
|
|
108
|
+
CreateStreamTtsRequestPayloadSpeechModel,
|
|
109
|
+
GetTtsResultsTtsResultsPostResponseValue,
|
|
110
|
+
GetTtsRunInfoTtsResultRunIdGetResponse,
|
|
111
|
+
)
|
|
112
|
+
from .voice_cloning import ListVoicesListVoicesGetResponseItem
|
|
113
|
+
_dynamic_imports: typing.Dict[str, str] = {
|
|
114
|
+
"AddTargetLanguageOut": ".types",
|
|
115
|
+
"AsyncCambApi": ".client",
|
|
116
|
+
"AudioOutputType": ".types",
|
|
117
|
+
"AudioStream": ".types",
|
|
118
|
+
"CambApi": ".client",
|
|
119
|
+
"CambApiEnvironment": ".environment",
|
|
120
|
+
"ConfigStream": ".types",
|
|
121
|
+
"ConfigStreamPipeline": ".types",
|
|
122
|
+
"CreateCustomVoiceOut": ".types",
|
|
123
|
+
"CreateProjectSetupOut": ".types",
|
|
124
|
+
"CreateStoryStoryPostResponse": ".story",
|
|
125
|
+
"CreateStreamOut": ".types",
|
|
126
|
+
"CreateStreamRequestPayload": ".types",
|
|
127
|
+
"CreateStreamTtsRequestPayloadLanguage": ".text_to_speech",
|
|
128
|
+
"CreateStreamTtsRequestPayloadSpeechModel": ".text_to_speech",
|
|
129
|
+
"CreateTranslatedTtsOut": ".types",
|
|
130
|
+
"CreateTtsOut": ".types",
|
|
131
|
+
"DataStream": ".types",
|
|
132
|
+
"DemixingOption": ".types",
|
|
133
|
+
"DictionaryTerm": ".types",
|
|
134
|
+
"DictionaryWithTerms": ".types",
|
|
135
|
+
"DubbedOutputInAltFormatRequestPayloadOutputFormat": ".dub",
|
|
136
|
+
"DubbingResult": ".types",
|
|
137
|
+
"ExceptionReasons": ".types",
|
|
138
|
+
"Folder": ".types",
|
|
139
|
+
"Formalities": ".types",
|
|
140
|
+
"Gender": ".types",
|
|
141
|
+
"GetAudioSeparationResultOut": ".types",
|
|
142
|
+
"GetCreateProjectSetupResponse": ".types",
|
|
143
|
+
"GetDubbedOutputInAltFormatDubAltFormatRunIdLanguagePostResponse": ".dub",
|
|
144
|
+
"GetDubbedRunInfoDubResultRunIdGetResponse": ".dub",
|
|
145
|
+
"GetDubbingRunsResultsDubbingResultsPostResponseValue": ".dub",
|
|
146
|
+
"GetProbeStreamIn": ".types",
|
|
147
|
+
"GetProbeStreamOut": ".types",
|
|
148
|
+
"GetSetupStoryResultResponse": ".types",
|
|
149
|
+
"GetTextToVoiceResultOut": ".types",
|
|
150
|
+
"GetTtsResultOutFileUrl": ".types",
|
|
151
|
+
"GetTtsResultsTtsResultsPostResponseValue": ".text_to_speech",
|
|
152
|
+
"GetTtsRunInfoTtsResultRunIdGetResponse": ".text_to_speech",
|
|
153
|
+
"HttpValidationError": ".types",
|
|
154
|
+
"LanguagePydanticModel": ".types",
|
|
155
|
+
"Languages": ".types",
|
|
156
|
+
"ListVoicesListVoicesGetResponseItem": ".voice_cloning",
|
|
157
|
+
"OrchestratorPipelineCallResult": ".types",
|
|
158
|
+
"OrchestratorPipelineResult": ".types",
|
|
159
|
+
"OrchestratorPipelineResultExceptionReason": ".types",
|
|
160
|
+
"OrchestratorPipelineResultMessage": ".types",
|
|
161
|
+
"OutputFormat": ".types",
|
|
162
|
+
"OverdubConfig": ".types",
|
|
163
|
+
"ProjectDetails": ".types",
|
|
164
|
+
"RevoicingOption": ".types",
|
|
165
|
+
"RunIDsRequestPayload": ".types",
|
|
166
|
+
"SegmentingOption": ".types",
|
|
167
|
+
"SetupStoryStorySetupPostResponse": ".story",
|
|
168
|
+
"SourceStream": ".types",
|
|
169
|
+
"StoryDetails": ".types",
|
|
170
|
+
"StreamCategory": ".types",
|
|
171
|
+
"StreamTtsInferenceOptions": ".types",
|
|
172
|
+
"StreamTtsOutputConfiguration": ".types",
|
|
173
|
+
"StreamTtsVoiceSettings": ".types",
|
|
174
|
+
"StreamType": ".types",
|
|
175
|
+
"StreamUrlForLanguages": ".types",
|
|
176
|
+
"TargetStream": ".types",
|
|
177
|
+
"TaskStatus": ".types",
|
|
178
|
+
"TermTranslationInput": ".types",
|
|
179
|
+
"TermTranslationOutput": ".types",
|
|
180
|
+
"TextToAudioResult": ".types",
|
|
181
|
+
"TextToAudioType": ".types",
|
|
182
|
+
"TranscribingOption": ".types",
|
|
183
|
+
"Transcript": ".types",
|
|
184
|
+
"TranscriptDataType": ".types",
|
|
185
|
+
"TranscriptFileFormat": ".types",
|
|
186
|
+
"TranscriptionResult": ".types",
|
|
187
|
+
"TranslatingOption": ".types",
|
|
188
|
+
"TranslationResult": ".types",
|
|
189
|
+
"UnprocessableEntityError": ".errors",
|
|
190
|
+
"ValidationError": ".types",
|
|
191
|
+
"ValidationErrorLocItem": ".types",
|
|
192
|
+
"VideoOutputTypeWithoutAvi": ".types",
|
|
193
|
+
"VideoStream": ".types",
|
|
194
|
+
"Voice": ".types",
|
|
195
|
+
"audio_separation": ".audio_separation",
|
|
196
|
+
"deprecated_streaming": ".deprecated_streaming",
|
|
197
|
+
"dictionaries": ".dictionaries",
|
|
198
|
+
"dub": ".dub",
|
|
199
|
+
"folders": ".folders",
|
|
200
|
+
"languages": ".languages",
|
|
201
|
+
"project_setup": ".project_setup",
|
|
202
|
+
"story": ".story",
|
|
203
|
+
"streaming": ".streaming",
|
|
204
|
+
"text_to_audio": ".text_to_audio",
|
|
205
|
+
"text_to_speech": ".text_to_speech",
|
|
206
|
+
"text_to_voice": ".text_to_voice",
|
|
207
|
+
"transcription": ".transcription",
|
|
208
|
+
"translated_story": ".translated_story",
|
|
209
|
+
"translated_tts": ".translated_tts",
|
|
210
|
+
"translation": ".translation",
|
|
211
|
+
"voice_cloning": ".voice_cloning",
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
def __getattr__(attr_name: str) -> typing.Any:
|
|
216
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
217
|
+
if module_name is None:
|
|
218
|
+
raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
|
|
219
|
+
try:
|
|
220
|
+
module = import_module(module_name, __package__)
|
|
221
|
+
if module_name == f".{attr_name}":
|
|
222
|
+
return module
|
|
223
|
+
else:
|
|
224
|
+
return getattr(module, attr_name)
|
|
225
|
+
except ImportError as e:
|
|
226
|
+
raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
|
|
227
|
+
except AttributeError as e:
|
|
228
|
+
raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
def __dir__():
|
|
232
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
233
|
+
return sorted(lazy_attrs)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
__all__ = [
|
|
237
|
+
"AddTargetLanguageOut",
|
|
238
|
+
"AsyncCambAI",
|
|
239
|
+
"AudioOutputType",
|
|
240
|
+
"AudioStream",
|
|
241
|
+
"CambAI",
|
|
242
|
+
"CambApiEnvironment",
|
|
243
|
+
"ConfigStream",
|
|
244
|
+
"ConfigStreamPipeline",
|
|
245
|
+
"CreateCustomVoiceOut",
|
|
246
|
+
"CreateProjectSetupOut",
|
|
247
|
+
"CreateStoryStoryPostResponse",
|
|
248
|
+
"CreateStreamOut",
|
|
249
|
+
"CreateStreamRequestPayload",
|
|
250
|
+
"CreateStreamTtsRequestPayloadLanguage",
|
|
251
|
+
"CreateStreamTtsRequestPayloadSpeechModel",
|
|
252
|
+
"CreateTranslatedTtsOut",
|
|
253
|
+
"CreateTtsOut",
|
|
254
|
+
"DataStream",
|
|
255
|
+
"DemixingOption",
|
|
256
|
+
"DictionaryTerm",
|
|
257
|
+
"DictionaryWithTerms",
|
|
258
|
+
"DubbedOutputInAltFormatRequestPayloadOutputFormat",
|
|
259
|
+
"DubbingResult",
|
|
260
|
+
"ExceptionReasons",
|
|
261
|
+
"Folder",
|
|
262
|
+
"Formalities",
|
|
263
|
+
"Gender",
|
|
264
|
+
"GetAudioSeparationResultOut",
|
|
265
|
+
"GetCreateProjectSetupResponse",
|
|
266
|
+
"GetDubbedOutputInAltFormatDubAltFormatRunIdLanguagePostResponse",
|
|
267
|
+
"GetDubbedRunInfoDubResultRunIdGetResponse",
|
|
268
|
+
"GetDubbingRunsResultsDubbingResultsPostResponseValue",
|
|
269
|
+
"GetProbeStreamIn",
|
|
270
|
+
"GetProbeStreamOut",
|
|
271
|
+
"GetSetupStoryResultResponse",
|
|
272
|
+
"GetTextToVoiceResultOut",
|
|
273
|
+
"GetTtsResultOutFileUrl",
|
|
274
|
+
"GetTtsResultsTtsResultsPostResponseValue",
|
|
275
|
+
"GetTtsRunInfoTtsResultRunIdGetResponse",
|
|
276
|
+
"HttpValidationError",
|
|
277
|
+
"LanguagePydanticModel",
|
|
278
|
+
"Languages",
|
|
279
|
+
"ListVoicesListVoicesGetResponseItem",
|
|
280
|
+
"OrchestratorPipelineCallResult",
|
|
281
|
+
"OrchestratorPipelineResult",
|
|
282
|
+
"OrchestratorPipelineResultExceptionReason",
|
|
283
|
+
"OrchestratorPipelineResultMessage",
|
|
284
|
+
"OutputFormat",
|
|
285
|
+
"OverdubConfig",
|
|
286
|
+
"ProjectDetails",
|
|
287
|
+
"RevoicingOption",
|
|
288
|
+
"RunIDsRequestPayload",
|
|
289
|
+
"SegmentingOption",
|
|
290
|
+
"SetupStoryStorySetupPostResponse",
|
|
291
|
+
"SourceStream",
|
|
292
|
+
"StoryDetails",
|
|
293
|
+
"StreamCategory",
|
|
294
|
+
"StreamTtsInferenceOptions",
|
|
295
|
+
"StreamTtsOutputConfiguration",
|
|
296
|
+
"StreamTtsVoiceSettings",
|
|
297
|
+
"StreamType",
|
|
298
|
+
"StreamUrlForLanguages",
|
|
299
|
+
"TargetStream",
|
|
300
|
+
"TaskStatus",
|
|
301
|
+
"TermTranslationInput",
|
|
302
|
+
"TermTranslationOutput",
|
|
303
|
+
"TextToAudioResult",
|
|
304
|
+
"TextToAudioType",
|
|
305
|
+
"TranscribingOption",
|
|
306
|
+
"Transcript",
|
|
307
|
+
"TranscriptDataType",
|
|
308
|
+
"TranscriptFileFormat",
|
|
309
|
+
"TranscriptionResult",
|
|
310
|
+
"TranslatingOption",
|
|
311
|
+
"TranslationResult",
|
|
312
|
+
"UnprocessableEntityError",
|
|
313
|
+
"ValidationError",
|
|
314
|
+
"ValidationErrorLocItem",
|
|
315
|
+
"VideoOutputTypeWithoutAvi",
|
|
316
|
+
"VideoStream",
|
|
317
|
+
"Voice",
|
|
318
|
+
"audio_separation",
|
|
319
|
+
"deprecated_streaming",
|
|
320
|
+
"dictionaries",
|
|
321
|
+
"dub",
|
|
322
|
+
"folders",
|
|
323
|
+
"languages",
|
|
324
|
+
"project_setup",
|
|
325
|
+
"story",
|
|
326
|
+
"streaming",
|
|
327
|
+
"text_to_audio",
|
|
328
|
+
"text_to_speech",
|
|
329
|
+
"text_to_voice",
|
|
330
|
+
"transcription",
|
|
331
|
+
"translated_story",
|
|
332
|
+
"translated_tts",
|
|
333
|
+
"translation",
|
|
334
|
+
"voice_cloning",
|
|
335
|
+
]
|