syllable-sdk 0.41.7__py3-none-any.whl → 0.41.20__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 +3 -3
- syllable_sdk/models/__init__.py +5 -8
- syllable_sdk/models/custommessageconfig.py +20 -0
- syllable_sdk/models/custommessagecreaterequest.py +7 -1
- syllable_sdk/models/custommessageresponse.py +7 -1
- syllable_sdk/models/custommessageupdaterequest.py +7 -1
- syllable_sdk/models/prompthistory.py +12 -1
- syllable_sdk/models/requeststatus.py +1 -0
- syllable_sdk/pronunciations.py +5 -8
- syllable_sdk/utils/unmarshal_json_response.py +15 -1
- {syllable_sdk-0.41.7.dist-info → syllable_sdk-0.41.20.dist-info}/METADATA +1 -1
- {syllable_sdk-0.41.7.dist-info → syllable_sdk-0.41.20.dist-info}/RECORD +13 -13
- syllable_sdk/models/pronunciations_download_csvop.py +0 -18
- {syllable_sdk-0.41.7.dist-info → syllable_sdk-0.41.20.dist-info}/WHEEL +0 -0
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.41.
|
|
6
|
+
__version__: str = "0.41.20"
|
|
7
7
|
__openapi_doc_version__: str = "0.0.2"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.41.
|
|
8
|
+
__gen_version__: str = "2.755.9"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.41.20 2.755.9 0.0.2 syllable-sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
syllable_sdk/models/__init__.py
CHANGED
|
@@ -172,6 +172,7 @@ if TYPE_CHECKING:
|
|
|
172
172
|
CustomMessagesListRequest,
|
|
173
173
|
CustomMessagesListRequestTypedDict,
|
|
174
174
|
)
|
|
175
|
+
from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
|
|
175
176
|
from .custommessagecreaterequest import (
|
|
176
177
|
CustomMessageCreateRequest,
|
|
177
178
|
CustomMessageCreateRequestTypedDict,
|
|
@@ -696,10 +697,6 @@ if TYPE_CHECKING:
|
|
|
696
697
|
PronunciationOverridesDictionary,
|
|
697
698
|
PronunciationOverridesDictionaryTypedDict,
|
|
698
699
|
)
|
|
699
|
-
from .pronunciations_download_csvop import (
|
|
700
|
-
PronunciationsDownloadCsvResponse,
|
|
701
|
-
PronunciationsDownloadCsvResponseTypedDict,
|
|
702
|
-
)
|
|
703
700
|
from .pronunciationscsvuploadresponse import (
|
|
704
701
|
PronunciationsCsvUploadResponse,
|
|
705
702
|
PronunciationsCsvUploadResponseTypedDict,
|
|
@@ -1051,6 +1048,8 @@ __all__ = [
|
|
|
1051
1048
|
"ConversationsListRequestTypedDict",
|
|
1052
1049
|
"CreateTakeoutResponse",
|
|
1053
1050
|
"CreateTakeoutResponseTypedDict",
|
|
1051
|
+
"CustomMessageConfig",
|
|
1052
|
+
"CustomMessageConfigTypedDict",
|
|
1054
1053
|
"CustomMessageCreateRequest",
|
|
1055
1054
|
"CustomMessageCreateRequestTypedDict",
|
|
1056
1055
|
"CustomMessageGetByIDRequest",
|
|
@@ -1392,8 +1391,6 @@ __all__ = [
|
|
|
1392
1391
|
"PronunciationOverridesDictionaryTypedDict",
|
|
1393
1392
|
"PronunciationsCsvUploadResponse",
|
|
1394
1393
|
"PronunciationsCsvUploadResponseTypedDict",
|
|
1395
|
-
"PronunciationsDownloadCsvResponse",
|
|
1396
|
-
"PronunciationsDownloadCsvResponseTypedDict",
|
|
1397
1394
|
"RequestStatus",
|
|
1398
1395
|
"RoleCreateRequest",
|
|
1399
1396
|
"RoleCreateRequestTypedDict",
|
|
@@ -1701,6 +1698,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1701
1698
|
"CustomMessagesDeleteRequestTypedDict": ".custom_messages_deleteop",
|
|
1702
1699
|
"CustomMessagesListRequest": ".custom_messages_listop",
|
|
1703
1700
|
"CustomMessagesListRequestTypedDict": ".custom_messages_listop",
|
|
1701
|
+
"CustomMessageConfig": ".custommessageconfig",
|
|
1702
|
+
"CustomMessageConfigTypedDict": ".custommessageconfig",
|
|
1704
1703
|
"CustomMessageCreateRequest": ".custommessagecreaterequest",
|
|
1705
1704
|
"CustomMessageCreateRequestTypedDict": ".custommessagecreaterequest",
|
|
1706
1705
|
"CustomMessageProperties": ".custommessageproperties",
|
|
@@ -2034,8 +2033,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2034
2033
|
"PronunciationOverrideTypedDict": ".pronunciationoverride",
|
|
2035
2034
|
"PronunciationOverridesDictionary": ".pronunciationoverridesdictionary",
|
|
2036
2035
|
"PronunciationOverridesDictionaryTypedDict": ".pronunciationoverridesdictionary",
|
|
2037
|
-
"PronunciationsDownloadCsvResponse": ".pronunciations_download_csvop",
|
|
2038
|
-
"PronunciationsDownloadCsvResponseTypedDict": ".pronunciations_download_csvop",
|
|
2039
2036
|
"PronunciationsCsvUploadResponse": ".pronunciationscsvuploadresponse",
|
|
2040
2037
|
"PronunciationsCsvUploadResponseTypedDict": ".pronunciationscsvuploadresponse",
|
|
2041
2038
|
"RequestStatus": ".requeststatus",
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from syllable_sdk.types import BaseModel
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class CustomMessageConfigTypedDict(TypedDict):
|
|
10
|
+
r"""Additional configuration options for the message."""
|
|
11
|
+
|
|
12
|
+
user_initiated_non_voice_session_behavior: NotRequired[str]
|
|
13
|
+
r"""The behavior of an agent assigned this message at the beginning of a user-initiated non-voice session (e.g., SMS, email, etc.). 'respond_only' will skip the message and respond to the user's message. 'greet_and_respond' will deliver the message and respond to the user's message. 'greet_only' will deliver the message and not respond to the user's message. Defaults to 'greet_only'."""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class CustomMessageConfig(BaseModel):
|
|
17
|
+
r"""Additional configuration options for the message."""
|
|
18
|
+
|
|
19
|
+
user_initiated_non_voice_session_behavior: Optional[str] = "greet_only"
|
|
20
|
+
r"""The behavior of an agent assigned this message at the beginning of a user-initiated non-voice session (e.g., SMS, email, etc.). 'respond_only' will skip the message and respond to the user's message. 'greet_and_respond' will deliver the message and respond to the user's message. 'greet_only' will deliver the message and not respond to the user's message. Defaults to 'greet_only'."""
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
|
|
4
5
|
from .custommessagerule import CustomMessageRule, CustomMessageRuleTypedDict
|
|
5
6
|
from pydantic import model_serializer
|
|
6
7
|
from syllable_sdk.types import (
|
|
@@ -25,6 +26,8 @@ class CustomMessageCreateRequestTypedDict(TypedDict):
|
|
|
25
26
|
r"""The label of the custom message"""
|
|
26
27
|
rules: NotRequired[List[CustomMessageRuleTypedDict]]
|
|
27
28
|
r"""Rules for time-specific message variants"""
|
|
29
|
+
config: NotRequired[CustomMessageConfigTypedDict]
|
|
30
|
+
r"""Additional configuration options for the message."""
|
|
28
31
|
type: NotRequired[str]
|
|
29
32
|
r"""Type of the custom message (must be \"greeting\" for now)"""
|
|
30
33
|
|
|
@@ -44,12 +47,15 @@ class CustomMessageCreateRequest(BaseModel):
|
|
|
44
47
|
rules: Optional[List[CustomMessageRule]] = None
|
|
45
48
|
r"""Rules for time-specific message variants"""
|
|
46
49
|
|
|
50
|
+
config: Optional[CustomMessageConfig] = None
|
|
51
|
+
r"""Additional configuration options for the message."""
|
|
52
|
+
|
|
47
53
|
type: Optional[str] = "greeting"
|
|
48
54
|
r"""Type of the custom message (must be \"greeting\" for now)"""
|
|
49
55
|
|
|
50
56
|
@model_serializer(mode="wrap")
|
|
51
57
|
def serialize_model(self, handler):
|
|
52
|
-
optional_fields = ["label", "rules", "type"]
|
|
58
|
+
optional_fields = ["label", "rules", "config", "type"]
|
|
53
59
|
nullable_fields = ["label"]
|
|
54
60
|
null_default_fields = []
|
|
55
61
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
|
|
4
5
|
from .custommessagerule import CustomMessageRule, CustomMessageRuleTypedDict
|
|
5
6
|
from datetime import datetime
|
|
6
7
|
from pydantic import model_serializer
|
|
@@ -38,6 +39,8 @@ class CustomMessageResponseTypedDict(TypedDict):
|
|
|
38
39
|
r"""The label of the custom message"""
|
|
39
40
|
rules: NotRequired[List[CustomMessageRuleTypedDict]]
|
|
40
41
|
r"""Rules for time-specific message variants"""
|
|
42
|
+
config: NotRequired[CustomMessageConfigTypedDict]
|
|
43
|
+
r"""Additional configuration options for the message."""
|
|
41
44
|
agent_count: NotRequired[Nullable[int]]
|
|
42
45
|
r"""The number of agents using the custom message"""
|
|
43
46
|
type: NotRequired[str]
|
|
@@ -74,6 +77,9 @@ class CustomMessageResponse(BaseModel):
|
|
|
74
77
|
rules: Optional[List[CustomMessageRule]] = None
|
|
75
78
|
r"""Rules for time-specific message variants"""
|
|
76
79
|
|
|
80
|
+
config: Optional[CustomMessageConfig] = None
|
|
81
|
+
r"""Additional configuration options for the message."""
|
|
82
|
+
|
|
77
83
|
agent_count: OptionalNullable[int] = UNSET
|
|
78
84
|
r"""The number of agents using the custom message"""
|
|
79
85
|
|
|
@@ -82,7 +88,7 @@ class CustomMessageResponse(BaseModel):
|
|
|
82
88
|
|
|
83
89
|
@model_serializer(mode="wrap")
|
|
84
90
|
def serialize_model(self, handler):
|
|
85
|
-
optional_fields = ["label", "rules", "agent_count", "type"]
|
|
91
|
+
optional_fields = ["label", "rules", "config", "agent_count", "type"]
|
|
86
92
|
nullable_fields = ["label", "agent_count"]
|
|
87
93
|
null_default_fields = []
|
|
88
94
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .custommessageconfig import CustomMessageConfig, CustomMessageConfigTypedDict
|
|
4
5
|
from .custommessagerule import CustomMessageRule, CustomMessageRuleTypedDict
|
|
5
6
|
from pydantic import model_serializer
|
|
6
7
|
from syllable_sdk.types import (
|
|
@@ -27,6 +28,8 @@ class CustomMessageUpdateRequestTypedDict(TypedDict):
|
|
|
27
28
|
r"""The label of the custom message"""
|
|
28
29
|
rules: NotRequired[List[CustomMessageRuleTypedDict]]
|
|
29
30
|
r"""Rules for time-specific message variants"""
|
|
31
|
+
config: NotRequired[CustomMessageConfigTypedDict]
|
|
32
|
+
r"""Additional configuration options for the message."""
|
|
30
33
|
type: NotRequired[str]
|
|
31
34
|
r"""Type of the custom message (must be \"greeting\" for now)"""
|
|
32
35
|
|
|
@@ -49,12 +52,15 @@ class CustomMessageUpdateRequest(BaseModel):
|
|
|
49
52
|
rules: Optional[List[CustomMessageRule]] = None
|
|
50
53
|
r"""Rules for time-specific message variants"""
|
|
51
54
|
|
|
55
|
+
config: Optional[CustomMessageConfig] = None
|
|
56
|
+
r"""Additional configuration options for the message."""
|
|
57
|
+
|
|
52
58
|
type: Optional[str] = "greeting"
|
|
53
59
|
r"""Type of the custom message (must be \"greeting\" for now)"""
|
|
54
60
|
|
|
55
61
|
@model_serializer(mode="wrap")
|
|
56
62
|
def serialize_model(self, handler):
|
|
57
|
-
optional_fields = ["label", "rules", "type"]
|
|
63
|
+
optional_fields = ["label", "rules", "config", "type"]
|
|
58
64
|
nullable_fields = ["label"]
|
|
59
65
|
null_default_fields = []
|
|
60
66
|
|
|
@@ -44,6 +44,8 @@ class PromptHistoryTypedDict(TypedDict):
|
|
|
44
44
|
r"""Comments describing the change that resulted in this version"""
|
|
45
45
|
linked_tools: NotRequired[List[PromptHistoryLinkedToolTypedDict]]
|
|
46
46
|
r"""Tools that were linked to this version of the prompt"""
|
|
47
|
+
session_end_tool: NotRequired[Nullable[PromptHistoryLinkedToolTypedDict]]
|
|
48
|
+
r"""Session end tool that was configured on this version of the prompt, if any"""
|
|
47
49
|
|
|
48
50
|
|
|
49
51
|
class PromptHistory(BaseModel):
|
|
@@ -82,6 +84,9 @@ class PromptHistory(BaseModel):
|
|
|
82
84
|
linked_tools: Optional[List[PromptHistoryLinkedTool]] = None
|
|
83
85
|
r"""Tools that were linked to this version of the prompt"""
|
|
84
86
|
|
|
87
|
+
session_end_tool: OptionalNullable[PromptHistoryLinkedTool] = UNSET
|
|
88
|
+
r"""Session end tool that was configured on this version of the prompt, if any"""
|
|
89
|
+
|
|
85
90
|
@model_serializer(mode="wrap")
|
|
86
91
|
def serialize_model(self, handler):
|
|
87
92
|
optional_fields = [
|
|
@@ -89,8 +94,14 @@ class PromptHistory(BaseModel):
|
|
|
89
94
|
"llm_config",
|
|
90
95
|
"comments",
|
|
91
96
|
"linked_tools",
|
|
97
|
+
"session_end_tool",
|
|
98
|
+
]
|
|
99
|
+
nullable_fields = [
|
|
100
|
+
"prompt_description",
|
|
101
|
+
"llm_config",
|
|
102
|
+
"comments",
|
|
103
|
+
"session_end_tool",
|
|
92
104
|
]
|
|
93
|
-
nullable_fields = ["prompt_description", "llm_config", "comments"]
|
|
94
105
|
null_default_fields = []
|
|
95
106
|
|
|
96
107
|
serialized = handler(self)
|
syllable_sdk/pronunciations.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from .basesdk import BaseSDK
|
|
4
|
+
import httpx
|
|
4
5
|
from syllable_sdk import errors, models, utils
|
|
5
6
|
from syllable_sdk._hooks import HookContext
|
|
6
7
|
from syllable_sdk.types import BaseModel, OptionalNullable, UNSET
|
|
@@ -317,7 +318,7 @@ class Pronunciations(BaseSDK):
|
|
|
317
318
|
server_url: Optional[str] = None,
|
|
318
319
|
timeout_ms: Optional[int] = None,
|
|
319
320
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
320
|
-
) ->
|
|
321
|
+
) -> httpx.Response:
|
|
321
322
|
r"""Download Pronunciations Csv
|
|
322
323
|
|
|
323
324
|
:param retries: Override the default retry configuration for this method
|
|
@@ -375,9 +376,7 @@ class Pronunciations(BaseSDK):
|
|
|
375
376
|
)
|
|
376
377
|
|
|
377
378
|
if utils.match_response(http_res, "200", "text/csv"):
|
|
378
|
-
return
|
|
379
|
-
result=http_res, headers=utils.get_response_headers(http_res.headers)
|
|
380
|
-
)
|
|
379
|
+
return http_res
|
|
381
380
|
if utils.match_response(http_res, "4XX", "*"):
|
|
382
381
|
http_res_text = utils.stream_to_text(http_res)
|
|
383
382
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -395,7 +394,7 @@ class Pronunciations(BaseSDK):
|
|
|
395
394
|
server_url: Optional[str] = None,
|
|
396
395
|
timeout_ms: Optional[int] = None,
|
|
397
396
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
398
|
-
) ->
|
|
397
|
+
) -> httpx.Response:
|
|
399
398
|
r"""Download Pronunciations Csv
|
|
400
399
|
|
|
401
400
|
:param retries: Override the default retry configuration for this method
|
|
@@ -453,9 +452,7 @@ class Pronunciations(BaseSDK):
|
|
|
453
452
|
)
|
|
454
453
|
|
|
455
454
|
if utils.match_response(http_res, "200", "text/csv"):
|
|
456
|
-
return
|
|
457
|
-
result=http_res, headers=utils.get_response_headers(http_res.headers)
|
|
458
|
-
)
|
|
455
|
+
return http_res
|
|
459
456
|
if utils.match_response(http_res, "4XX", "*"):
|
|
460
457
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
461
458
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
|
-
from typing import Any, Optional
|
|
3
|
+
from typing import Any, Optional, Type, TypeVar, overload
|
|
4
4
|
|
|
5
5
|
import httpx
|
|
6
6
|
|
|
7
7
|
from .serializers import unmarshal_json
|
|
8
8
|
from syllable_sdk import errors
|
|
9
9
|
|
|
10
|
+
T = TypeVar("T")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@overload
|
|
14
|
+
def unmarshal_json_response(
|
|
15
|
+
typ: Type[T], http_res: httpx.Response, body: Optional[str] = None
|
|
16
|
+
) -> T: ...
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@overload
|
|
20
|
+
def unmarshal_json_response(
|
|
21
|
+
typ: Any, http_res: httpx.Response, body: Optional[str] = None
|
|
22
|
+
) -> Any: ...
|
|
23
|
+
|
|
10
24
|
|
|
11
25
|
def unmarshal_json_response(
|
|
12
26
|
typ: Any, http_res: httpx.Response, body: Optional[str] = None
|
|
@@ -3,7 +3,7 @@ syllable_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU
|
|
|
3
3
|
syllable_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
syllable_sdk/_hooks/sdkhooks.py,sha256=aRu2TMpxilLKDrG6EIy6uQd6IrBH7kaHOoVkd7GIcus,2562
|
|
5
5
|
syllable_sdk/_hooks/types.py,sha256=uwJkn18g4_rLZhVtKdE6Ed5YcCjGWSqVgN9-PWqV7Ho,3053
|
|
6
|
-
syllable_sdk/_version.py,sha256=
|
|
6
|
+
syllable_sdk/_version.py,sha256=sZccEOikz3RkNTZE8L8Yu9UUrSok-X-dpHGB3BLLR_o,470
|
|
7
7
|
syllable_sdk/agents.py,sha256=KV-3_nFZGBOQV0IAfjO3TFhorfr-PV6eeuTl6DL8AqI,46820
|
|
8
8
|
syllable_sdk/basesdk.py,sha256=PCXez-bS_sOzXpRo7awDMzW4zqGJtktHytrlQfG1HNw,12211
|
|
9
9
|
syllable_sdk/batches.py,sha256=I-mV5vzpM3BfO91NLmtwt-GKhrOjf351XWFLrdvIofU,73095
|
|
@@ -29,7 +29,7 @@ syllable_sdk/insights_sdk.py,sha256=_RfPEqpJGTYpGv0kxID2YQb-EbbhZKc82VwlB4xDON4,
|
|
|
29
29
|
syllable_sdk/insights_tools.py,sha256=CcOobBAVx2kS8fj4Qk6eoPanmVpEMK7oH9IFaijDlQs,55143
|
|
30
30
|
syllable_sdk/language_groups.py,sha256=6x4_4TNhVaz-O50iT1hpDQGfoH1OZdIR0-lL4y5Psbg,51531
|
|
31
31
|
syllable_sdk/latency.py,sha256=qJT16MmojZcxXD2-x5i27FplrB4O_fAN264LsHbHckg,7453
|
|
32
|
-
syllable_sdk/models/__init__.py,sha256=
|
|
32
|
+
syllable_sdk/models/__init__.py,sha256=53iDQAXzIPn6qM3Hjutqc37uabZ3bfjZCS76LrDPjFc,96691
|
|
33
33
|
syllable_sdk/models/agent_deleteop.py,sha256=tUbi-gwd4chf2Ba9O9lCvqDQw6YOnn7aheu8OPDzptc,629
|
|
34
34
|
syllable_sdk/models/agent_get_by_idop.py,sha256=vj_xEbhOv3c8n3-B3uQnfTwHWdxYSE4k3Zvr58Yc9A4,484
|
|
35
35
|
syllable_sdk/models/agent_listop.py,sha256=dJdQuIst1TF4xMol9XVdX4xOw8z06jyAQpm46_u0Ysk,5007
|
|
@@ -92,11 +92,12 @@ syllable_sdk/models/createtakeoutresponse.py,sha256=MuO3HWPcpU8T1IXvrcWklhac3P7s
|
|
|
92
92
|
syllable_sdk/models/custom_message_get_by_idop.py,sha256=07SmbsleEoeO7xNyppH9p4oJNjpP45W3N6dR9wrpvVs,518
|
|
93
93
|
syllable_sdk/models/custom_messages_deleteop.py,sha256=3-lNvqQ93OATAHxSFknM0nTl4ciz9i3Pk0wIuYWZipA,665
|
|
94
94
|
syllable_sdk/models/custom_messages_listop.py,sha256=1FpcixhTIQfooFeOLkfPoLu9KwkZ42pPfvNLH8K-pQ0,5089
|
|
95
|
-
syllable_sdk/models/
|
|
95
|
+
syllable_sdk/models/custommessageconfig.py,sha256=UIgrr1AfY38ixnHK5Zzg-Fr1lrkHTp5vg_0FnE6BfJo,1371
|
|
96
|
+
syllable_sdk/models/custommessagecreaterequest.py,sha256=7NSPZCWonJHk3v4vAbyKbboGMHxDN8jnskqIdMfMGW8,2844
|
|
96
97
|
syllable_sdk/models/custommessageproperties.py,sha256=d5QrfThosurEgPFUlZun168xmjcvPlKop9Ay3i87BnI,304
|
|
97
|
-
syllable_sdk/models/custommessageresponse.py,sha256=
|
|
98
|
+
syllable_sdk/models/custommessageresponse.py,sha256=U_MYTR1Npy8qrR82bbWAlHjjU8s3pPcbFit8gKh0174,4577
|
|
98
99
|
syllable_sdk/models/custommessagerule.py,sha256=w97jz-I-riDHSVmq1Qeu7nuW6V91heV0x60XSgGi56o,3280
|
|
99
|
-
syllable_sdk/models/custommessageupdaterequest.py,sha256=
|
|
100
|
+
syllable_sdk/models/custommessageupdaterequest.py,sha256=qGWGu2GLEDT5DtQS9Y1xPnCWhVd-CzF8LmIHZ7ICzj8,2969
|
|
100
101
|
syllable_sdk/models/daotoolresponse.py,sha256=b0bVgo94XvjFgq-Ki5vr044zexGywNzNNbd_WtbunkE,3802
|
|
101
102
|
syllable_sdk/models/dashboard.py,sha256=Q7Tji4r3VKAvrjPRE4NOyRsldyFLHXdie5hBODSdkMM,993
|
|
102
103
|
syllable_sdk/models/dashboardproperties.py,sha256=JhuzlUJK4VHGWalpvKbZfu6LK-KcmP189BwubyfRhYk,362
|
|
@@ -251,7 +252,7 @@ syllable_sdk/models/permissionresponse.py,sha256=UieyRpT5ubQ-08bx3DMdIkGi9KYbJaL
|
|
|
251
252
|
syllable_sdk/models/post_get_dashboardop.py,sha256=hJgtyzQsZ9Qyc5mqpfULcwHqXyAM8JucU5qRq6_VJ9g,504
|
|
252
253
|
syllable_sdk/models/post_list_dashboardop.py,sha256=5A9ntb9WgxBqwysitzuz9rL1rETjfXsxw_L6Ytho3Gg,5055
|
|
253
254
|
syllable_sdk/models/promptcreaterequest.py,sha256=OHKDYI4lu5EzuBAWgoi9skXAZf8ch9oRMbAnL2v3GiQ,4120
|
|
254
|
-
syllable_sdk/models/prompthistory.py,sha256=
|
|
255
|
+
syllable_sdk/models/prompthistory.py,sha256=vXKRV0D5kZMtiCq7KskADQyLQshMo_P564KVOuONc0Q,4520
|
|
255
256
|
syllable_sdk/models/prompthistorylinkedtool.py,sha256=gVLskq9wKSPlaXadgWc6o2ELdKOvqSZIOoUx9RXpVBQ,1351
|
|
256
257
|
syllable_sdk/models/promptllmconfig.py,sha256=l231V2X2d42PrRAhC0xImKTWJBmcAztRrgGeprvtfqI,3213
|
|
257
258
|
syllable_sdk/models/promptllmprovider.py,sha256=nkDRxVE2qld5aX-rSyDO1KpD1nv5OVVEvxVQnl7VWUY,276
|
|
@@ -264,9 +265,8 @@ syllable_sdk/models/prompts_listop.py,sha256=s9iHPBo_MDmtVvwh3bqEFSgxmNVUqjNebO8
|
|
|
264
265
|
syllable_sdk/models/promptupdaterequest.py,sha256=H-PEJ_C9DbHEjwpkyDfbehKPd6OyLmPPBdK11GqtXqM,4221
|
|
265
266
|
syllable_sdk/models/pronunciationoverride.py,sha256=hh40Pm5_foJuS57H-umDw55KMFnYxM_fai5NbLFVu_Y,1120
|
|
266
267
|
syllable_sdk/models/pronunciationoverridesdictionary.py,sha256=VAVif2n6qV2xIYNugb9DT52U33PwW1YXFDIGcFPWuPQ,2693
|
|
267
|
-
syllable_sdk/models/pronunciations_download_csvop.py,sha256=xCoc57YcYPwYjhJ1ZcfvpaDePoEJ4HJuXIgyBSL0hlA,472
|
|
268
268
|
syllable_sdk/models/pronunciationscsvuploadresponse.py,sha256=SjHZfk0je0BPUlYCU5BkO8eR7fup9B1EpKkafjra0JU,773
|
|
269
|
-
syllable_sdk/models/requeststatus.py,sha256=
|
|
269
|
+
syllable_sdk/models/requeststatus.py,sha256=zvE_ov3uTsDY0R2MAMrl2YCVvwkMLO1qREEogFcT5wQ,429
|
|
270
270
|
syllable_sdk/models/rolecreaterequest.py,sha256=6p4WSFxwIeQrDvAy5hqu2_bSMC5o2IvgkX6I3_Tn_iY,1990
|
|
271
271
|
syllable_sdk/models/roleproperties.py,sha256=Qh7Bh9iU_fk6iTahufCdsW-W8aa1MaLb94Z9gv3p9us,368
|
|
272
272
|
syllable_sdk/models/roleresponse.py,sha256=lm-dw0gv14VzuRuYxMqX2M3z7KehUB87lVoAr7V0RAc,2950
|
|
@@ -370,7 +370,7 @@ syllable_sdk/organizations.py,sha256=xe843aVTG2lTMY14LdpBDQCfgSd6hPDc8XacBwILLYU
|
|
|
370
370
|
syllable_sdk/outbound.py,sha256=SKcqICw_VNT4vGDdu6b4TFh55hdA4Nh3QbZHbTs3MIc,902
|
|
371
371
|
syllable_sdk/permissions.py,sha256=AVjhL5dMyMPACBpDZBxcocon4_OF5NqXooFQNFeGlvI,6895
|
|
372
372
|
syllable_sdk/prompts.py,sha256=qu4yha2PdiG5ntsGjOgZIlwbRFaFlaCzvcxbm4cYKC0,53372
|
|
373
|
-
syllable_sdk/pronunciations.py,sha256=
|
|
373
|
+
syllable_sdk/pronunciations.py,sha256=pubjPXB4TzcyxupwgJGqECaYw54Y_5iFRymMMYtpO8Y,32667
|
|
374
374
|
syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
375
375
|
syllable_sdk/roles.py,sha256=zt9FWrBptDZ4Lz3_aJYetvkEVdxSHE9fGXeRlR0MLhk,40394
|
|
376
376
|
syllable_sdk/sdk.py,sha256=pokZi3ctgGEHa--dfC4taqX_wihqRxruFfKn8IIPTVM,16815
|
|
@@ -402,12 +402,12 @@ syllable_sdk/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4
|
|
|
402
402
|
syllable_sdk/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
|
403
403
|
syllable_sdk/utils/security.py,sha256=ISsENQVLMQAPDsJ09g-m67Bs9YaS1-H-Hhw89RBJA3E,6037
|
|
404
404
|
syllable_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
|
|
405
|
-
syllable_sdk/utils/unmarshal_json_response.py,sha256=
|
|
405
|
+
syllable_sdk/utils/unmarshal_json_response.py,sha256=DwB7Hxdo9JjWFMqsxsTznV6d_MIlLLLz-tq04at_X9s,877
|
|
406
406
|
syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
407
407
|
syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
408
408
|
syllable_sdk/v1.py,sha256=BuA9D8PTM3ACw7t2p_wd6bIZblDM1JF8Scx0U2GPpCQ,53476
|
|
409
409
|
syllable_sdk/voice_groups.py,sha256=m68HbT6z6SWtGWPoZaFFu6NIyNYIG7H9H5QkQuzlTQU,48512
|
|
410
410
|
syllable_sdk/workflows.py,sha256=xHWT4Wl65qw2jvNZ5xF_MwpR5xd5147cSlQE_6gvfSo,64809
|
|
411
|
-
syllable_sdk-0.41.
|
|
412
|
-
syllable_sdk-0.41.
|
|
413
|
-
syllable_sdk-0.41.
|
|
411
|
+
syllable_sdk-0.41.20.dist-info/METADATA,sha256=j47ApnaDDFmXiT6Eb_wECMuCi3t2N2XIunLk8K-Woeg,49729
|
|
412
|
+
syllable_sdk-0.41.20.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
413
|
+
syllable_sdk-0.41.20.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
import httpx
|
|
5
|
-
from syllable_sdk.types import BaseModel
|
|
6
|
-
from typing import Dict, List
|
|
7
|
-
from typing_extensions import TypedDict
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class PronunciationsDownloadCsvResponseTypedDict(TypedDict):
|
|
11
|
-
headers: Dict[str, List[str]]
|
|
12
|
-
result: httpx.Response
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class PronunciationsDownloadCsvResponse(BaseModel):
|
|
16
|
-
headers: Dict[str, List[str]]
|
|
17
|
-
|
|
18
|
-
result: httpx.Response
|
|
File without changes
|