cartesia 1.3.1__py3-none-any.whl → 2.0.0__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 +302 -3
- cartesia/api_status/__init__.py +6 -0
- cartesia/api_status/client.py +104 -0
- cartesia/api_status/requests/__init__.py +5 -0
- cartesia/api_status/requests/api_info.py +8 -0
- cartesia/api_status/types/__init__.py +5 -0
- cartesia/api_status/types/api_info.py +20 -0
- cartesia/base_client.py +156 -0
- cartesia/client.py +163 -40
- cartesia/core/__init__.py +50 -0
- cartesia/core/api_error.py +15 -0
- cartesia/core/client_wrapper.py +55 -0
- cartesia/core/datetime_utils.py +28 -0
- cartesia/core/file.py +67 -0
- cartesia/core/http_client.py +499 -0
- cartesia/core/jsonable_encoder.py +101 -0
- cartesia/core/pagination.py +88 -0
- cartesia/core/pydantic_utilities.py +296 -0
- cartesia/core/query_encoder.py +58 -0
- cartesia/core/remove_none_from_dict.py +11 -0
- cartesia/core/request_options.py +35 -0
- cartesia/core/serialization.py +272 -0
- cartesia/datasets/__init__.py +24 -0
- cartesia/datasets/requests/__init__.py +15 -0
- cartesia/datasets/requests/create_dataset_request.py +7 -0
- cartesia/datasets/requests/dataset.py +9 -0
- cartesia/datasets/requests/dataset_file.py +9 -0
- cartesia/datasets/requests/paginated_dataset_files.py +10 -0
- cartesia/datasets/requests/paginated_datasets.py +10 -0
- cartesia/datasets/types/__init__.py +17 -0
- cartesia/datasets/types/create_dataset_request.py +19 -0
- cartesia/datasets/types/dataset.py +21 -0
- cartesia/datasets/types/dataset_file.py +21 -0
- cartesia/datasets/types/file_purpose.py +5 -0
- cartesia/datasets/types/paginated_dataset_files.py +21 -0
- cartesia/datasets/types/paginated_datasets.py +21 -0
- cartesia/embedding/__init__.py +5 -0
- cartesia/embedding/types/__init__.py +5 -0
- cartesia/embedding/types/embedding.py +201 -0
- cartesia/environment.py +7 -0
- cartesia/infill/__init__.py +2 -0
- cartesia/infill/client.py +318 -0
- cartesia/tts/__init__.py +167 -0
- cartesia/{_async_websocket.py → tts/_async_websocket.py} +212 -85
- cartesia/tts/_websocket.py +479 -0
- cartesia/tts/client.py +407 -0
- cartesia/tts/requests/__init__.py +76 -0
- cartesia/tts/requests/cancel_context_request.py +17 -0
- cartesia/tts/requests/controls.py +11 -0
- cartesia/tts/requests/generation_request.py +58 -0
- cartesia/tts/requests/mp_3_output_format.py +11 -0
- cartesia/tts/requests/output_format.py +30 -0
- cartesia/tts/requests/phoneme_timestamps.py +10 -0
- cartesia/tts/requests/raw_output_format.py +11 -0
- cartesia/tts/requests/speed.py +7 -0
- cartesia/tts/requests/tts_request.py +24 -0
- cartesia/tts/requests/tts_request_embedding_specifier.py +16 -0
- cartesia/tts/requests/tts_request_id_specifier.py +16 -0
- cartesia/tts/requests/tts_request_voice_specifier.py +7 -0
- cartesia/tts/requests/wav_output_format.py +7 -0
- cartesia/tts/requests/web_socket_base_response.py +11 -0
- cartesia/tts/requests/web_socket_chunk_response.py +11 -0
- cartesia/tts/requests/web_socket_done_response.py +7 -0
- cartesia/tts/requests/web_socket_error_response.py +7 -0
- cartesia/tts/requests/web_socket_flush_done_response.py +9 -0
- cartesia/tts/requests/web_socket_phoneme_timestamps_response.py +9 -0
- cartesia/tts/requests/web_socket_raw_output_format.py +11 -0
- cartesia/tts/requests/web_socket_request.py +7 -0
- cartesia/tts/requests/web_socket_response.py +70 -0
- cartesia/tts/requests/web_socket_stream_options.py +8 -0
- cartesia/tts/requests/web_socket_timestamps_response.py +9 -0
- cartesia/tts/requests/web_socket_tts_output.py +18 -0
- cartesia/tts/requests/web_socket_tts_request.py +25 -0
- cartesia/tts/requests/word_timestamps.py +10 -0
- cartesia/tts/socket_client.py +302 -0
- cartesia/tts/types/__init__.py +90 -0
- cartesia/tts/types/cancel_context_request.py +28 -0
- cartesia/tts/types/context_id.py +3 -0
- cartesia/tts/types/controls.py +22 -0
- cartesia/tts/types/emotion.py +34 -0
- cartesia/tts/types/flush_id.py +3 -0
- cartesia/tts/types/generation_request.py +71 -0
- cartesia/tts/types/mp_3_output_format.py +23 -0
- cartesia/tts/types/natural_specifier.py +5 -0
- cartesia/tts/types/numerical_specifier.py +3 -0
- cartesia/tts/types/output_format.py +58 -0
- cartesia/tts/types/phoneme_timestamps.py +21 -0
- cartesia/tts/types/raw_encoding.py +5 -0
- cartesia/tts/types/raw_output_format.py +22 -0
- cartesia/tts/types/speed.py +7 -0
- cartesia/tts/types/supported_language.py +7 -0
- cartesia/tts/types/tts_request.py +35 -0
- cartesia/tts/types/tts_request_embedding_specifier.py +27 -0
- cartesia/tts/types/tts_request_id_specifier.py +27 -0
- cartesia/tts/types/tts_request_voice_specifier.py +7 -0
- cartesia/tts/types/wav_output_format.py +17 -0
- cartesia/tts/types/web_socket_base_response.py +22 -0
- cartesia/tts/types/web_socket_chunk_response.py +22 -0
- cartesia/tts/types/web_socket_done_response.py +17 -0
- cartesia/tts/types/web_socket_error_response.py +19 -0
- cartesia/tts/types/web_socket_flush_done_response.py +21 -0
- cartesia/tts/types/web_socket_phoneme_timestamps_response.py +20 -0
- cartesia/tts/types/web_socket_raw_output_format.py +22 -0
- cartesia/tts/types/web_socket_request.py +7 -0
- cartesia/tts/types/web_socket_response.py +125 -0
- cartesia/tts/types/web_socket_stream_options.py +19 -0
- cartesia/tts/types/web_socket_timestamps_response.py +20 -0
- cartesia/tts/types/web_socket_tts_output.py +29 -0
- cartesia/tts/types/web_socket_tts_request.py +37 -0
- cartesia/tts/types/word_timestamps.py +21 -0
- cartesia/{_constants.py → tts/utils/constants.py} +2 -2
- cartesia/tts/utils/tts.py +64 -0
- cartesia/tts/utils/types.py +70 -0
- cartesia/version.py +3 -1
- cartesia/voice_changer/__init__.py +27 -0
- cartesia/voice_changer/client.py +395 -0
- cartesia/voice_changer/requests/__init__.py +15 -0
- cartesia/voice_changer/requests/streaming_response.py +38 -0
- cartesia/voice_changer/types/__init__.py +17 -0
- cartesia/voice_changer/types/output_format_container.py +5 -0
- cartesia/voice_changer/types/streaming_response.py +64 -0
- cartesia/voices/__init__.py +81 -0
- cartesia/voices/client.py +1218 -0
- cartesia/voices/requests/__init__.py +29 -0
- cartesia/voices/requests/create_voice_request.py +23 -0
- cartesia/voices/requests/embedding_response.py +8 -0
- cartesia/voices/requests/embedding_specifier.py +10 -0
- cartesia/voices/requests/get_voices_response.py +24 -0
- cartesia/voices/requests/id_specifier.py +10 -0
- cartesia/voices/requests/localize_dialect.py +11 -0
- cartesia/voices/requests/localize_voice_request.py +28 -0
- cartesia/voices/requests/mix_voice_specifier.py +7 -0
- cartesia/voices/requests/mix_voices_request.py +9 -0
- cartesia/voices/requests/update_voice_request.py +15 -0
- cartesia/voices/requests/voice.py +43 -0
- cartesia/voices/requests/voice_metadata.py +36 -0
- cartesia/voices/types/__init__.py +53 -0
- cartesia/voices/types/base_voice_id.py +5 -0
- cartesia/voices/types/clone_mode.py +5 -0
- cartesia/voices/types/create_voice_request.py +34 -0
- cartesia/voices/types/embedding_response.py +20 -0
- cartesia/voices/types/embedding_specifier.py +22 -0
- cartesia/voices/types/gender.py +5 -0
- cartesia/voices/types/gender_presentation.py +5 -0
- cartesia/voices/types/get_voices_response.py +34 -0
- cartesia/voices/types/id_specifier.py +22 -0
- cartesia/voices/types/localize_dialect.py +11 -0
- cartesia/voices/types/localize_english_dialect.py +5 -0
- cartesia/voices/types/localize_french_dialect.py +5 -0
- cartesia/voices/types/localize_portuguese_dialect.py +5 -0
- cartesia/voices/types/localize_spanish_dialect.py +5 -0
- cartesia/voices/types/localize_target_language.py +7 -0
- cartesia/voices/types/localize_voice_request.py +39 -0
- cartesia/voices/types/mix_voice_specifier.py +7 -0
- cartesia/voices/types/mix_voices_request.py +20 -0
- cartesia/voices/types/update_voice_request.py +27 -0
- cartesia/voices/types/voice.py +54 -0
- cartesia/voices/types/voice_expand_options.py +5 -0
- cartesia/voices/types/voice_id.py +3 -0
- cartesia/voices/types/voice_metadata.py +48 -0
- cartesia/voices/types/weight.py +3 -0
- cartesia-2.0.0.dist-info/METADATA +414 -0
- cartesia-2.0.0.dist-info/RECORD +165 -0
- {cartesia-1.3.1.dist-info → cartesia-2.0.0.dist-info}/WHEEL +1 -1
- cartesia/_async_sse.py +0 -95
- cartesia/_logger.py +0 -3
- cartesia/_sse.py +0 -143
- cartesia/_types.py +0 -70
- cartesia/_websocket.py +0 -358
- cartesia/async_client.py +0 -82
- cartesia/async_tts.py +0 -63
- cartesia/resource.py +0 -44
- cartesia/tts.py +0 -137
- cartesia/utils/deprecated.py +0 -55
- cartesia/utils/retry.py +0 -87
- cartesia/utils/tts.py +0 -78
- cartesia/voices.py +0 -208
- cartesia-1.3.1.dist-info/METADATA +0 -661
- cartesia-1.3.1.dist-info/RECORD +0 -23
- cartesia-1.3.1.dist-info/licenses/LICENSE.md +0 -21
- /cartesia/{utils/__init__.py → py.typed} +0 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from .create_dataset_request import CreateDatasetRequestParams
|
4
|
+
from .dataset import DatasetParams
|
5
|
+
from .dataset_file import DatasetFileParams
|
6
|
+
from .paginated_dataset_files import PaginatedDatasetFilesParams
|
7
|
+
from .paginated_datasets import PaginatedDatasetsParams
|
8
|
+
|
9
|
+
__all__ = [
|
10
|
+
"CreateDatasetRequestParams",
|
11
|
+
"DatasetFileParams",
|
12
|
+
"DatasetParams",
|
13
|
+
"PaginatedDatasetFilesParams",
|
14
|
+
"PaginatedDatasetsParams",
|
15
|
+
]
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import typing_extensions
|
4
|
+
import typing
|
5
|
+
from .dataset_file import DatasetFileParams
|
6
|
+
|
7
|
+
|
8
|
+
class PaginatedDatasetFilesParams(typing_extensions.TypedDict):
|
9
|
+
data: typing.Sequence[DatasetFileParams]
|
10
|
+
has_more: bool
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import typing_extensions
|
4
|
+
import typing
|
5
|
+
from .dataset import DatasetParams
|
6
|
+
|
7
|
+
|
8
|
+
class PaginatedDatasetsParams(typing_extensions.TypedDict):
|
9
|
+
data: typing.Sequence[DatasetParams]
|
10
|
+
has_more: bool
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from .create_dataset_request import CreateDatasetRequest
|
4
|
+
from .dataset import Dataset
|
5
|
+
from .dataset_file import DatasetFile
|
6
|
+
from .file_purpose import FilePurpose
|
7
|
+
from .paginated_dataset_files import PaginatedDatasetFiles
|
8
|
+
from .paginated_datasets import PaginatedDatasets
|
9
|
+
|
10
|
+
__all__ = [
|
11
|
+
"CreateDatasetRequest",
|
12
|
+
"Dataset",
|
13
|
+
"DatasetFile",
|
14
|
+
"FilePurpose",
|
15
|
+
"PaginatedDatasetFiles",
|
16
|
+
"PaginatedDatasets",
|
17
|
+
]
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ...core.pydantic_utilities import UniversalBaseModel
|
4
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
5
|
+
import typing
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class CreateDatasetRequest(UniversalBaseModel):
|
10
|
+
name: str
|
11
|
+
|
12
|
+
if IS_PYDANTIC_V2:
|
13
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
14
|
+
else:
|
15
|
+
|
16
|
+
class Config:
|
17
|
+
frozen = True
|
18
|
+
smart_union = True
|
19
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ...core.pydantic_utilities import UniversalBaseModel
|
4
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
5
|
+
import typing
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class Dataset(UniversalBaseModel):
|
10
|
+
id: str
|
11
|
+
name: str
|
12
|
+
created_at: str
|
13
|
+
|
14
|
+
if IS_PYDANTIC_V2:
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
16
|
+
else:
|
17
|
+
|
18
|
+
class Config:
|
19
|
+
frozen = True
|
20
|
+
smart_union = True
|
21
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ...core.pydantic_utilities import UniversalBaseModel
|
4
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
5
|
+
import typing
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class DatasetFile(UniversalBaseModel):
|
10
|
+
id: str
|
11
|
+
filename: str
|
12
|
+
created_at: str
|
13
|
+
|
14
|
+
if IS_PYDANTIC_V2:
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
16
|
+
else:
|
17
|
+
|
18
|
+
class Config:
|
19
|
+
frozen = True
|
20
|
+
smart_union = True
|
21
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ...core.pydantic_utilities import UniversalBaseModel
|
4
|
+
import typing
|
5
|
+
from .dataset_file import DatasetFile
|
6
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
7
|
+
import pydantic
|
8
|
+
|
9
|
+
|
10
|
+
class PaginatedDatasetFiles(UniversalBaseModel):
|
11
|
+
data: typing.List[DatasetFile]
|
12
|
+
has_more: bool
|
13
|
+
|
14
|
+
if IS_PYDANTIC_V2:
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
16
|
+
else:
|
17
|
+
|
18
|
+
class Config:
|
19
|
+
frozen = True
|
20
|
+
smart_union = True
|
21
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ...core.pydantic_utilities import UniversalBaseModel
|
4
|
+
import typing
|
5
|
+
from .dataset import Dataset
|
6
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
7
|
+
import pydantic
|
8
|
+
|
9
|
+
|
10
|
+
class PaginatedDatasets(UniversalBaseModel):
|
11
|
+
data: typing.List[Dataset]
|
12
|
+
has_more: bool
|
13
|
+
|
14
|
+
if IS_PYDANTIC_V2:
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
16
|
+
else:
|
17
|
+
|
18
|
+
class Config:
|
19
|
+
frozen = True
|
20
|
+
smart_union = True
|
21
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,201 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import typing
|
4
|
+
|
5
|
+
"""
|
6
|
+
[
|
7
|
+
1.0,
|
8
|
+
1.0,
|
9
|
+
1.0,
|
10
|
+
1.0,
|
11
|
+
1.0,
|
12
|
+
1.0,
|
13
|
+
1.0,
|
14
|
+
1.0,
|
15
|
+
1.0,
|
16
|
+
1.0,
|
17
|
+
1.0,
|
18
|
+
1.0,
|
19
|
+
1.0,
|
20
|
+
1.0,
|
21
|
+
1.0,
|
22
|
+
1.0,
|
23
|
+
1.0,
|
24
|
+
1.0,
|
25
|
+
1.0,
|
26
|
+
1.0,
|
27
|
+
1.0,
|
28
|
+
1.0,
|
29
|
+
1.0,
|
30
|
+
1.0,
|
31
|
+
1.0,
|
32
|
+
1.0,
|
33
|
+
1.0,
|
34
|
+
1.0,
|
35
|
+
1.0,
|
36
|
+
1.0,
|
37
|
+
1.0,
|
38
|
+
1.0,
|
39
|
+
1.0,
|
40
|
+
1.0,
|
41
|
+
1.0,
|
42
|
+
1.0,
|
43
|
+
1.0,
|
44
|
+
1.0,
|
45
|
+
1.0,
|
46
|
+
1.0,
|
47
|
+
1.0,
|
48
|
+
1.0,
|
49
|
+
1.0,
|
50
|
+
1.0,
|
51
|
+
1.0,
|
52
|
+
1.0,
|
53
|
+
1.0,
|
54
|
+
1.0,
|
55
|
+
1.0,
|
56
|
+
1.0,
|
57
|
+
1.0,
|
58
|
+
1.0,
|
59
|
+
1.0,
|
60
|
+
1.0,
|
61
|
+
1.0,
|
62
|
+
1.0,
|
63
|
+
1.0,
|
64
|
+
1.0,
|
65
|
+
1.0,
|
66
|
+
1.0,
|
67
|
+
1.0,
|
68
|
+
1.0,
|
69
|
+
1.0,
|
70
|
+
1.0,
|
71
|
+
1.0,
|
72
|
+
1.0,
|
73
|
+
1.0,
|
74
|
+
1.0,
|
75
|
+
1.0,
|
76
|
+
1.0,
|
77
|
+
1.0,
|
78
|
+
1.0,
|
79
|
+
1.0,
|
80
|
+
1.0,
|
81
|
+
1.0,
|
82
|
+
1.0,
|
83
|
+
1.0,
|
84
|
+
1.0,
|
85
|
+
1.0,
|
86
|
+
1.0,
|
87
|
+
1.0,
|
88
|
+
1.0,
|
89
|
+
1.0,
|
90
|
+
1.0,
|
91
|
+
1.0,
|
92
|
+
1.0,
|
93
|
+
1.0,
|
94
|
+
1.0,
|
95
|
+
1.0,
|
96
|
+
1.0,
|
97
|
+
1.0,
|
98
|
+
1.0,
|
99
|
+
1.0,
|
100
|
+
1.0,
|
101
|
+
1.0,
|
102
|
+
1.0,
|
103
|
+
1.0,
|
104
|
+
1.0,
|
105
|
+
1.0,
|
106
|
+
1.0,
|
107
|
+
1.0,
|
108
|
+
1.0,
|
109
|
+
1.0,
|
110
|
+
1.0,
|
111
|
+
1.0,
|
112
|
+
1.0,
|
113
|
+
1.0,
|
114
|
+
1.0,
|
115
|
+
1.0,
|
116
|
+
1.0,
|
117
|
+
1.0,
|
118
|
+
1.0,
|
119
|
+
1.0,
|
120
|
+
1.0,
|
121
|
+
1.0,
|
122
|
+
1.0,
|
123
|
+
1.0,
|
124
|
+
1.0,
|
125
|
+
1.0,
|
126
|
+
1.0,
|
127
|
+
1.0,
|
128
|
+
1.0,
|
129
|
+
1.0,
|
130
|
+
1.0,
|
131
|
+
1.0,
|
132
|
+
1.0,
|
133
|
+
1.0,
|
134
|
+
1.0,
|
135
|
+
1.0,
|
136
|
+
1.0,
|
137
|
+
1.0,
|
138
|
+
1.0,
|
139
|
+
1.0,
|
140
|
+
1.0,
|
141
|
+
1.0,
|
142
|
+
1.0,
|
143
|
+
1.0,
|
144
|
+
1.0,
|
145
|
+
1.0,
|
146
|
+
1.0,
|
147
|
+
1.0,
|
148
|
+
1.0,
|
149
|
+
1.0,
|
150
|
+
1.0,
|
151
|
+
1.0,
|
152
|
+
1.0,
|
153
|
+
1.0,
|
154
|
+
1.0,
|
155
|
+
1.0,
|
156
|
+
1.0,
|
157
|
+
1.0,
|
158
|
+
1.0,
|
159
|
+
1.0,
|
160
|
+
1.0,
|
161
|
+
1.0,
|
162
|
+
1.0,
|
163
|
+
1.0,
|
164
|
+
1.0,
|
165
|
+
1.0,
|
166
|
+
1.0,
|
167
|
+
1.0,
|
168
|
+
1.0,
|
169
|
+
1.0,
|
170
|
+
1.0,
|
171
|
+
1.0,
|
172
|
+
1.0,
|
173
|
+
1.0,
|
174
|
+
1.0,
|
175
|
+
1.0,
|
176
|
+
1.0,
|
177
|
+
1.0,
|
178
|
+
1.0,
|
179
|
+
1.0,
|
180
|
+
1.0,
|
181
|
+
1.0,
|
182
|
+
1.0,
|
183
|
+
1.0,
|
184
|
+
1.0,
|
185
|
+
1.0,
|
186
|
+
1.0,
|
187
|
+
1.0,
|
188
|
+
1.0,
|
189
|
+
1.0,
|
190
|
+
1.0,
|
191
|
+
1.0,
|
192
|
+
1.0,
|
193
|
+
1.0,
|
194
|
+
1.0,
|
195
|
+
1.0,
|
196
|
+
1.0,
|
197
|
+
1.0,
|
198
|
+
1.0,
|
199
|
+
]
|
200
|
+
"""
|
201
|
+
Embedding = typing.List[float]
|
cartesia/environment.py
ADDED