syllable-sdk 0.38.20__py3-none-any.whl → 0.39.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.
syllable_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "syllable-sdk"
6
- __version__: str = "0.38.20"
6
+ __version__: str = "0.39.4"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
- __gen_version__: str = "2.723.11"
9
- __user_agent__: str = "speakeasy-sdk/python 0.38.20 2.723.11 0.0.2 syllable-sdk"
8
+ __gen_version__: str = "2.729.2"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.39.4 2.729.2 0.0.2 syllable-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -8,11 +8,15 @@ from syllable_sdk.types import BaseModel, OptionalNullable, UNSET
8
8
  from syllable_sdk.utils import get_security_from_env
9
9
  from syllable_sdk.utils.unmarshal_json_response import unmarshal_json_response
10
10
  from typing import Any, List, Mapping, Optional, Union, cast
11
+ from typing_extensions import deprecated
11
12
 
12
13
 
13
14
  class LanguageGroups(BaseSDK):
14
15
  r"""Operations related to language groups. A language group is a collection of language, voice, and DTMF configuration that can be linked to an agent to define the languages and voices it supports. For more information, see [Console docs](https://docs.syllable.ai/Resources/LanguageGroups)."""
15
16
 
17
+ @deprecated(
18
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
19
+ )
16
20
  def list(
17
21
  self,
18
22
  *,
@@ -32,7 +36,7 @@ class LanguageGroups(BaseSDK):
32
36
  ) -> models.ListResponseLanguageGroupResponse:
33
37
  r"""List Language Groups
34
38
 
35
- Fetch language groups.
39
+ Deprecated alias for `GET /api/v1/voice_groups/`.
36
40
 
37
41
  :param page: The page number from which to start (0-based)
38
42
  :param limit: The maximum number of items to return
@@ -128,6 +132,9 @@ class LanguageGroups(BaseSDK):
128
132
 
129
133
  raise errors.APIError("Unexpected response received", http_res)
130
134
 
135
+ @deprecated(
136
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
137
+ )
131
138
  async def list_async(
132
139
  self,
133
140
  *,
@@ -147,7 +154,7 @@ class LanguageGroups(BaseSDK):
147
154
  ) -> models.ListResponseLanguageGroupResponse:
148
155
  r"""List Language Groups
149
156
 
150
- Fetch language groups.
157
+ Deprecated alias for `GET /api/v1/voice_groups/`.
151
158
 
152
159
  :param page: The page number from which to start (0-based)
153
160
  :param limit: The maximum number of items to return
@@ -243,6 +250,9 @@ class LanguageGroups(BaseSDK):
243
250
 
244
251
  raise errors.APIError("Unexpected response received", http_res)
245
252
 
253
+ @deprecated(
254
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
255
+ )
246
256
  def create(
247
257
  self,
248
258
  *,
@@ -257,7 +267,7 @@ class LanguageGroups(BaseSDK):
257
267
  ) -> models.LanguageGroupResponse:
258
268
  r"""Create Language Group
259
269
 
260
- Create a new language group.
270
+ Deprecated alias for `POST /api/v1/voice_groups/`.
261
271
 
262
272
  :param request: The request object to send.
263
273
  :param retries: Override the default retry configuration for this method
@@ -338,6 +348,9 @@ class LanguageGroups(BaseSDK):
338
348
 
339
349
  raise errors.APIError("Unexpected response received", http_res)
340
350
 
351
+ @deprecated(
352
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
353
+ )
341
354
  async def create_async(
342
355
  self,
343
356
  *,
@@ -352,7 +365,7 @@ class LanguageGroups(BaseSDK):
352
365
  ) -> models.LanguageGroupResponse:
353
366
  r"""Create Language Group
354
367
 
355
- Create a new language group.
368
+ Deprecated alias for `POST /api/v1/voice_groups/`.
356
369
 
357
370
  :param request: The request object to send.
358
371
  :param retries: Override the default retry configuration for this method
@@ -433,6 +446,9 @@ class LanguageGroups(BaseSDK):
433
446
 
434
447
  raise errors.APIError("Unexpected response received", http_res)
435
448
 
449
+ @deprecated(
450
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
451
+ )
436
452
  def update(
437
453
  self,
438
454
  *,
@@ -447,7 +463,7 @@ class LanguageGroups(BaseSDK):
447
463
  ) -> models.LanguageGroupResponse:
