syllable-sdk 0.41.3__py3-none-any.whl → 0.41.14__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/prompthistory.py +12 -1
- syllable_sdk/models/requeststatus.py +1 -0
- syllable_sdk/models/telephonyconfigurations.py +7 -0
- {syllable_sdk-0.41.3.dist-info → syllable_sdk-0.41.14.dist-info}/METADATA +1 -1
- {syllable_sdk-0.41.3.dist-info → syllable_sdk-0.41.14.dist-info}/RECORD +7 -7
- {syllable_sdk-0.41.3.dist-info → syllable_sdk-0.41.14.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.14"
|
|
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.751.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.41.14 2.751.0 0.0.2 syllable-sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -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)
|
|
@@ -29,6 +29,8 @@ class TelephonyConfigurationsTypedDict(TypedDict):
|
|
|
29
29
|
r"""Whether passive speech input is enabled (input while assistant is speaking)"""
|
|
30
30
|
passive_input_start: NotRequired[Nullable[float]]
|
|
31
31
|
r"""Waiting time to start passive input (in seconds) after start of assistant speech"""
|
|
32
|
+
async_enabled: NotRequired[Nullable[bool]]
|
|
33
|
+
r"""Whether asynchronous mode is enabled for the conversation"""
|
|
32
34
|
|
|
33
35
|
|
|
34
36
|
class TelephonyConfigurations(BaseModel):
|
|
@@ -56,6 +58,9 @@ class TelephonyConfigurations(BaseModel):
|
|
|
56
58
|
passive_input_start: OptionalNullable[float] = UNSET
|
|
57
59
|
r"""Waiting time to start passive input (in seconds) after start of assistant speech"""
|
|
58
60
|
|
|
61
|
+
async_enabled: OptionalNullable[bool] = UNSET
|
|
62
|
+
r"""Whether asynchronous mode is enabled for the conversation"""
|
|
63
|
+
|
|
59
64
|
@model_serializer(mode="wrap")
|
|
60
65
|
def serialize_model(self, handler):
|
|
61
66
|
optional_fields = [
|
|
@@ -67,6 +72,7 @@ class TelephonyConfigurations(BaseModel):
|
|
|
67
72
|
"interruptibility",
|
|
68
73
|
"passive_speech_input_enabled",
|
|
69
74
|
"passive_input_start",
|
|
75
|
+
"async_enabled",
|
|
70
76
|
]
|
|
71
77
|
nullable_fields = [
|
|
72
78
|
"pre_input_timeout",
|
|
@@ -77,6 +83,7 @@ class TelephonyConfigurations(BaseModel):
|
|
|
77
83
|
"interruptibility",
|
|
78
84
|
"passive_speech_input_enabled",
|
|
79
85
|
"passive_input_start",
|
|
86
|
+
"async_enabled",
|
|
80
87
|
]
|
|
81
88
|
null_default_fields = []
|
|
82
89
|
|
|
@@ -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=GrPK3l2ACP_fX2F5LQdhbrPjGRgwjmZL47dmFPStBx8,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
|
|
@@ -251,7 +251,7 @@ syllable_sdk/models/permissionresponse.py,sha256=UieyRpT5ubQ-08bx3DMdIkGi9KYbJaL
|
|
|
251
251
|
syllable_sdk/models/post_get_dashboardop.py,sha256=hJgtyzQsZ9Qyc5mqpfULcwHqXyAM8JucU5qRq6_VJ9g,504
|
|
252
252
|
syllable_sdk/models/post_list_dashboardop.py,sha256=5A9ntb9WgxBqwysitzuz9rL1rETjfXsxw_L6Ytho3Gg,5055
|
|
253
253
|
syllable_sdk/models/promptcreaterequest.py,sha256=OHKDYI4lu5EzuBAWgoi9skXAZf8ch9oRMbAnL2v3GiQ,4120
|
|
254
|
-
syllable_sdk/models/prompthistory.py,sha256=
|
|
254
|
+
syllable_sdk/models/prompthistory.py,sha256=vXKRV0D5kZMtiCq7KskADQyLQshMo_P564KVOuONc0Q,4520
|
|
255
255
|
syllable_sdk/models/prompthistorylinkedtool.py,sha256=gVLskq9wKSPlaXadgWc6o2ELdKOvqSZIOoUx9RXpVBQ,1351
|
|
256
256
|
syllable_sdk/models/promptllmconfig.py,sha256=l231V2X2d42PrRAhC0xImKTWJBmcAztRrgGeprvtfqI,3213
|
|
257
257
|
syllable_sdk/models/promptllmprovider.py,sha256=nkDRxVE2qld5aX-rSyDO1KpD1nv5OVVEvxVQnl7VWUY,276
|
|
@@ -266,7 +266,7 @@ syllable_sdk/models/pronunciationoverride.py,sha256=hh40Pm5_foJuS57H-umDw55KMFnY
|
|
|
266
266
|
syllable_sdk/models/pronunciationoverridesdictionary.py,sha256=VAVif2n6qV2xIYNugb9DT52U33PwW1YXFDIGcFPWuPQ,2693
|
|
267
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
|
|
@@ -311,7 +311,7 @@ syllable_sdk/models/takeouts_get_by_job_idop.py,sha256=vFpjQ3wUfS3UeD3pkX6S07AJw
|
|
|
311
311
|
syllable_sdk/models/takeouts_get_fileop.py,sha256=x_BGUgt6co6HOHFPOsSIOxpZ8D4KVIjBv7ZifL0l0YQ,620
|
|
312
312
|
syllable_sdk/models/takeoutstatusresponse.py,sha256=U83D5jjff7LMEdFg7PAPfO-RSDW094TiXhTsnrAHUPs,1766
|
|
313
313
|
syllable_sdk/models/targetmodes.py,sha256=dR2veCCcFJRRwz1tUqq41d5JvChpcamnUQXpEx1dEnw,309
|
|
314
|
-
syllable_sdk/models/telephonyconfigurations.py,sha256=
|
|
314
|
+
syllable_sdk/models/telephonyconfigurations.py,sha256=p2fsLNlRJHc_2e1JQMi3f4kPpwMDaYigBFLstCkYSRc,4256
|
|
315
315
|
syllable_sdk/models/testmessage.py,sha256=e3kHJe_E78zGcNKZ5azTTcZjQxtQUsf3F8GPyUDCIPA,3365
|
|
316
316
|
syllable_sdk/models/testmessageresponse.py,sha256=Ya7G0PtfNzz3B5CSILrarNclcoEqkwmSE-Qi5ioRAfo,2335
|
|
317
317
|
syllable_sdk/models/tool_deleteop.py,sha256=M_vEFwiOgFbgrqnKRypbrObtU8EIavsOR9hPvVq_Ups,629
|
|
@@ -408,6 +408,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
|
|
|
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.14.dist-info/METADATA,sha256=q2liWdIf2AybyfCw9HgERDJfdMNyQBUYe2lSn1Pd7ls,49729
|
|
412
|
+
syllable_sdk-0.41.14.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
413
|
+
syllable_sdk-0.41.14.dist-info/RECORD,,
|
|
File without changes
|