cartesia 2.0.6__py3-none-any.whl → 2.0.7__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.
cartesia/__init__.py CHANGED
@@ -52,7 +52,11 @@ from .tts import (
52
52
  Controls,
53
53
  ControlsParams,
54
54
  Emotion,
55
+ ExperimentalModelControls,
56
+ ExperimentalModelControlsParams,
55
57
  FlushId,
58
+ GenerationConfig,
59
+ GenerationConfigParams,
56
60
  GenerationRequest,
57
61
  GenerationRequestParams,
58
62
  ModelSpeed,
@@ -213,12 +217,16 @@ __all__ = [
213
217
  "Emotion",
214
218
  "ErrorMessage",
215
219
  "ErrorMessageParams",
220
+ "ExperimentalModelControls",
221
+ "ExperimentalModelControlsParams",
216
222
  "FilePurpose",
217
223
  "FlushDoneMessage",
218
224
  "FlushDoneMessageParams",
219
225
  "FlushId",
220
226
  "Gender",
221
227
  "GenderPresentation",
228
+ "GenerationConfig",
229
+ "GenerationConfigParams",
222
230
  "GenerationRequest",
223
231
  "GenerationRequestParams",
224
232
  "GetVoicesResponse",
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "cartesia",
19
- "X-Fern-SDK-Version": "2.0.6",
19
+ "X-Fern-SDK-Version": "2.0.7",
20
20
  }
21
21
  headers["X-API-Key"] = self.api_key
22
22
  headers["Cartesia-Version"] = "2024-11-13"
cartesia/infill/client.py CHANGED
@@ -83,17 +83,14 @@ class InfillClient:
83
83
  output_format_encoding : typing.Optional[RawEncoding]
84
84
  Required for `raw` and `wav` containers.
85
85
 
86
-
87
86
  output_format_bit_rate : typing.Optional[int]
88
87
  Required for `mp3` containers.
89
88
 
90
-
91
89
  voice_experimental_controls_speed : typing.Optional[Speed]
92
90
  Either a number between -1.0 and 1.0 or a natural language description of speed.
93
91
 
94
92
  If you specify a number, 0.0 is the default speed, -1.0 is the slowest speed, and 1.0 is the fastest speed.
95
93
 
96
-
97
94
  voice_experimental_controls_emotion : typing.Optional[typing.List[Emotion]]
98
95
  An array of emotion:level tags.
99
96
 
@@ -101,7 +98,6 @@ class InfillClient:
101
98
 
102
99
  Supported levels are: lowest, low, (omit), high, highest.
103
100
 
104
-
105
101
  request_options : typing.Optional[RequestOptions]
106
102
  Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
107
103
 
@@ -230,17 +226,14 @@ class AsyncInfillClient:
230
226
  output_format_encoding : typing.Optional[RawEncoding]
231
227
  Required for `raw` and `wav` containers.
232
228
 
233
-
234
229
  output_format_bit_rate : typing.Optional[int]
235
230
  Required for `mp3` containers.
236
231
 
237
-
238
232
  voice_experimental_controls_speed : typing.Optional[Speed]
239
233
  Either a number between -1.0 and 1.0 or a natural language description of speed.
240
234
 
241
235
  If you specify a number, 0.0 is the default speed, -1.0 is the slowest speed, and 1.0 is the fastest speed.
242
236
 
243
-
244
237
  voice_experimental_controls_emotion : typing.Optional[typing.List[Emotion]]
245
238
  An array of emotion:level tags.
246
239
 
@@ -248,7 +241,6 @@ class AsyncInfillClient:
248
241
 
249
242
  Supported levels are: lowest, low, (omit), high, highest.
250
243
 
251
-
252
244
  request_options : typing.Optional[RequestOptions]
253
245
  Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
254
246
 
cartesia/stt/client.py CHANGED
@@ -54,7 +54,6 @@ class SttClient:
54
54
  model : str
55
55
  ID of the model to use for transcription. Use `ink-whisper` for the latest Cartesia Whisper model.
56
56
 
57
-
58
57
  encoding : typing.Optional[SttEncoding]
59
58
  The encoding format to process the audio as. If not specified, the audio file will be decoded automatically.
60
59
 
@@ -175,11 +174,9 @@ class SttClient:
175
174
  - `yue` (Cantonese)
176
175
  </Accordion>
177
176
 
178
-
179
177
  timestamp_granularities : typing.Optional[typing.List[TimestampGranularity]]
180
178
  The timestamp granularities to populate for this transcription. Currently only `word` level timestamps are supported.
181
179
 
182
-
183
180
  request_options : typing.Optional[RequestOptions]
184
181
  Request-specific configuration.
185
182
 
@@ -270,7 +267,6 @@ class AsyncSttClient:
270
267
  model : str
271
268
  ID of the model to use for transcription. Use `ink-whisper` for the latest Cartesia Whisper model.
272
269
 
273
-
274
270
  encoding : typing.Optional[SttEncoding]
275
271
  The encoding format to process the audio as. If not specified, the audio file will be decoded automatically.
276
272
 
@@ -391,11 +387,9 @@ class AsyncSttClient:
391
387
  - `yue` (Cantonese)
392
388
  </Accordion>
393
389
 
394
-
395
390
  timestamp_granularities : typing.Optional[typing.List[TimestampGranularity]]
396
391
  The timestamp granularities to populate for this transcription. Currently only `word` level timestamps are supported.
397
392
 
398
-
399
393
  request_options : typing.Optional[RequestOptions]
400
394
  Request-specific configuration.
401
395
 
cartesia/tts/__init__.py CHANGED
@@ -5,7 +5,9 @@ from .types import (
5
5
  ContextId,
6
6
  Controls,
7
7
  Emotion,
8
+ ExperimentalModelControls,
8
9
  FlushId,
10
+ GenerationConfig,
9
11
  GenerationRequest,
10
12
  ModelSpeed,
11
13
  Mp3OutputFormat,
@@ -51,6 +53,8 @@ from .types import (
51
53
  from .requests import (
52
54
  CancelContextRequestParams,
53
55
  ControlsParams,
56
+ ExperimentalModelControlsParams,
57
+ GenerationConfigParams,
54
58
  GenerationRequestParams,
55
59
  Mp3OutputFormatParams,
56
60
  OutputFormatParams,
@@ -96,7 +100,11 @@ __all__ = [
96
100
  "Controls",
97
101
  "ControlsParams",
98
102
  "Emotion",
103
+ "ExperimentalModelControls",
104
+ "ExperimentalModelControlsParams",
99
105
  "FlushId",
106
+ "GenerationConfig",
107
+ "GenerationConfigParams",
100
108
  "GenerationRequest",
101
109
  "GenerationRequestParams",
102
110
  "ModelSpeed",
cartesia/tts/client.py CHANGED
@@ -6,6 +6,7 @@ from .requests.tts_request_voice_specifier import TtsRequestVoiceSpecifierParams
6
6
  from .requests.output_format import OutputFormatParams
7
7
  from .types.supported_language import SupportedLanguage
8
8
  from .types.model_speed import ModelSpeed
9
+ from .requests.generation_config import GenerationConfigParams
9
10
  from ..core.request_options import RequestOptions
10
11
  from ..core.serialization import convert_and_respect_annotation_metadata
11
12
  from json.decoder import JSONDecodeError
@@ -36,6 +37,7 @@ class TtsClient:
36
37
  language: typing.Optional[SupportedLanguage] = OMIT,
37
38
  duration: typing.Optional[float] = OMIT,
38
39
  speed: typing.Optional[ModelSpeed] = OMIT,
40
+ generation_config: typing.Optional[GenerationConfigParams] = OMIT,
39
41
  request_options: typing.Optional[RequestOptions] = None,
40
42
  ) -> typing.Iterator[bytes]:
41
43
  """
@@ -58,6 +60,8 @@ class TtsClient:
58
60
 
59
61
  speed : typing.Optional[ModelSpeed]
60
62
 
63
+ generation_config : typing.Optional[GenerationConfigParams]
64
+
61
65
  request_options : typing.Optional[RequestOptions]
62
66
  Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
63
67
 
@@ -99,6 +103,9 @@ class TtsClient:
99
103
  ),
100
104
  "duration": duration,
101
105
  "speed": speed,
106
+ "generation_config": convert_and_respect_annotation_metadata(
107
+ object_=generation_config, annotation=GenerationConfigParams, direction="write"
108
+ ),
102
109
  },
103
110
  request_options=request_options,
104
111
  omit=OMIT,
@@ -250,6 +257,7 @@ class AsyncTtsClient:
250
257
  language: typing.Optional[SupportedLanguage] = OMIT,
251
258
  duration: typing.Optional[float] = OMIT,
252
259
  speed: typing.Optional[ModelSpeed] = OMIT,
260
+ generation_config: typing.Optional[GenerationConfigParams] = OMIT,
253
261
  request_options: typing.Optional[RequestOptions] = None,
254
262
  ) -> typing.AsyncIterator[bytes]:
255
263
  """
@@ -272,6 +280,8 @@ class AsyncTtsClient:
272
280
 
273
281
  speed : typing.Optional[ModelSpeed]
274
282
 
283
+ generation_config : typing.Optional[GenerationConfigParams]
284
+
275
285
  request_options : typing.Optional[RequestOptions]
276
286
  Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
277
287
 
@@ -321,6 +331,9 @@ class AsyncTtsClient:
321
331
  ),
322
332
  "duration": duration,
323
333
  "speed": speed,
334
+ "generation_config": convert_and_respect_annotation_metadata(
335
+ object_=generation_config, annotation=GenerationConfigParams, direction="write"
336
+ ),
324
337
  },
325
338
  request_options=request_options,
326
339
  omit=OMIT,
@@ -2,6 +2,8 @@
2
2
 
3
3
  from .cancel_context_request import CancelContextRequestParams
4
4
  from .controls import ControlsParams
5
+ from .experimental_model_controls import ExperimentalModelControlsParams
6
+ from .generation_config import GenerationConfigParams
5
7
  from .generation_request import GenerationRequestParams
6
8
  from .mp_3_output_format import Mp3OutputFormatParams
7
9
  from .output_format import OutputFormatParams, OutputFormat_Mp3Params, OutputFormat_RawParams, OutputFormat_WavParams
@@ -41,6 +43,8 @@ from .word_timestamps import WordTimestampsParams
41
43
  __all__ = [
42
44
  "CancelContextRequestParams",
43
45
  "ControlsParams",
46
+ "ExperimentalModelControlsParams",
47
+ "GenerationConfigParams",
44
48
  "GenerationRequestParams",
45
49
  "Mp3OutputFormatParams",
46
50
  "OutputFormatParams",
@@ -0,0 +1,17 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing_extensions
4
+ import typing_extensions
5
+
6
+
7
+ class ExperimentalModelControlsParams(typing_extensions.TypedDict):
8
+ """
9
+ These controls are **experimental** and subject to breaking changes.
10
+ """
11
+
12
+ accent_localization: typing_extensions.NotRequired[int]
13
+ """
14
+ Toggle accent localization: 0 (disabled, default) or 1 (enabled).
15
+ When enabled, the voice adapts to match the transcript language's accent while preserving vocal characteristics. When disabled, maintains the original voice accent.
16
+ For more information, see [Localize Voices](/build-with-sonic/capabilities/localize-voices).
17
+ """
@@ -0,0 +1,23 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing_extensions
4
+ import typing_extensions
5
+ from .experimental_model_controls import ExperimentalModelControlsParams
6
+
7
+
8
+ class GenerationConfigParams(typing_extensions.TypedDict):
9
+ """
10
+ Configure the various attributes of the generated speech. These controls are only available for `sonic-3-preview` and will have no effect on earlier models.
11
+ """
12
+
13
+ volume: typing_extensions.NotRequired[float]
14
+ """
15
+ Adjust the volume of the generated speech between -1.0 (softer) and 1.0 (louder). 0.0 is the default volume.
16
+ """
17
+
18
+ speed: typing_extensions.NotRequired[float]
19
+ """
20
+ Adjust the speed of the generated speech between -1.0 (slower) and 1.0 (faster). 0.0 is the default speed.
21
+ """
22
+
23
+ experimental: typing_extensions.NotRequired[ExperimentalModelControlsParams]
@@ -6,6 +6,7 @@ import typing_extensions
6
6
  from ..types.supported_language import SupportedLanguage
7
7
  from .output_format import OutputFormatParams
8
8
  from ..types.model_speed import ModelSpeed
9
+ from .generation_config import GenerationConfigParams
9
10
 
10
11
 
11
12
  class TtsRequestParams(typing_extensions.TypedDict):
@@ -25,3 +26,4 @@ class TtsRequestParams(typing_extensions.TypedDict):
25
26
  """
26
27
 
27
28
  speed: typing_extensions.NotRequired[ModelSpeed]
29
+ generation_config: typing_extensions.NotRequired[GenerationConfigParams]
@@ -4,7 +4,9 @@ from .cancel_context_request import CancelContextRequest
4
4
  from .context_id import ContextId
5
5
  from .controls import Controls
6
6
  from .emotion import Emotion
7
+ from .experimental_model_controls import ExperimentalModelControls
7
8
  from .flush_id import FlushId
9
+ from .generation_config import GenerationConfig
8
10
  from .generation_request import GenerationRequest
9
11
  from .model_speed import ModelSpeed
10
12
  from .mp_3_output_format import Mp3OutputFormat
@@ -51,7 +53,9 @@ __all__ = [
51
53
  "ContextId",
52
54
  "Controls",
53
55
  "Emotion",
56
+ "ExperimentalModelControls",
54
57
  "FlushId",
58
+ "GenerationConfig",
55
59
  "GenerationRequest",
56
60
  "ModelSpeed",
57
61
  "Mp3OutputFormat",
@@ -0,0 +1,28 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ import pydantic
6
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
7
+
8
+
9
+ class ExperimentalModelControls(UniversalBaseModel):
10
+ """
11
+ These controls are **experimental** and subject to breaking changes.
12
+ """
13
+
14
+ accent_localization: typing.Optional[int] = pydantic.Field(default=None)
15
+ """
16
+ Toggle accent localization: 0 (disabled, default) or 1 (enabled).
17
+ When enabled, the voice adapts to match the transcript language's accent while preserving vocal characteristics. When disabled, maintains the original voice accent.
18
+ For more information, see [Localize Voices](/build-with-sonic/capabilities/localize-voices).
19
+ """
20
+
21
+ if IS_PYDANTIC_V2:
22
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
23
+ else:
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ extra = pydantic.Extra.allow
@@ -0,0 +1,34 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ import pydantic
6
+ from .experimental_model_controls import ExperimentalModelControls
7
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
8
+
9
+
10
+ class GenerationConfig(UniversalBaseModel):
11
+ """
12
+ Configure the various attributes of the generated speech. These controls are only available for `sonic-3-preview` and will have no effect on earlier models.
13
+ """
14
+
15
+ volume: typing.Optional[float] = pydantic.Field(default=None)
16
+ """
17
+ Adjust the volume of the generated speech between -1.0 (softer) and 1.0 (louder). 0.0 is the default volume.
18
+ """
19
+
20
+ speed: typing.Optional[float] = pydantic.Field(default=None)
21
+ """
22
+ Adjust the speed of the generated speech between -1.0 (slower) and 1.0 (faster). 0.0 is the default speed.
23
+ """
24
+
25
+ experimental: typing.Optional[ExperimentalModelControls] = None
26
+
27
+ if IS_PYDANTIC_V2:
28
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
29
+ else:
30
+
31
+ class Config:
32
+ frozen = True
33
+ smart_union = True
34
+ extra = pydantic.Extra.allow
@@ -7,6 +7,7 @@ import typing
7
7
  from .supported_language import SupportedLanguage
8
8
  from .output_format import OutputFormat
9
9
  from .model_speed import ModelSpeed
10
+ from .generation_config import GenerationConfig
10
11
  from ...core.pydantic_utilities import IS_PYDANTIC_V2
11
12
 
12
13
 
@@ -27,6 +28,7 @@ class TtsRequest(UniversalBaseModel):
27
28
  """
28
29
 
29
30
  speed: typing.Optional[ModelSpeed] = None
31
+ generation_config: typing.Optional[GenerationConfig] = None
30
32
 
31
33
  if IS_PYDANTIC_V2:
32
34
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -51,11 +51,9 @@ class VoiceChangerClient:
51
51
  output_format_encoding : typing.Optional[RawEncoding]
52
52
  Required for `raw` and `wav` containers.
53
53
 
54
-
55
54
  output_format_bit_rate : typing.Optional[int]
56
55
  Required for `mp3` containers.
57
56
 
58
-
59
57
  request_options : typing.Optional[RequestOptions]
60
58
  Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
61
59
 
@@ -131,11 +129,9 @@ class VoiceChangerClient:
131
129
  output_format_encoding : typing.Optional[RawEncoding]
132
130
  Required for `raw` and `wav` containers.
133
131
 
134
-
135
132
  output_format_bit_rate : typing.Optional[int]
136
133
  Required for `mp3` containers.
137
134
 
138
-
139
135
  request_options : typing.Optional[RequestOptions]
140
136
  Request-specific configuration.
141
137
 
@@ -232,11 +228,9 @@ class AsyncVoiceChangerClient:
232
228
  output_format_encoding : typing.Optional[RawEncoding]
233
229
  Required for `raw` and `wav` containers.
234
230
 
235
-
236
231
  output_format_bit_rate : typing.Optional[int]
237
232
  Required for `mp3` containers.
238
233
 
239
-
240
234
  request_options : typing.Optional[RequestOptions]
241
235
  Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
242
236
 
@@ -320,11 +314,9 @@ class AsyncVoiceChangerClient:
320
314
  output_format_encoding : typing.Optional[RawEncoding]
321
315
  Required for `raw` and `wav` containers.
322
316
 
323
-
324
317
  output_format_bit_rate : typing.Optional[int]
325
318
  Required for `mp3` containers.
326
319
 
327
-
328
320
  request_options : typing.Optional[RequestOptions]
329
321
  Request-specific configuration.
330
322
 
cartesia/voices/client.py CHANGED
@@ -168,27 +168,21 @@ class VoicesClient:
168
168
  name : str
169
169
  The name of the voice.
170
170
 
171
-
172
171
  language : SupportedLanguage
173
172
  The language of the voice.
174
173
 
175
-
176
174
  mode : CloneMode
177
175
  Tradeoff between similarity and stability. Similarity clones sound more like the source clip, but may reproduce background noise. Stability clones always sound like a studio recording, but may not sound as similar to the source clip.
178
176
 
179
-
180
177
  description : typing.Optional[str]
181
178
  A description for the voice.
182
179
 
183
-
184
180
  enhance : typing.Optional[bool]
185
181
  Whether to apply AI enhancements to the clip to reduce background noise. This leads to cleaner generated speech at the cost of reduced similarity to the source clip.
186
182
 
187
-
188
183
  base_voice_id : typing.Optional[VoiceId]
189
184
  Optional base voice ID that the cloned voice is derived from.
190
185
 
191
-
192
186
  request_options : typing.Optional[RequestOptions]
193
187
  Request-specific configuration.
194
188
 
@@ -736,27 +730,21 @@ class AsyncVoicesClient:
736
730
  name : str
737
731
  The name of the voice.
738
732
 
739
-
740
733
  language : SupportedLanguage
741
734
  The language of the voice.
742
735
 
743
-
744
736
  mode : CloneMode
745
737
  Tradeoff between similarity and stability. Similarity clones sound more like the source clip, but may reproduce background noise. Stability clones always sound like a studio recording, but may not sound as similar to the source clip.
746
738
 
747
-
748
739
  description : typing.Optional[str]
749
740
  A description for the voice.
750
741
 
751
-
752
742
  enhance : typing.Optional[bool]
753
743
  Whether to apply AI enhancements to the clip to reduce background noise. This leads to cleaner generated speech at the cost of reduced similarity to the source clip.
754
744
 
755
-
756
745
  base_voice_id : typing.Optional[VoiceId]
757
746
  Optional base voice ID that the cloned voice is derived from.
758
747
 
759
-
760
748
  request_options : typing.Optional[RequestOptions]
761
749
  Request-specific configuration.
762
750
 
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: cartesia
3
- Version: 2.0.6
3
+ Version: 2.0.7
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.9
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
19
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
21
  Classifier: Typing :: Typed
21
22
  Requires-Dist: aiohttp (>=3.10.10)
@@ -28,6 +29,7 @@ Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
28
29
  Requires-Dist: pydub (>=0.25.1)
29
30
  Requires-Dist: typing_extensions (>=4.0.0)
30
31
  Requires-Dist: websockets (>=10.4)
32
+ Project-URL: Repository, https://github.com/cartesia-ai/cartesia-python
31
33
  Description-Content-Type: text/markdown
32
34
 
33
35
  # Cartesia Python Library
@@ -1,4 +1,4 @@
1
- cartesia/__init__.py,sha256=P8YXd1NsmEHQOF4p0MpPMGLOSy_0cIPHOnFe-iV94oU,10311
1
+ cartesia/__init__.py,sha256=lBkEFiaSL1JdrAqnRXLlVrjbhMyU2vkSzbIOH8tzptI,10555
2
2
  cartesia/api_status/__init__.py,sha256=_dHNLdknrBjxHtU2PvLumttJM-JTQhJQqhhAQkLqt_U,168
3
3
  cartesia/api_status/client.py,sha256=GJ9Dq8iCn3hn8vCIqc6k1fCGEhSz0T0kaPGcdFnbMDY,3146
4
4
  cartesia/api_status/requests/__init__.py,sha256=ilEMzEy1JEw484CuL92bX5lHGOznc62pjiDMgiZ0tKM,130
@@ -19,7 +19,7 @@ cartesia/base_client.py,sha256=igAZOMDXz2Nv58oXHa7I9UfgxVN48drqhEmfsCCQlg8,6701
19
19
  cartesia/client.py,sha256=LoJjlJW2kJA-hyDt-Wu7QuKQsiTiLQfLYZjsjtewPJM,6537
20
20
  cartesia/core/__init__.py,sha256=-t9txgeQZL_1FDw_08GEoj4ft1Cn9Dti6X0Drsadlr0,1519
21
21
  cartesia/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
22
- cartesia/core/client_wrapper.py,sha256=t2Sj5z85Fs7Q9eWOEkoBHtPzL3OMKCJglq6m43C_14E,1854
22
+ cartesia/core/client_wrapper.py,sha256=5M1ORBWg2FutL5oJSkFfz1F3lbdMxk_vWBY6CPMCZWM,1854
23
23
  cartesia/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
24
24
  cartesia/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
25
25
  cartesia/core/http_client.py,sha256=KL5RGa0y4n8nX0-07WRg4ZQUTq30sc-XJbWcP5vjBDg,19552
@@ -49,12 +49,12 @@ cartesia/embedding/types/__init__.py,sha256=aOrEOGuiO6dlSGu7pckqVMTYEMVAR5I7qqca
49
49
  cartesia/embedding/types/embedding.py,sha256=C1OJg8M4T1Apfcv4qx79ndftg0SgH4Lfqe_iU3UF-bA,1851
50
50
  cartesia/environment.py,sha256=Qnp91BGLic7hXmKsiYub2m3nPfvDWm59aB1wWta1J6A,160
51
51
  cartesia/infill/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
52
- cartesia/infill/client.py,sha256=PWE5Ak-wsaBM_8g52oDl9PYx76PkW6f900mnxvZf4Bk,12571
52
+ cartesia/infill/client.py,sha256=uEDhE3Cx47ZyG7ofR-GOR0LhHiHeTLkUcjkLSsyU2ug,12563
53
53
  cartesia/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
54
  cartesia/stt/__init__.py,sha256=UHT5OM-5phGwLCckL8BXGdC3QepJoboScW5eSXUE2S4,1763
55
55
  cartesia/stt/_async_websocket.py,sha256=6MVYvSz3d9sI5-zzT_aIPEFKxXeCQU00RYFpYSF0dio,12385
56
56
  cartesia/stt/_websocket.py,sha256=lNu7BzhkRswJrzji4l5OhJbceQPR4ybBPY-QTsfk11M,12328
57
- cartesia/stt/client.py,sha256=0lNoOI76hzroTRJ0KXB2a0SqKMzOKV1m_eFyXqKblio,15575
57
+ cartesia/stt/client.py,sha256=ROFjsSSfnot02CSFrrL1FYgMNL_TWEhnBg5PVjAQs-g,15569
58
58
  cartesia/stt/requests/__init__.py,sha256=xVvSrY-imcWR3ecyMGIx9JXORpxWAGDUCSDuz2zbJNE,1123
59
59
  cartesia/stt/requests/done_message.py,sha256=7kCw8FrTZ6C5MS1xTkCOonYPcaqttbzG6TRvMj_-Z8I,388
60
60
  cartesia/stt/requests/error_message.py,sha256=AbVs03q-Rdp2AFmaJqj-b3RshYqhIQeSiQO3zOkFdiA,395
@@ -74,13 +74,15 @@ cartesia/stt/types/timestamp_granularity.py,sha256=Oe39JvLeMgR2BIJnx32abhvs05dJe
74
74
  cartesia/stt/types/transcript_message.py,sha256=J-MchlahI96nVBiMSLJrEOXFw2pBShbMXVocysQRnrY,1693
75
75
  cartesia/stt/types/transcription_response.py,sha256=QMcD6eLmp_Z2uaRLVyxYYIdoiRiVSGhBoxN3kjRTK2I,1190
76
76
  cartesia/stt/types/transcription_word.py,sha256=yxTndKXNmToPOM6_F_QfF-B0dE6Kx8-UwBpHLj2_zWk,803
77
- cartesia/tts/__init__.py,sha256=DwNzIilOcdNUbeIHIknngnW8WyZ6K5xZremSQQoo5VM,4927
77
+ cartesia/tts/__init__.py,sha256=rs8c52LHfOWvxKn57LOP9q-OS47gVXmkxBlkeW2ggUw,5171
78
78
  cartesia/tts/_async_websocket.py,sha256=tJ-6rdJrviKvGhSW8J8t-rCinXM5gXXQJgDO8OgW3EE,18805
79
79
  cartesia/tts/_websocket.py,sha256=bYaJ5vmCAl8AYrIJsqP3aA_nkFTeN3ey-Zc1nql_I3g,19274
80
- cartesia/tts/client.py,sha256=Oot_ctyaqBgRMpyBUaMwh3z1M62oPKVMXNvMkmo1fRw,18180
81
- cartesia/tts/requests/__init__.py,sha256=SeITRF5QSAjOE5pNxbD6VffwwttMnQwuv0Z5n9h7BKs,3418
80
+ cartesia/tts/client.py,sha256=LbYypisx4hdiCUMAimjtqy9VOkXGlI4jSXxC9_6TXuY,18925
81
+ cartesia/tts/requests/__init__.py,sha256=rRsvmYUnSEtOzTS9DdU391oVNRQKDWPG6BJcBKiHzRw,3614
82
82
  cartesia/tts/requests/cancel_context_request.py,sha256=Wl8g-o5vwl9ENm-H1wsLx441FkIR_4Wt5UYtuWce2Yw,431
83
83
  cartesia/tts/requests/controls.py,sha256=xzUJlfgqhaJ1A-JD0LTpoHYk4iEpCuGpSD7qE4YYsRg,285
84
+ cartesia/tts/requests/experimental_model_controls.py,sha256=ml7no5z_jnhy_21IXzSIYiar1OhNelCsD8A4lsfy4zk,687
85
+ cartesia/tts/requests/generation_config.py,sha256=Y7TRIeN9qolqmnOG8-iUbcomtkDM8krYalHFwV_l1x4,863
84
86
  cartesia/tts/requests/generation_request.py,sha256=JQPumk0UMCHDQrcUvuqeDsdc8LCJAEolSs10LpJzK00,3083
85
87
  cartesia/tts/requests/mp_3_output_format.py,sha256=PGDVzC1d7-Jce12rFxtF8G1pTHmlUdiGAhykFTABg0w,316
86
88
  cartesia/tts/requests/output_format.py,sha256=8TKu9AAeHCR5L4edzYch8FIYIldn4bM7ySrsCl8W_g8,842
@@ -88,7 +90,7 @@ cartesia/tts/requests/phoneme_timestamps.py,sha256=ft81nmqElZAnvTBT27lY6YWfF18ZG
88
90
  cartesia/tts/requests/raw_output_format.py,sha256=S60Vp7DeAATCMLF3bXgxhw0zILJBWJ9GhI9irAg_UkI,316
89
91
  cartesia/tts/requests/speed.py,sha256=-YGBWwh7_VtCBnYlT5EVsnrmcHFMEBTxy9LathZhkMA,259
90
92
  cartesia/tts/requests/sse_output_format.py,sha256=z_f7dlDYNvpheYOSnf3lOslHF40vS852pYkxHTpqAcc,293
91
- cartesia/tts/requests/tts_request.py,sha256=KBoahYfPbDENlEWsqnR4z1ZIhGIJwhLrzQIzkbtqtzE,1021
93
+ cartesia/tts/requests/tts_request.py,sha256=W6YA4pdTXSIoYUKKzwojcwRwEMSglx-CQrYOJThEz48,1152
92
94
  cartesia/tts/requests/tts_request_embedding_specifier.py,sha256=-M54ZjV0H5LPwcKtz0bOVqlkvO1pPiMbqMbVBMko3Ns,565
93
95
  cartesia/tts/requests/tts_request_id_specifier.py,sha256=-0ClfyJnnaH0uAcF5r84s3cM_cw2wT39dp6T4JYzOQ8,536
94
96
  cartesia/tts/requests/tts_request_voice_specifier.py,sha256=eGzL4aVGq4gKPxeglsV7-wuhxg8x33Qth3uFTTytgeI,337
@@ -109,12 +111,14 @@ cartesia/tts/requests/web_socket_tts_output.py,sha256=pX2uf0XVdziFhXCydwLlVOWb-L
109
111
  cartesia/tts/requests/web_socket_tts_request.py,sha256=1jdRjRAO7z-KLOyp8FcDoQh933RGt-ZPR3E8Vz3XPnQ,1795
110
112
  cartesia/tts/requests/word_timestamps.py,sha256=WMfBJtETi6wTpES0pYZCFfFRfEbzWE-RtosDJ5seUWg,261
111
113
  cartesia/tts/socket_client.py,sha256=zTPayHbgy-yQQ50AE1HXN4GMyanisZcLXf7Ds1paYks,11621
112
- cartesia/tts/types/__init__.py,sha256=rXphJ9b9nSYYrepr2ssG6ghtQAOQBQcLegxbl-XG3tw,3438
114
+ cartesia/tts/types/__init__.py,sha256=p75DSCxARgcSxNc4DF4L5nr-OvioMVe2Kl-HwtaAf3I,3610
113
115
  cartesia/tts/types/cancel_context_request.py,sha256=zInhk3qRZsSc0F1aYJ-Q5BHJsosTrb22IJWhzue-eKE,856
114
116
  cartesia/tts/types/context_id.py,sha256=UCEtq5xFGOeBCECcY6Y-gYVe_Peg1hFhH9YYOkpApQg,81
115
117
  cartesia/tts/types/controls.py,sha256=H4CSu79mM1Ld4NZx_5uXw3EwRzTEMQRxKBRvFpcFb8Y,644
116
118
  cartesia/tts/types/emotion.py,sha256=zocyDcHTiFFnNRgo2YLMi70iGyffa080B4mkg9lcqVc,764
119
+ cartesia/tts/types/experimental_model_controls.py,sha256=5DRCWspNWDojHt1uS441UjBqBQOjhJKqUAT0KwE1GBg,1075
117
120
  cartesia/tts/types/flush_id.py,sha256=HCIKo9o8d7YWKtaSNU3TEvfUVBju93ckGQy01Z9wLcE,79
121
+ cartesia/tts/types/generation_config.py,sha256=q_nkXRSLJRNrCA93GAcu0Kp_C8o6W2VFx7bm38Hqts0,1249
118
122
  cartesia/tts/types/generation_request.py,sha256=ZGVXmHZLaZg7kEg1cVGXLpr8uB3btr2eZt0NEJRZnSU,3582
119
123
  cartesia/tts/types/model_speed.py,sha256=iiTj8V0piFCX2FZh5B8EkgRhZDlj4z3VFcQhp66e7y8,160
120
124
  cartesia/tts/types/mp_3_output_format.py,sha256=0WGblkuDUL7pZO1aRuQ_mU2Z5gN9xIabRfRKkjtzms8,731
@@ -127,7 +131,7 @@ cartesia/tts/types/raw_output_format.py,sha256=jZGVaS0KIi9mU6trfskgA3HbMKJolhrwI
127
131
  cartesia/tts/types/speed.py,sha256=4c5WdxocBw6WSMnundSaNnceUeooU0vikhy00FW6M-w,239
128
132
  cartesia/tts/types/sse_output_format.py,sha256=tRb4VcYqoPJMDyjfTZMCRTblT2NjwIsQhy1oMjxQWW0,676
129
133
  cartesia/tts/types/supported_language.py,sha256=riDRduThMbMWAq9i2uCfxhwVTpgaFwNDZ9LhEIl4zHY,237
130
- cartesia/tts/types/tts_request.py,sha256=FGcxW-siiQpEzJZSHMET3nDSYHSzRt3WSTO-cCEz9u4,1376
134
+ cartesia/tts/types/tts_request.py,sha256=DPmzRJX-vFCkqqe2HYgsLFDL1ed05TGb635BswaSXGQ,1488
131
135
  cartesia/tts/types/tts_request_embedding_specifier.py,sha256=eL_qCEr4pvWfy4qp9hZBuVdCincX5DBVqfv1vLt2_Vk,942
132
136
  cartesia/tts/types/tts_request_id_specifier.py,sha256=ktGdkkTRQ9scA-lt8qJ2jn_E5WzoOK8AXMrVqi71gf0,906
133
137
  cartesia/tts/types/tts_request_voice_specifier.py,sha256=p-3UQ62uFL1SgbX73Ex1D_V73Ef0wmT1ApOt1iLZmwE,307
@@ -152,14 +156,14 @@ cartesia/tts/utils/tts.py,sha256=u7PgPxlJs6fcQTfr-jqAvBCAaK3JWLhF5QF4s-PwoMo,209
152
156
  cartesia/tts/utils/types.py,sha256=DtsiRwrYypXScLu71gNyprUiELuR1l_-ikVaj47gpg4,2047
153
157
  cartesia/version.py,sha256=xk5z2FYkgnvzyjqzmRg67rYl8fnCeHEjPpVmD08bjyE,75
154
158
  cartesia/voice_changer/__init__.py,sha256=UKA8CSAwUb41OL-dcWWUhIsKLLsyY_NQtrklPAVWf9E,685
155
- cartesia/voice_changer/client.py,sha256=vvyEbjwBhC-iS09nkmITMl81lNfrVxef3neUADyv-xc,13517
159
+ cartesia/voice_changer/client.py,sha256=w3Z3A-92Fu5k9NRrfdn7Gu2nqmOONL-xLCHknZhkANY,13509
156
160
  cartesia/voice_changer/requests/__init__.py,sha256=MRwSUqio3mg_tvfcpAS0wIZ69HvJsc2kYJ0tUBaJ53U,390
157
161
  cartesia/voice_changer/requests/streaming_response.py,sha256=lbo7CJeuh0f5hXT4lKG_sDUZDLJWaLqxcwCuSf1IbMQ,982
158
162
  cartesia/voice_changer/types/__init__.py,sha256=qAiHsdRpnFeS0lBkYp_NRrhSJiRXCg5-uFibqDWzYVU,430
159
163
  cartesia/voice_changer/types/output_format_container.py,sha256=RqLDELdgeOjYqNTJX1Le62qjiFiJGxf0cYnol88-LLM,166
160
164
  cartesia/voice_changer/types/streaming_response.py,sha256=gH-2-rlpeI3y9Ou0c7AopHUm3Z5uB3HaoPM1RvFCKwg,1875
161
165
  cartesia/voices/__init__.py,sha256=2D58Bir45LvcvP08QMnPlFE8DD8BONTjPLkIDdKs7vg,1891
162
- cartesia/voices/client.py,sha256=A_PEoCLko1znexKKicp-gZVMUcSpDoKqz3p1r4Aa04k,38993
166
+ cartesia/voices/client.py,sha256=iEglXf5LlvVlTVMItjE3k9-rcQwrem6jx3GZgsblBpA,38981
163
167
  cartesia/voices/requests/__init__.py,sha256=XiBJbSYeQCgFMtwywKvQ0Nmp7Zf_0WskzRhgr9c8h38,1072
164
168
  cartesia/voices/requests/create_voice_request.py,sha256=r6dKb9ga0ZsAi_6PXuE43u2lLgfQg2DIYjk2Neng7pI,617
165
169
  cartesia/voices/requests/embedding_response.py,sha256=PGZkBD8UBcv2MYQbBXyD4T6lzaE9oSGGwXx-MoXCp0M,228
@@ -198,6 +202,7 @@ cartesia/voices/types/voice_expand_options.py,sha256=e4FroWdlxEE-LXQfT1RWlGHtswl
198
202
  cartesia/voices/types/voice_id.py,sha256=GDoXcRVeIm-V21R4suxG2zqLD3DLYkXE9kgizadzFKo,79
199
203
  cartesia/voices/types/voice_metadata.py,sha256=4KNGjXMUKm3niv-NvKIFVGtiilpH13heuzKcZYNQxk4,1181
200
204
  cartesia/voices/types/weight.py,sha256=XqDU7_JItNUb5QykIDqTbELlRYQdbt2SviRgW0w2LKo,80
201
- cartesia-2.0.6.dist-info/METADATA,sha256=W5F4Ik_gsBAE4VnVv8K-fo8nyuBHC7j_RV8VJdgwBQE,20804
202
- cartesia-2.0.6.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
203
- cartesia-2.0.6.dist-info/RECORD,,
205
+ cartesia-2.0.7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
206
+ cartesia-2.0.7.dist-info/METADATA,sha256=Y6DBkN-dgV6mTHZewNoAYG8ywLzXx7SxQCVzOvP1FHU,20927
207
+ cartesia-2.0.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
208
+ cartesia-2.0.7.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.6.1
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any