448
464
  r"""Update Language Group
449
465
 
450
- Update an existing language group
466
+ Deprecated alias for `PUT /api/v1/voice_groups/`.
451
467
 
452
468
  :param request: The request object to send.
453
469
  :param retries: Override the default retry configuration for this method
@@ -528,6 +544,9 @@ class LanguageGroups(BaseSDK):
528
544
 
529
545
  raise errors.APIError("Unexpected response received", http_res)
530
546
 
547
+ @deprecated(
548
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
549
+ )
531
550
  async def update_async(
532
551
  self,
533
552
  *,
@@ -542,7 +561,7 @@ class LanguageGroups(BaseSDK):
542
561
  ) -> models.LanguageGroupResponse:
543
562
  r"""Update Language Group
544
563
 
545
- Update an existing language group
564
+ Deprecated alias for `PUT /api/v1/voice_groups/`.
546
565
 
547
566
  :param request: The request object to send.
548
567
  :param retries: Override the default retry configuration for this method
@@ -623,6 +642,9 @@ class LanguageGroups(BaseSDK):
623
642
 
624
643
  raise errors.APIError("Unexpected response received", http_res)
625
644
 
645
+ @deprecated(
646
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
647
+ )
626
648
  def get_by_id(
627
649
  self,
628
650
  *,
@@ -634,7 +656,7 @@ class LanguageGroups(BaseSDK):
634
656
  ) -> models.LanguageGroupResponse:
635
657
  r"""Get Language Group
636
658
 
637
- Fetch a given language group.
659
+ Deprecated alias for `GET /api/v1/voice_groups/{voice_group_id}`.
638
660
 
639
661
  :param language_group_id:
640
662
  :param retries: Override the default retry configuration for this method
@@ -712,6 +734,9 @@ class LanguageGroups(BaseSDK):
712
734
 
713
735
  raise errors.APIError("Unexpected response received", http_res)
714
736
 
737
+ @deprecated(
738
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
739
+ )
715
740
  async def get_by_id_async(
716
741
  self,
717
742
  *,
@@ -723,7 +748,7 @@ class LanguageGroups(BaseSDK):
723
748
  ) -> models.LanguageGroupResponse:
724
749
  r"""Get Language Group
725
750
 
726
- Fetch a given language group.
751
+ Deprecated alias for `GET /api/v1/voice_groups/{voice_group_id}`.
727
752
 
728
753
  :param language_group_id:
729
754
  :param retries: Override the default retry configuration for this method
@@ -801,6 +826,9 @@ class LanguageGroups(BaseSDK):
801
826
 
802
827
  raise errors.APIError("Unexpected response received", http_res)
803
828
 
829
+ @deprecated(
830
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
831
+ )
804
832
  def delete(
805
833
  self,
806
834
  *,
@@ -813,7 +841,7 @@ class LanguageGroups(BaseSDK):
813
841
  ) -> Any:
814
842
  r"""Delete Language Group
815
843
 
816
- Delete a language group.
844
+ Deprecated alias for `DELETE /api/v1/voice_groups/{voice_group_id}`.
817
845
 
818
846
  :param language_group_id:
819
847
  :param reason:
@@ -893,6 +921,9 @@ class LanguageGroups(BaseSDK):
893
921
 
894
922
  raise errors.APIError("Unexpected response received", http_res)
895
923
 
924
+ @deprecated(
925
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
926
+ )
896
927
  async def delete_async(
897
928
  self,
898
929
  *,
@@ -905,7 +936,7 @@ class LanguageGroups(BaseSDK):
905
936
  ) -> Any:
906
937
  r"""Delete Language Group
907
938
 
908
- Delete a language group.
939
+ Deprecated alias for `DELETE /api/v1/voice_groups/{voice_group_id}`.
909
940
 
910
941
  :param language_group_id:
911
942
  :param reason:
@@ -985,11 +1016,15 @@ class LanguageGroups(BaseSDK):
985
1016
 
986
1017
  raise errors.APIError("Unexpected response received", http_res)
987
1018
 
1019
+ @deprecated(
1020
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
1021
+ )
988
1022
  def language_groups_create_voice_sample(
989
1023
  self,
990
1024
  *,
991
1025
  request: Union[
992
- models.VoiceSampleCreateRequest, models.VoiceSampleCreateRequestTypedDict
1026
+ models.LanguageSampleCreateRequest,
1027
+ models.LanguageSampleCreateRequestTypedDict,
993
1028
  ],
994
1029
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
995
1030
  server_url: Optional[str] = None,
@@ -998,7 +1033,7 @@ class LanguageGroups(BaseSDK):
998
1033
  ) -> httpx.Response:
999
1034
  r"""Create Voice Sample
1000
1035
 
1001
- Generate voice sample.
1036
+ Deprecated alias for `POST /api/v1/voice_groups/voices/sample`.
1002
1037
 
1003
1038
  :param request: The request object to send.
1004
1039
  :param retries: Override the default retry configuration for this method
@@ -1017,8 +1052,8 @@ class LanguageGroups(BaseSDK):
1017
1052
  base_url = self._get_url(base_url, url_variables)
1018
1053
 
1019
1054
  if not isinstance(request, BaseModel):
1020
- request = utils.unmarshal(request, models.VoiceSampleCreateRequest)
1021
- request = cast(models.VoiceSampleCreateRequest, request)
1055
+ request = utils.unmarshal(request, models.LanguageSampleCreateRequest)
1056
+ request = cast(models.LanguageSampleCreateRequest, request)
1022
1057
 
1023
1058
  req = self._build_request(
1024
1059
  method="POST",
@@ -1034,7 +1069,7 @@ class LanguageGroups(BaseSDK):
1034
1069
  http_headers=http_headers,
1035
1070
  security=self.sdk_configuration.security,
1036
1071
  get_serialized_body=lambda: utils.serialize_request_body(
1037
- request, False, False, "json", models.VoiceSampleCreateRequest
1072
+ request, False, False, "json", models.LanguageSampleCreateRequest
1038
1073
  ),
1039
1074
  timeout_ms=timeout_ms,
1040
1075
  )
@@ -1082,11 +1117,15 @@ class LanguageGroups(BaseSDK):
1082
1117
  http_res_text = utils.stream_to_text(http_res)
1083
1118
  raise errors.APIError("Unexpected response received", http_res, http_res_text)
1084
1119
 
1120
+ @deprecated(
1121
+ "warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
1122
+ )
1085
1123
  async def language_groups_create_voice_sample_async(
1086
1124
  self,
1087
1125
  *,
1088
1126
  request: Union[
1089
- models.VoiceSampleCreateRequest, models.VoiceSampleCreateRequestTypedDict
1127
+ models.LanguageSampleCreateRequest,
1128
+ models.LanguageSampleCreateRequestTypedDict,
1090
1129
  ],
1091
1130
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1092
1131
  server_url: Optional[str] = None,
@@ -1095,7 +1134,7 @@ class LanguageGroups(BaseSDK):
1095
1134
  ) -> httpx.Response:
1096
1135
  r"""Create Voice Sample
1097
1136
 
1098
- Generate voice sample.
1137
+ Deprecated alias for `POST /api/v1/voice_groups/voices/sample`.
1099
1138
 
1100
1139
  :param request: The request object to send.
1101
1140
  :param retries: Override the default retry configuration for this method
@@ -1114,8 +1153,8 @@ class LanguageGroups(BaseSDK):
1114
1153
  base_url = self._get_url(base_url, url_variables)
1115
1154
 
1116
1155
  if not isinstance(request, BaseModel):
1117
- request = utils.unmarshal(request, models.VoiceSampleCreateRequest)
1118
- request = cast(models.VoiceSampleCreateRequest, request)
1156
+ request = utils.unmarshal(request, models.LanguageSampleCreateRequest)
1157
+ request = cast(models.LanguageSampleCreateRequest, request)
1119
1158
 
1120
1159
  req = self._build_request_async(
1121
1160
  method="POST",
@@ -1131,7 +1170,7 @@ class LanguageGroups(BaseSDK):
1131
1170
  http_headers=http_headers,
1132
1171
  security=self.sdk_configuration.security,
1133
1172
  get_serialized_body=lambda: utils.serialize_request_body(
1134
- request, False, False, "json", models.VoiceSampleCreateRequest
1173
+ request, False, False, "json", models.LanguageSampleCreateRequest
1135
1174
  ),
1136
1175
  timeout_ms=timeout_ms,
1137
1176
  )
@@ -433,6 +433,10 @@ if TYPE_CHECKING:
433
433
  LanguageGroupUpdateRequest,
434
434
  LanguageGroupUpdateRequestTypedDict,
435
435
  )
436
+ from .languagesamplecreaterequest import (
437
+ LanguageSampleCreateRequest,
438
+ LanguageSampleCreateRequestTypedDict,
439
+ )
436
440
  from .latencycategory import LatencyCategory
437
441
  from .latencyentry import LatencyEntry, LatencyEntryTypedDict
438
442
  from .latencyunittype import LatencyUnitType
@@ -527,6 +531,10 @@ if TYPE_CHECKING:
527
531
  ListResponseUserResponse,
528
532
  ListResponseUserResponseTypedDict,
529
533
  )
534
+ from .listresponse_voicegroupresponse_ import (
535
+ ListResponseVoiceGroupResponse,
536
+ ListResponseVoiceGroupResponseTypedDict,
537
+ )
530
538
  from .logintype import LoginType
531
539
  from .matchtype import MatchType
532
540
  from .orderbydirection import OrderByDirection
@@ -841,7 +849,29 @@ if TYPE_CHECKING:
841
849
  ValidationError,
842
850
  ValidationErrorTypedDict,
843
851
  )
852
+ from .voice_groups_deleteop import (
853
+ VoiceGroupsDeleteRequest,
854
+ VoiceGroupsDeleteRequestTypedDict,
855
+ )
856
+ from .voice_groups_get_by_idop import (
857
+ VoiceGroupsGetByIDRequest,
858
+ VoiceGroupsGetByIDRequestTypedDict,
859
+ )
860
+ from .voice_groups_listop import (
861
+ VoiceGroupsListRequest,
862
+ VoiceGroupsListRequestTypedDict,
863
+ )
844
864
  from .voicedisplayinfo import VoiceDisplayInfo, VoiceDisplayInfoTypedDict
865
+ from .voicegroupcreaterequest import (
866
+ VoiceGroupCreateRequest,
867
+ VoiceGroupCreateRequestTypedDict,
868
+ )
869
+ from .voicegroupproperties import VoiceGroupProperties
870
+ from .voicegroupresponse import VoiceGroupResponse, VoiceGroupResponseTypedDict
871
+ from .voicegroupupdaterequest import (
872
+ VoiceGroupUpdateRequest,
873
+ VoiceGroupUpdateRequestTypedDict,
874
+ )
845
875
  from .voicesamplecreaterequest import (
846
876
  VoiceSampleCreateRequest,
847
877
  VoiceSampleCreateRequestTypedDict,
@@ -1144,6 +1174,8 @@ __all__ = [
1144
1174
  "LanguageGroupsGetByIDRequestTypedDict",
1145
1175
  "LanguageGroupsListRequest",
1146
1176
  "LanguageGroupsListRequestTypedDict",
1177
+ "LanguageSampleCreateRequest",
1178
+ "LanguageSampleCreateRequestTypedDict",
1147
1179
  "LatencyCategory",
1148
1180
  "LatencyEntry",
1149
1181
  "LatencyEntryTypedDict",
@@ -1198,6 +1230,8 @@ __all__ = [
1198
1230
  "ListResponseToolResponseTypedDict",
1199
1231
  "ListResponseUserResponse",
1200
1232
  "ListResponseUserResponseTypedDict",
1233
+ "ListResponseVoiceGroupResponse",
1234
+ "ListResponseVoiceGroupResponseTypedDict",
1201
1235
  "Loc",
1202
1236
  "LocTypedDict",
1203
1237
  "LoginType",
@@ -1449,6 +1483,19 @@ __all__ = [
1449
1483
  "ValidationErrorTypedDict",
1450
1484
  "VoiceDisplayInfo",
1451
1485
  "VoiceDisplayInfoTypedDict",
1486
+ "VoiceGroupCreateRequest",
1487
+ "VoiceGroupCreateRequestTypedDict",
1488
+ "VoiceGroupProperties",
1489
+ "VoiceGroupResponse",
1490
+ "VoiceGroupResponseTypedDict",
1491
+ "VoiceGroupUpdateRequest",
1492
+ "VoiceGroupUpdateRequestTypedDict",
1493
+ "VoiceGroupsDeleteRequest",
1494
+ "VoiceGroupsDeleteRequestTypedDict",
1495
+ "VoiceGroupsGetByIDRequest",
1496
+ "VoiceGroupsGetByIDRequestTypedDict",
1497
+ "VoiceGroupsListRequest",
1498
+ "VoiceGroupsListRequestTypedDict",
1452
1499
  "VoiceSampleCreateRequest",
1453
1500
  "VoiceSampleCreateRequestTypedDict",
1454
1501
  ]
@@ -1744,6 +1791,8 @@ _dynamic_imports: dict[str, str] = {
1744
1791
  "LanguageGroupResponseTypedDict": ".languagegroupresponse",
1745
1792
  "LanguageGroupUpdateRequest": ".languagegroupupdaterequest",
1746
1793
  "LanguageGroupUpdateRequestTypedDict": ".languagegroupupdaterequest",
1794
+ "LanguageSampleCreateRequest": ".languagesamplecreaterequest",
1795
+ "LanguageSampleCreateRequestTypedDict": ".languagesamplecreaterequest",
1747
1796
  "LatencyCategory": ".latencycategory",
1748
1797
  "LatencyEntry": ".latencyentry",
1749
1798
  "LatencyEntryTypedDict": ".latencyentry",
@@ -1798,6 +1847,8 @@ _dynamic_imports: dict[str, str] = {
1798
1847
  "ListResponseToolResponseTypedDict": ".listresponse_toolresponse_",
1799
1848
  "ListResponseUserResponse": ".listresponse_userresponse_",
1800
1849
  "ListResponseUserResponseTypedDict": ".listresponse_userresponse_",
1850
+ "ListResponseVoiceGroupResponse": ".listresponse_voicegroupresponse_",
1851
+ "ListResponseVoiceGroupResponseTypedDict": ".listresponse_voicegroupresponse_",
1801
1852
  "LoginType": ".logintype",
1802
1853
  "MatchType": ".matchtype",
1803
1854
  "OrderByDirection": ".orderbydirection",
@@ -2046,8 +2097,21 @@ _dynamic_imports: dict[str, str] = {
2046
2097
  "LocTypedDict": ".validationerror",
2047
2098
  "ValidationError": ".validationerror",
2048
2099
  "ValidationErrorTypedDict": ".validationerror",
2100
+ "VoiceGroupsDeleteRequest": ".voice_groups_deleteop",
2101
+ "VoiceGroupsDeleteRequestTypedDict": ".voice_groups_deleteop",
2102
+ "VoiceGroupsGetByIDRequest": ".voice_groups_get_by_idop",
2103
+ "VoiceGroupsGetByIDRequestTypedDict": ".voice_groups_get_by_idop",
2104
+ "VoiceGroupsListRequest": ".voice_groups_listop",
2105
+ "VoiceGroupsListRequestTypedDict": ".voice_groups_listop",
2049
2106
  "VoiceDisplayInfo": ".voicedisplayinfo",
2050
2107
  "VoiceDisplayInfoTypedDict": ".voicedisplayinfo",
2108
+ "VoiceGroupCreateRequest": ".voicegroupcreaterequest",
2109
+ "VoiceGroupCreateRequestTypedDict": ".voicegroupcreaterequest",
2110
+ "VoiceGroupProperties": ".voicegroupproperties",
2111
+ "VoiceGroupResponse": ".voicegroupresponse",
2112
+ "VoiceGroupResponseTypedDict": ".voicegroupresponse",
2113
+ "VoiceGroupUpdateRequest": ".voicegroupupdaterequest",
2114
+ "VoiceGroupUpdateRequestTypedDict": ".voicegroupupdaterequest",
2051
2115
  "VoiceSampleCreateRequest": ".voicesamplecreaterequest",
2052
2116
  "VoiceSampleCreateRequestTypedDict": ".voicesamplecreaterequest",
2053
2117
  }
@@ -8,6 +8,8 @@ class AgentVoiceDisplayName(str, Enum):
8
8
  r"""Display names of voices that Syllable supports."""
9
9
 
10
10
  ACHERNAR_ENGLISH_ = "Achernar (English)"
11
+ ACHERNAR_GUJARATI_ = "Achernar (Gujarati)"
12
+ ACHERNAR_HINDI_ = "Achernar (Hindi)"
11
13
  ACHERNAR_KOREAN_ = "Achernar (Korean)"
12
14
  ACHERNAR_MANDARIN_ = "Achernar (Mandarin)"
13
15
  ACHERNAR_SPANISH_ = "Achernar (Spanish)"
@@ -16,8 +18,11 @@ class AgentVoiceDisplayName(str, Enum):
16
18
  ALICE = "Alice"
17
19
  ALLOY = "Alloy"
18
20
  AOEDE_ENGLISH_ = "Aoede (English)"
21
+ AOEDE_GUJARATI_ = "Aoede (Gujarati)"
22
+ AOEDE_HINDI_ = "Aoede (Hindi)"
19
23
  AOEDE_KOREAN_ = "Aoede (Korean)"
20
24
  AOEDE_MANDARIN_ = "Aoede (Mandarin)"
25
+ AOEDE_RUSSIAN_ = "Aoede (Russian)"
21
26
  AOEDE_SPANISH_ = "Aoede (Spanish)"
22
27
  AOEDE_THAI_ = "Aoede (Thai)"
23
28
  AOEDE_VIETNAMESE_ = "Aoede (Vietnamese)"
@@ -25,6 +30,8 @@ class AgentVoiceDisplayName(str, Enum):
25
30
  BILL = "Bill"
26
31
  BRIAN = "Brian"
27
32
  CALLIRRHOE_ENGLISH_ = "Callirrhoe (English)"
33
+ CALLIRRHOE_GUJARATI_ = "Callirrhoe (Gujarati)"
34
+ CALLIRRHOE_HINDI_ = "Callirrhoe (Hindi)"
28
35
  CALLIRRHOE_KOREAN_ = "Callirrhoe (Korean)"
29
36
  CALLIRRHOE_MANDARIN_ = "Callirrhoe (Mandarin)"
30
37
  CALLIRRHOE_SPANISH_ = "Callirrhoe (Spanish)"
@@ -34,8 +41,11 @@ class AgentVoiceDisplayName(str, Enum):
34
41
  CHARLIE = "Charlie"
35
42
  CHARLOTTE = "Charlotte"
36
43
  CHARON_ENGLISH_ = "Charon (English)"
44
+ CHARON_GUJARATI_ = "Charon (Gujarati)"
45
+ CHARON_HINDI_ = "Charon (Hindi)"
37
46
  CHARON_KOREAN_ = "Charon (Korean)"
38
47
  CHARON_MANDARIN_ = "Charon (Mandarin)"
48
+ CHARON_RUSSIAN_ = "Charon (Russian)"
39
49
  CHARON_SPANISH_ = "Charon (Spanish)"
40
50
  CHARON_THAI_ = "Charon (Thai)"
41
51
  CHARON_VIETNAMESE_ = "Charon (Vietnamese)"
@@ -53,8 +63,11 @@ class AgentVoiceDisplayName(str, Enum):
53
63
  ES_US_NEURAL2_B = "es-US-Neural2-B"
54
64
  FABLE = "Fable"
55
65
  FENRIR_ENGLISH_ = "Fenrir (English)"
66
+ FENRIR_GUJARATI_ = "Fenrir (Gujarati)"
67
+ FENRIR_HINDI_ = "Fenrir (Hindi)"
56
68
  FENRIR_KOREAN_ = "Fenrir (Korean)"
57
69
  FENRIR_MANDARIN_ = "Fenrir (Mandarin)"
70
+ FENRIR_RUSSIAN_ = "Fenrir (Russian)"
58
71
  FENRIR_SPANISH_ = "Fenrir (Spanish)"
59
72
  FENRIR_THAI_ = "Fenrir (Thai)"
60
73
  FENRIR_VIETNAMESE_ = "Fenrir (Vietnamese)"
@@ -62,15 +75,21 @@ class AgentVoiceDisplayName(str, Enum):
62
75
  JESSICA = "Jessica"
63
76
  KO_KR_NEURAL2_A = "ko-KR-Neural2-A"
64
77
  KORE_ENGLISH_ = "Kore (English)"
78
+ KORE_GUJARATI_ = "Kore (Gujarati)"
79
+ KORE_HINDI_ = "Kore (Hindi)"
65
80
  KORE_KOREAN_ = "Kore (Korean)"
66
81
  KORE_MANDARIN_ = "Kore (Mandarin)"
82
+ KORE_RUSSIAN_ = "Kore (Russian)"
67
83
  KORE_SPANISH_ = "Kore (Spanish)"
68
84
  KORE_THAI_ = "Kore (Thai)"
69
85
  KORE_VIETNAMESE_ = "Kore (Vietnamese)"
70
86
  LAURA = "Laura"
71
87
  LEDA_ENGLISH_ = "Leda (English)"
88
+ LEDA_GUJARATI_ = "Leda (Gujarati)"
89
+ LEDA_HINDI_ = "Leda (Hindi)"
72
90
  LEDA_KOREAN_ = "Leda (Korean)"
73
91
  LEDA_MANDARIN_ = "Leda (Mandarin)"
92
+ LEDA_RUSSIAN_ = "Leda (Russian)"
74
93
  LEDA_SPANISH_ = "Leda (Spanish)"
75
94
  LEDA_THAI_ = "Leda (Thai)"
76
95
  LEDA_VIETNAMESE_ = "Leda (Vietnamese)"
@@ -80,14 +99,20 @@ class AgentVoiceDisplayName(str, Enum):
80
99
  NOVA = "Nova"
81
100
  ONYX = "Onyx"
82
101
  ORUS_ENGLISH_ = "Orus (English)"
102
+ ORUS_GUJARATI_ = "Orus (Gujarati)"
103
+ ORUS_HINDI_ = "Orus (Hindi)"
83
104
  ORUS_KOREAN_ = "Orus (Korean)"
84
105
  ORUS_MANDARIN_ = "Orus (Mandarin)"
106
+ ORUS_RUSSIAN_ = "Orus (Russian)"
85
107
  ORUS_SPANISH_ = "Orus (Spanish)"
86
108
  ORUS_THAI_ = "Orus (Thai)"
87
109
  ORUS_VIETNAMESE_ = "Orus (Vietnamese)"
88
110
  PUCK_ENGLISH_ = "Puck (English)"
111
+ PUCK_GUJARATI_ = "Puck (Gujarati)"
112
+ PUCK_HINDI_ = "Puck (Hindi)"
89
113
  PUCK_KOREAN_ = "Puck (Korean)"
90
114
  PUCK_MANDARIN_ = "Puck (Mandarin)"
115
+ PUCK_RUSSIAN_ = "Puck (Russian)"
91
116
  PUCK_SPANISH_ = "Puck (Spanish)"
92
117
  PUCK_THAI_ = "Puck (Thai)"
93
118
  PUCK_VIETNAMESE_ = "Puck (Vietnamese)"
@@ -97,12 +122,16 @@ class AgentVoiceDisplayName(str, Enum):
97
122
  SAGE = "Sage"
98
123
  SHIMMER = "Shimmer"
99
124
  UMBRIEL_ENGLISH_ = "Umbriel (English)"
125
+ UMBRIEL_GUJARATI_ = "Umbriel (Gujarati)"
126
+ UMBRIEL_HINDI_ = "Umbriel (Hindi)"
100
127
  UMBRIEL_KOREAN_ = "Umbriel (Korean)"
101
128
  UMBRIEL_MANDARIN_ = "Umbriel (Mandarin)"
102
129
  UMBRIEL_SPANISH_ = "Umbriel (Spanish)"
103
130
  UMBRIEL_THAI_ = "Umbriel (Thai)"
104
131
  UMBRIEL_VIETNAMESE_ = "Umbriel (Vietnamese)"
105
132
  VINDEMIATRIX_ENGLISH_ = "Vindemiatrix (English)"
133
+ VINDEMIATRIX_GUJARATI_ = "Vindemiatrix (Gujarati)"
134
+ VINDEMIATRIX_HINDI_ = "Vindemiatrix (Hindi)"
106
135
  VINDEMIATRIX_KOREAN_ = "Vindemiatrix (Korean)"
107
136
  VINDEMIATRIX_MANDARIN_ = "Vindemiatrix (Mandarin)"
108
137
  VINDEMIATRIX_SPANISH_ = "Vindemiatrix (Spanish)"
@@ -112,8 +141,11 @@ class AgentVoiceDisplayName(str, Enum):
112
141
  WILL = "Will"
113
142
  YUE_HK_STANDARD_C = "yue-HK-Standard-C"
114
143
  ZEPHYR_ENGLISH_ = "Zephyr (English)"
144
+ ZEPHYR_GUJARATI_ = "Zephyr (Gujarati)"
145
+ ZEPHYR_HINDI_ = "Zephyr (Hindi)"
115
146
  ZEPHYR_KOREAN_ = "Zephyr (Korean)"
116
147
  ZEPHYR_MANDARIN_ = "Zephyr (Mandarin)"
148
+ ZEPHYR_RUSSIAN_ = "Zephyr (Russian)"
117
149
  ZEPHYR_SPANISH_ = "Zephyr (Spanish)"
118
150
  ZEPHYR_THAI_ = "Zephyr (Thai)"
119
151
  ZEPHYR_VIETNAMESE_ = "Zephyr (Vietnamese)"