syllable-sdk 0.41.23__py3-none-any.whl → 0.43.1__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 +406 -3
- syllable_sdk/models/callaction.py +116 -0
- syllable_sdk/models/caseexpression.py +17 -0
- syllable_sdk/models/celexpression.py +31 -0
- syllable_sdk/models/conditionaltext.py +94 -0
- syllable_sdk/models/conditionalvalue.py +131 -0
- syllable_sdk/models/context.py +112 -0
- syllable_sdk/models/contexttaskmetadata.py +55 -0
- syllable_sdk/models/contexttoolinfo.py +57 -0
- syllable_sdk/models/eventtask.py +98 -0
- syllable_sdk/models/eventtaskevents.py +83 -0
- syllable_sdk/models/expressiontask.py +150 -0
- syllable_sdk/models/expressiontaskevents.py +116 -0
- syllable_sdk/models/incrementaction.py +106 -0
- syllable_sdk/models/inputparameter.py +106 -0
- syllable_sdk/models/jmespathexpression.py +33 -0
- syllable_sdk/models/loadtoolfromfiletask.py +112 -0
- syllable_sdk/models/nextstep.py +97 -0
- syllable_sdk/models/saveaction.py +103 -0
- syllable_sdk/models/sayaction.py +108 -0
- syllable_sdk/models/session.py +7 -0
- syllable_sdk/models/setvalueaction.py +140 -0
- syllable_sdk/models/step.py +65 -0
- syllable_sdk/models/stepeventactions.py +145 -0
- syllable_sdk/models/stepstask.py +98 -0
- syllable_sdk/models/steptools.py +67 -0
- syllable_sdk/models/tooldefinition.py +11 -3
- syllable_sdk/models/variable.py +149 -0
- {syllable_sdk-0.41.23.dist-info → syllable_sdk-0.43.1.dist-info}/METADATA +1 -1
- {syllable_sdk-0.41.23.dist-info → syllable_sdk-0.43.1.dist-info}/RECORD +32 -7
- {syllable_sdk-0.41.23.dist-info → syllable_sdk-0.43.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .callaction import CallAction, CallActionTypedDict
|
|
5
|
+
from .incrementaction import IncrementAction, IncrementActionTypedDict
|
|
6
|
+
from .saveaction import SaveAction, SaveActionTypedDict
|
|
7
|
+
from .sayaction import SayAction, SayActionTypedDict
|
|
8
|
+
from .setvalueaction import SetValueAction, SetValueActionTypedDict
|
|
9
|
+
from pydantic import Discriminator, Tag, model_serializer
|
|
10
|
+
from syllable_sdk.types import (
|
|
11
|
+
BaseModel,
|
|
12
|
+
Nullable,
|
|
13
|
+
OptionalNullable,
|
|
14
|
+
UNSET,
|
|
15
|
+
UNSET_SENTINEL,
|
|
16
|
+
)
|
|
17
|
+
from syllable_sdk.utils import get_discriminator
|
|
18
|
+
from typing import List, Union
|
|
19
|
+
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
StepEventActionsStartTypedDict = TypeAliasType(
|
|
23
|
+
"StepEventActionsStartTypedDict",
|
|
24
|
+
Union[
|
|
25
|
+
SayActionTypedDict,
|
|
26
|
+
SaveActionTypedDict,
|
|
27
|
+
IncrementActionTypedDict,
|
|
28
|
+
SetValueActionTypedDict,
|
|
29
|
+
CallActionTypedDict,
|
|
30
|
+
],
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
StepEventActionsStart = Annotated[
|
|
35
|
+
Union[
|
|
36
|
+
Annotated[CallAction, Tag("call")],
|
|
37
|
+
Annotated[IncrementAction, Tag("inc")],
|
|
38
|
+
Annotated[SaveAction, Tag("save")],
|
|
39
|
+
Annotated[SayAction, Tag("say")],
|
|
40
|
+
Annotated[SetValueAction, Tag("set")],
|
|
41
|
+
],
|
|
42
|
+
Discriminator(lambda m: get_discriminator(m, "action", "action")),
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
EnterTypedDict = TypeAliasType(
|
|
47
|
+
"EnterTypedDict",
|
|
48
|
+
Union[
|
|
49
|
+
IncrementActionTypedDict,
|
|
50
|
+
SayActionTypedDict,
|
|
51
|
+
SaveActionTypedDict,
|
|
52
|
+
SetValueActionTypedDict,
|
|
53
|
+
CallActionTypedDict,
|
|
54
|
+
],
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
Enter = Annotated[
|
|
59
|
+
Union[
|
|
60
|
+
Annotated[CallAction, Tag("call")],
|
|
61
|
+
Annotated[IncrementAction, Tag("inc")],
|
|
62
|
+
Annotated[SaveAction, Tag("save")],
|
|
63
|
+
Annotated[SayAction, Tag("say")],
|
|
64
|
+
Annotated[SetValueAction, Tag("set")],
|
|
65
|
+
],
|
|
66
|
+
Discriminator(lambda m: get_discriminator(m, "action", "action")),
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
StepEventActionsSubmitTypedDict = TypeAliasType(
|
|
71
|
+
"StepEventActionsSubmitTypedDict",
|
|
72
|
+
Union[
|
|
73
|
+
IncrementActionTypedDict,
|
|
74
|
+
SayActionTypedDict,
|
|
75
|
+
SaveActionTypedDict,
|
|
76
|
+
SetValueActionTypedDict,
|
|
77
|
+
CallActionTypedDict,
|
|
78
|
+
],
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
StepEventActionsSubmit = Annotated[
|
|
83
|
+
Union[
|
|
84
|
+
Annotated[CallAction, Tag("call")],
|
|
85
|
+
Annotated[IncrementAction, Tag("inc")],
|
|
86
|
+
Annotated[SaveAction, Tag("save")],
|
|
87
|
+
Annotated[SayAction, Tag("say")],
|
|
88
|
+
Annotated[SetValueAction, Tag("set")],
|
|
89
|
+
],
|
|
90
|
+
Discriminator(lambda m: get_discriminator(m, "action", "action")),
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class StepEventActionsTypedDict(TypedDict):
|
|
95
|
+
r"""Actions to perform when events occur (enter, submit)."""
|
|
96
|
+
|
|
97
|
+
start: NotRequired[Nullable[List[StepEventActionsStartTypedDict]]]
|
|
98
|
+
r"""Actions to execute on the first input from the user."""
|
|
99
|
+
enter: NotRequired[Nullable[List[EnterTypedDict]]]
|
|
100
|
+
r"""Actions to execute when entering a step (before collecting inputs)."""
|
|
101
|
+
submit: NotRequired[Nullable[List[StepEventActionsSubmitTypedDict]]]
|
|
102
|
+
r"""Actions to execute when the tool/step is submitted by the LLM."""
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class StepEventActions(BaseModel):
|
|
106
|
+
r"""Actions to perform when events occur (enter, submit)."""
|
|
107
|
+
|
|
108
|
+
start: OptionalNullable[List[StepEventActionsStart]] = UNSET
|
|
109
|
+
r"""Actions to execute on the first input from the user."""
|
|
110
|
+
|
|
111
|
+
enter: OptionalNullable[List[Enter]] = UNSET
|
|
112
|
+
r"""Actions to execute when entering a step (before collecting inputs)."""
|
|
113
|
+
|
|
114
|
+
submit: OptionalNullable[List[StepEventActionsSubmit]] = UNSET
|
|
115
|
+
r"""Actions to execute when the tool/step is submitted by the LLM."""
|
|
116
|
+
|
|
117
|
+
@model_serializer(mode="wrap")
|
|
118
|
+
def serialize_model(self, handler):
|
|
119
|
+
optional_fields = ["start", "enter", "submit"]
|
|
120
|
+
nullable_fields = ["start", "enter", "submit"]
|
|
121
|
+
null_default_fields = []
|
|
122
|
+
|
|
123
|
+
serialized = handler(self)
|
|
124
|
+
|
|
125
|
+
m = {}
|
|
126
|
+
|
|
127
|
+
for n, f in type(self).model_fields.items():
|
|
128
|
+
k = f.alias or n
|
|
129
|
+
val = serialized.get(k)
|
|
130
|
+
serialized.pop(k, None)
|
|
131
|
+
|
|
132
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
133
|
+
is_set = (
|
|
134
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
135
|
+
or k in null_default_fields
|
|
136
|
+
) # pylint: disable=no-member
|
|
137
|
+
|
|
138
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
139
|
+
m[k] = val
|
|
140
|
+
elif val != UNSET_SENTINEL and (
|
|
141
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
142
|
+
):
|
|
143
|
+
m[k] = val
|
|
144
|
+
|
|
145
|
+
return m
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .contexttaskmetadata import ContextTaskMetadata, ContextTaskMetadataTypedDict
|
|
5
|
+
from .contexttoolinfo import ContextToolInfo, ContextToolInfoTypedDict
|
|
6
|
+
from .step import Step, StepTypedDict
|
|
7
|
+
from .variable import Variable, VariableTypedDict
|
|
8
|
+
import pydantic
|
|
9
|
+
from pydantic import model_serializer
|
|
10
|
+
from pydantic.functional_validators import AfterValidator
|
|
11
|
+
from syllable_sdk.types import (
|
|
12
|
+
BaseModel,
|
|
13
|
+
Nullable,
|
|
14
|
+
OptionalNullable,
|
|
15
|
+
UNSET,
|
|
16
|
+
UNSET_SENTINEL,
|
|
17
|
+
)
|
|
18
|
+
from syllable_sdk.utils import validate_const
|
|
19
|
+
from typing import Any, Dict, List, Literal, Optional
|
|
20
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class StepsTaskTypedDict(TypedDict):
|
|
24
|
+
id: NotRequired[Nullable[str]]
|
|
25
|
+
r"""A unique identifier for the task."""
|
|
26
|
+
config: NotRequired[Nullable[Dict[str, Any]]]
|
|
27
|
+
variables: NotRequired[Nullable[List[VariableTypedDict]]]
|
|
28
|
+
metadata: NotRequired[Nullable[ContextTaskMetadataTypedDict]]
|
|
29
|
+
tool: NotRequired[Nullable[ContextToolInfoTypedDict]]
|
|
30
|
+
type: Literal["steps"]
|
|
31
|
+
version: Literal["v1alpha"]
|
|
32
|
+
steps: NotRequired[List[StepTypedDict]]
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class StepsTask(BaseModel):
|
|
36
|
+
id: OptionalNullable[str] = UNSET
|
|
37
|
+
r"""A unique identifier for the task."""
|
|
38
|
+
|
|
39
|
+
config: OptionalNullable[Dict[str, Any]] = UNSET
|
|
40
|
+
|
|
41
|
+
variables: OptionalNullable[List[Variable]] = UNSET
|
|
42
|
+
|
|
43
|
+
metadata: OptionalNullable[ContextTaskMetadata] = UNSET
|
|
44
|
+
|
|
45
|
+
tool: OptionalNullable[ContextToolInfo] = UNSET
|
|
46
|
+
|
|
47
|
+
TYPE: Annotated[
|
|
48
|
+
Annotated[Optional[Literal["steps"]], AfterValidator(validate_const("steps"))],
|
|
49
|
+
pydantic.Field(alias="type"),
|
|
50
|
+
] = "steps"
|
|
51
|
+
|
|
52
|
+
VERSION: Annotated[
|
|
53
|
+
Annotated[
|
|
54
|
+
Optional[Literal["v1alpha"]], AfterValidator(validate_const("v1alpha"))
|
|
55
|
+
],
|
|
56
|
+
pydantic.Field(alias="version"),
|
|
57
|
+
] = "v1alpha"
|
|
58
|
+
|
|
59
|
+
steps: Optional[List[Step]] = None
|
|
60
|
+
|
|
61
|
+
@model_serializer(mode="wrap")
|
|
62
|
+
def serialize_model(self, handler):
|
|
63
|
+
optional_fields = [
|
|
64
|
+
"id",
|
|
65
|
+
"config",
|
|
66
|
+
"variables",
|
|
67
|
+
"metadata",
|
|
68
|
+
"tool",
|
|
69
|
+
"type",
|
|
70
|
+
"version",
|
|
71
|
+
"steps",
|
|
72
|
+
]
|
|
73
|
+
nullable_fields = ["id", "config", "variables", "metadata", "tool"]
|
|
74
|
+
null_default_fields = []
|
|
75
|
+
|
|
76
|
+
serialized = handler(self)
|
|
77
|
+
|
|
78
|
+
m = {}
|
|
79
|
+
|
|
80
|
+
for n, f in type(self).model_fields.items():
|
|
81
|
+
k = f.alias or n
|
|
82
|
+
val = serialized.get(k)
|
|
83
|
+
serialized.pop(k, None)
|
|
84
|
+
|
|
85
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
86
|
+
is_set = (
|
|
87
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
88
|
+
or k in null_default_fields
|
|
89
|
+
) # pylint: disable=no-member
|
|
90
|
+
|
|
91
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
92
|
+
m[k] = val
|
|
93
|
+
elif val != UNSET_SENTINEL and (
|
|
94
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
95
|
+
):
|
|
96
|
+
m[k] = val
|
|
97
|
+
|
|
98
|
+
return m
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from pydantic import model_serializer
|
|
5
|
+
from syllable_sdk.types import (
|
|
6
|
+
BaseModel,
|
|
7
|
+
Nullable,
|
|
8
|
+
OptionalNullable,
|
|
9
|
+
UNSET,
|
|
10
|
+
UNSET_SENTINEL,
|
|
11
|
+
)
|
|
12
|
+
from typing import List
|
|
13
|
+
from typing_extensions import NotRequired, TypedDict
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class StepToolsTypedDict(TypedDict):
|
|
17
|
+
r"""Configuration for tools available in a step."""
|
|
18
|
+
|
|
19
|
+
call: NotRequired[Nullable[bool]]
|
|
20
|
+
r"""Whether to force immediate tool call without user interaction."""
|
|
21
|
+
allow: NotRequired[Nullable[List[str]]]
|
|
22
|
+
r"""List of allowed tool names for this step."""
|
|
23
|
+
allow_go_to_step: NotRequired[Nullable[bool]]
|
|
24
|
+
r"""Whether to expose the go_to_step escape hatch to the LLM. Defaults to disabled."""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class StepTools(BaseModel):
|
|
28
|
+
r"""Configuration for tools available in a step."""
|
|
29
|
+
|
|
30
|
+
call: OptionalNullable[bool] = UNSET
|
|
31
|
+
r"""Whether to force immediate tool call without user interaction."""
|
|
32
|
+
|
|
33
|
+
allow: OptionalNullable[List[str]] = UNSET
|
|
34
|
+
r"""List of allowed tool names for this step."""
|
|
35
|
+
|
|
36
|
+
allow_go_to_step: OptionalNullable[bool] = UNSET
|
|
37
|
+
r"""Whether to expose the go_to_step escape hatch to the LLM. Defaults to disabled."""
|
|
38
|
+
|
|
39
|
+
@model_serializer(mode="wrap")
|
|
40
|
+
def serialize_model(self, handler):
|
|
41
|
+
optional_fields = ["call", "allow", "allow_go_to_step"]
|
|
42
|
+
nullable_fields = ["call", "allow", "allow_go_to_step"]
|
|
43
|
+
null_default_fields = []
|
|
44
|
+
|
|
45
|
+
serialized = handler(self)
|
|
46
|
+
|
|
47
|
+
m = {}
|
|
48
|
+
|
|
49
|
+
for n, f in type(self).model_fields.items():
|
|
50
|
+
k = f.alias or n
|
|
51
|
+
val = serialized.get(k)
|
|
52
|
+
serialized.pop(k, None)
|
|
53
|
+
|
|
54
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
55
|
+
is_set = (
|
|
56
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
57
|
+
or k in null_default_fields
|
|
58
|
+
) # pylint: disable=no-member
|
|
59
|
+
|
|
60
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
61
|
+
m[k] = val
|
|
62
|
+
elif val != UNSET_SENTINEL and (
|
|
63
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
64
|
+
):
|
|
65
|
+
m[k] = val
|
|
66
|
+
|
|
67
|
+
return m
|
|
@@ -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 .context import Context, ContextTypedDict
|
|
4
5
|
from .internaltool import InternalTool, InternalToolTypedDict
|
|
5
6
|
from .statictoolparameter import StaticToolParameter, StaticToolParameterTypedDict
|
|
6
7
|
from .toolhttpendpoint import ToolHTTPEndpoint, ToolHTTPEndpointTypedDict
|
|
@@ -19,7 +20,7 @@ from typing import Any, Dict, List, Union
|
|
|
19
20
|
from typing_extensions import NotRequired, TypeAliasType, TypedDict
|
|
20
21
|
|
|
21
22
|
|
|
22
|
-
class
|
|
23
|
+
class ToolDefinitionType(str, Enum):
|
|
23
24
|
ACTION = "action"
|
|
24
25
|
ENDPOINT = "endpoint"
|
|
25
26
|
CONTEXT = "context"
|
|
@@ -41,10 +42,12 @@ class ToolDefinitionTypedDict(TypedDict):
|
|
|
41
42
|
|
|
42
43
|
tool: InternalToolTypedDict
|
|
43
44
|
r"""A tool definition to be used by the OpenAI API."""
|
|
44
|
-
type: NotRequired[Nullable[
|
|
45
|
+
type: NotRequired[Nullable[ToolDefinitionType]]
|
|
45
46
|
r"""The action to take when the LLM calls the tool."""
|
|
46
47
|
endpoint: NotRequired[Nullable[ToolHTTPEndpointTypedDict]]
|
|
47
48
|
r"""The configuration for an HTTP API call."""
|
|
49
|
+
context: NotRequired[Nullable[ContextTypedDict]]
|
|
50
|
+
r"""The configuration for a context tool."""
|
|
48
51
|
defaults: NotRequired[Nullable[DefaultsTypedDict]]
|
|
49
52
|
r"""The default values for the parameters of the function/tool call."""
|
|
50
53
|
static_parameters: NotRequired[Nullable[List[StaticToolParameterTypedDict]]]
|
|
@@ -61,12 +64,15 @@ class ToolDefinition(BaseModel):
|
|
|
61
64
|
tool: InternalTool
|
|
62
65
|
r"""A tool definition to be used by the OpenAI API."""
|
|
63
66
|
|
|
64
|
-
type: OptionalNullable[
|
|
67
|
+
type: OptionalNullable[ToolDefinitionType] = UNSET
|
|
65
68
|
r"""The action to take when the LLM calls the tool."""
|
|
66
69
|
|
|
67
70
|
endpoint: OptionalNullable[ToolHTTPEndpoint] = UNSET
|
|
68
71
|
r"""The configuration for an HTTP API call."""
|
|
69
72
|
|
|
73
|
+
context: OptionalNullable[Context] = UNSET
|
|
74
|
+
r"""The configuration for a context tool."""
|
|
75
|
+
|
|
70
76
|
defaults: OptionalNullable[Defaults] = UNSET
|
|
71
77
|
r"""The default values for the parameters of the function/tool call."""
|
|
72
78
|
|
|
@@ -84,6 +90,7 @@ class ToolDefinition(BaseModel):
|
|
|
84
90
|
optional_fields = [
|
|
85
91
|
"type",
|
|
86
92
|
"endpoint",
|
|
93
|
+
"context",
|
|
87
94
|
"defaults",
|
|
88
95
|
"static_parameters",
|
|
89
96
|
"result",
|
|
@@ -92,6 +99,7 @@ class ToolDefinition(BaseModel):
|
|
|
92
99
|
nullable_fields = [
|
|
93
100
|
"type",
|
|
94
101
|
"endpoint",
|
|
102
|
+
"context",
|
|
95
103
|
"defaults",
|
|
96
104
|
"static_parameters",
|
|
97
105
|
"result",
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .caseexpression import CaseExpression, CaseExpressionTypedDict
|
|
5
|
+
from .celexpression import CelExpression, CelExpressionTypedDict
|
|
6
|
+
from .jmespathexpression import JMESPathExpression, JMESPathExpressionTypedDict
|
|
7
|
+
from enum import Enum
|
|
8
|
+
import pydantic
|
|
9
|
+
from pydantic import Discriminator, Tag, model_serializer
|
|
10
|
+
from syllable_sdk.types import (
|
|
11
|
+
BaseModel,
|
|
12
|
+
Nullable,
|
|
13
|
+
OptionalNullable,
|
|
14
|
+
UNSET,
|
|
15
|
+
UNSET_SENTINEL,
|
|
16
|
+
)
|
|
17
|
+
from syllable_sdk.utils import get_discriminator
|
|
18
|
+
from typing import Any, List, Union
|
|
19
|
+
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
VariableValueFrom1TypedDict = TypeAliasType(
|
|
23
|
+
"VariableValueFrom1TypedDict",
|
|
24
|
+
Union[CelExpressionTypedDict, JMESPathExpressionTypedDict],
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
VariableValueFrom1 = Annotated[
|
|
29
|
+
Union[
|
|
30
|
+
Annotated[CelExpression, Tag("cel")],
|
|
31
|
+
Annotated[JMESPathExpression, Tag("jmespath")],
|
|
32
|
+
Annotated[JMESPathExpression, Tag("jp")],
|
|
33
|
+
],
|
|
34
|
+
Discriminator(lambda m: get_discriminator(m, "type", "type")),
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
VariableValueFrom2TypedDict = TypeAliasType(
|
|
39
|
+
"VariableValueFrom2TypedDict",
|
|
40
|
+
Union[CaseExpressionTypedDict, VariableValueFrom1TypedDict, str],
|
|
41
|
+
)
|
|
42
|
+
r"""Expression to compute initial value (mutually exclusive with value)."""
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
VariableValueFrom2 = TypeAliasType(
|
|
46
|
+
"VariableValueFrom2", Union[CaseExpression, VariableValueFrom1, str]
|
|
47
|
+
)
|
|
48
|
+
r"""Expression to compute initial value (mutually exclusive with value)."""
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class VariableType(str, Enum):
|
|
52
|
+
STRING = "string"
|
|
53
|
+
NUMBER = "number"
|
|
54
|
+
INTEGER = "integer"
|
|
55
|
+
BOOLEAN = "boolean"
|
|
56
|
+
OBJECT = "object"
|
|
57
|
+
ARRAY = "array"
|
|
58
|
+
NULL = "null"
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class VariableTypedDict(TypedDict):
|
|
62
|
+
name: str
|
|
63
|
+
r"""The name of the property."""
|
|
64
|
+
value: NotRequired[Nullable[Any]]
|
|
65
|
+
r"""Initial value of the variable."""
|
|
66
|
+
value_from: NotRequired[Nullable[VariableValueFrom2TypedDict]]
|
|
67
|
+
r"""Expression to compute initial value (mutually exclusive with value)."""
|
|
68
|
+
type: NotRequired[Nullable[VariableType]]
|
|
69
|
+
description: NotRequired[Nullable[str]]
|
|
70
|
+
title: NotRequired[Nullable[str]]
|
|
71
|
+
format_: NotRequired[Nullable[str]]
|
|
72
|
+
pattern: NotRequired[Nullable[str]]
|
|
73
|
+
enum: NotRequired[Nullable[List[str]]]
|
|
74
|
+
examples: NotRequired[Nullable[List[Any]]]
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class Variable(BaseModel):
|
|
78
|
+
name: str
|
|
79
|
+
r"""The name of the property."""
|
|
80
|
+
|
|
81
|
+
value: OptionalNullable[Any] = UNSET
|
|
82
|
+
r"""Initial value of the variable."""
|
|
83
|
+
|
|
84
|
+
value_from: OptionalNullable[VariableValueFrom2] = UNSET
|
|
85
|
+
r"""Expression to compute initial value (mutually exclusive with value)."""
|
|
86
|
+
|
|
87
|
+
type: OptionalNullable[VariableType] = UNSET
|
|
88
|
+
|
|
89
|
+
description: OptionalNullable[str] = UNSET
|
|
90
|
+
|
|
91
|
+
title: OptionalNullable[str] = UNSET
|
|
92
|
+
|
|
93
|
+
format_: Annotated[OptionalNullable[str], pydantic.Field(alias="format")] = UNSET
|
|
94
|
+
|
|
95
|
+
pattern: OptionalNullable[str] = UNSET
|
|
96
|
+
|
|
97
|
+
enum: OptionalNullable[List[str]] = UNSET
|
|
98
|
+
|
|
99
|
+
examples: OptionalNullable[List[Any]] = UNSET
|
|
100
|
+
|
|
101
|
+
@model_serializer(mode="wrap")
|
|
102
|
+
def serialize_model(self, handler):
|
|
103
|
+
optional_fields = [
|
|
104
|
+
"value",
|
|
105
|
+
"value_from",
|
|
106
|
+
"type",
|
|
107
|
+
"description",
|
|
108
|
+
"title",
|
|
109
|
+
"format",
|
|
110
|
+
"pattern",
|
|
111
|
+
"enum",
|
|
112
|
+
"examples",
|
|
113
|
+
]
|
|
114
|
+
nullable_fields = [
|
|
115
|
+
"value",
|
|
116
|
+
"value_from",
|
|
117
|
+
"type",
|
|
118
|
+
"description",
|
|
119
|
+
"title",
|
|
120
|
+
"format",
|
|
121
|
+
"pattern",
|
|
122
|
+
"enum",
|
|
123
|
+
"examples",
|
|
124
|
+
]
|
|
125
|
+
null_default_fields = []
|
|
126
|
+
|
|
127
|
+
serialized = handler(self)
|
|
128
|
+
|
|
129
|
+
m = {}
|
|
130
|
+
|
|
131
|
+
for n, f in type(self).model_fields.items():
|
|
132
|
+
k = f.alias or n
|
|
133
|
+
val = serialized.get(k)
|
|
134
|
+
serialized.pop(k, None)
|
|
135
|
+
|
|
136
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
137
|
+
is_set = (
|
|
138
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
139
|
+
or k in null_default_fields
|
|
140
|
+
) # pylint: disable=no-member
|
|
141
|
+
|
|
142
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
143
|
+
m[k] = val
|
|
144
|
+
elif val != UNSET_SENTINEL and (
|
|
145
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
146
|
+
):
|
|
147
|
+
m[k] = val
|
|
148
|
+
|
|
149
|
+
return m
|
|
@@ -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=RlCnUoa7iJzYcQZsLrzqjN8v52iEFxqdw4dXOkHV1NQ,468
|
|
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=p_T4VvLdmxQF9BIwlGoKuCtJtRi2usC1JR3s_EnNNjo,109379
|
|
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
|
|
@@ -61,7 +61,10 @@ syllable_sdk/models/body_organizations_update.py,sha256=8Ofb8sQ3T4XxBqC1yBzPmxO6
|
|
|
61
61
|
syllable_sdk/models/body_outbound_batch_delete.py,sha256=c-3MzefgLGTnZiYtLKb28AkOMwtCImkMLJg932g5PLY,425
|
|
62
62
|
syllable_sdk/models/body_outbound_batch_upload.py,sha256=_W1aXZOpZX1KO1GaUJhMAkjEgV1v9nLQazyWcQ6AjYY,1313
|
|
63
63
|
syllable_sdk/models/body_pronunciations_upload_csv.py,sha256=oPftqGS1prHDhBu5zslvk_SqmnuPH-gSV4hsCPoWdCM,1417
|
|
64
|
+
syllable_sdk/models/callaction.py,sha256=U7uWhgZv2YrPrvXj8yvQ4EyLsE_knWt6GIL0sV5YHSc,4356
|
|
64
65
|
syllable_sdk/models/campaignproperties.py,sha256=hAIMEG3skfQqE-uDIYu9196EhfHgpEemuhZj4_f0oWo,533
|
|
66
|
+
syllable_sdk/models/caseexpression.py,sha256=0QF07C5yxRTe-rDmUGmkS5T3schAXHCQdW4e6yZ25p0,483
|
|
67
|
+
syllable_sdk/models/celexpression.py,sha256=WZMTRcoVDxWgTJ7-eTdW3EpmuZ169Qu5XSmyx1zjIBM,983
|
|
65
68
|
syllable_sdk/models/channel.py,sha256=qdavKRBPraONuozprbVC84BJwfg0vtOAa7Laqyuw_oE,2724
|
|
66
69
|
syllable_sdk/models/channel_targets_createop.py,sha256=YmOseJWuOWtE9AApMqju7dGO-I-zEHq0NQ_wGvIl6Ck,877
|
|
67
70
|
syllable_sdk/models/channel_targets_deleteop.py,sha256=AzJzm--VepFhuGZ7p7zysc-h9u7HXzQ4EctxH-mbI0c,657
|
|
@@ -85,6 +88,11 @@ syllable_sdk/models/communicationbatchinput.py,sha256=UbNEMfRzm5W_GaLBEZFHjS8WuT
|
|
|
85
88
|
syllable_sdk/models/communicationbatchupdate.py,sha256=P6-6bfwobvNfjrk_pjXVbKSgptkQky5DPI3hfmXgTnc,1808
|
|
86
89
|
syllable_sdk/models/communicationrequest.py,sha256=lL2gYfcY6A3yLVzfKk6ETZ0rHgwWISUXzEC02ja3u5A,698
|
|
87
90
|
syllable_sdk/models/communicationrequestresult.py,sha256=QO-W-5NQJ_NsDXBNqQIEvNbffSUPTNIqFQc_JDNGlJU,4199
|
|
91
|
+
syllable_sdk/models/conditionaltext.py,sha256=jjpXWooYTQiT15OVYl4GEDakMFqzmEToMk4-zHygOP4,2954
|
|
92
|
+
syllable_sdk/models/conditionalvalue.py,sha256=TG8fwAO07S6GD1BZNfo4XpZ48pRc2oP7CY5fVXIIQqg,4317
|
|
93
|
+
syllable_sdk/models/context.py,sha256=LGt5oBptHteciW69MSWsRDKmNSYOyc8NnJf7Btfpjgc,3091
|
|
94
|
+
syllable_sdk/models/contexttaskmetadata.py,sha256=gkKIHMmdk4VQF2dIYqDKwl858RJrbJdC6I90g87ASt8,1666
|
|
95
|
+
syllable_sdk/models/contexttoolinfo.py,sha256=eU32PDD0YNPaBL_wElLVjiNu4nQGXflivNpiow_-H9k,1666
|
|
88
96
|
syllable_sdk/models/conversation.py,sha256=9jTKFjcmlPKjFTHWBRsRysf4962XsdtX41UavnQT-Vg,5456
|
|
89
97
|
syllable_sdk/models/conversationproperties.py,sha256=R_Gb9nSGPQrCafgvXvfKq3CcimJVWs7Yzsc6n_TeC0w,469
|
|
90
98
|
syllable_sdk/models/conversations_listop.py,sha256=57ZtFA-onKu9LJTycun4SUIHFRyOSoX0Bj7009NMCCY,5079
|
|
@@ -131,6 +139,10 @@ syllable_sdk/models/directorymemberupdate.py,sha256=LTWsH5J1gbWiRUs565C38ez9XF8-
|
|
|
131
139
|
syllable_sdk/models/event.py,sha256=qFvXId06MfWSPW3SnFyy4_rvvqknzoAo0TSQy3F38Jo,4151
|
|
132
140
|
syllable_sdk/models/eventproperties.py,sha256=9_5DIkk5RtQsa52IxCkffSG0livH8baPSCdhzRKz48I,444
|
|
133
141
|
syllable_sdk/models/events_listop.py,sha256=eIXJRB3dZpc0DQAOzgfmls2OIgR8vpn_J-_AspXVUBY,5009
|
|
142
|
+
syllable_sdk/models/eventtask.py,sha256=w-95HB-vmQVaCN1eOvCul9oTUBR9BMfFCkjJns90ZR4,3096
|
|
143
|
+
syllable_sdk/models/eventtaskevents.py,sha256=lHvL4xA3bbZ90UaX0ptRza0_lShVtwNF6tYWZfLpgow,2606
|
|
144
|
+
syllable_sdk/models/expressiontask.py,sha256=JOJk5tVqLsW9iIqc4uSc1vibpwZthHz8ABszRTtltig,4759
|
|
145
|
+
syllable_sdk/models/expressiontaskevents.py,sha256=1k81b5Z168KdzI55gZ5b63GuP1ELyQkDK1s8p3TcWz0,3719
|
|
134
146
|
syllable_sdk/models/folderdetails.py,sha256=Vl-nTVjQDLtozLmm4HA_Hw4hPcIY-HO5rwwsrQfa6PE,3161
|
|
135
147
|
syllable_sdk/models/generate_session_recording_urlsop.py,sha256=gQ0CIWLaOB-gSlyVXUELXumzXo4jSxYZquinwl1D5J4,520
|
|
136
148
|
syllable_sdk/models/get_session_data_by_session_idop.py,sha256=8IEsII6_AZjc8E52t0rfmlLC5Z8L4mDeJ7jzxlMx4aQ,514
|
|
@@ -144,6 +156,8 @@ syllable_sdk/models/incidentorganizationresponse.py,sha256=44Su2ntM-6F8OQev25zxM
|
|
|
144
156
|
syllable_sdk/models/incidentproperties.py,sha256=NEx-Xr2k3Z7-oI6oxbcEOHyomzRFNMoMQALQC9EdjCw,677
|
|
145
157
|
syllable_sdk/models/incidentresponse.py,sha256=ZuwIBHBfMHGhVEF____p4JmmMRlIVF3aJeOtTxjWTG8,4115
|
|
146
158
|
syllable_sdk/models/incidentupdaterequest.py,sha256=T0TmWKGzexnT3nggedcgJpZe0mswMR3QDkE6eidJpuI,3341
|
|
159
|
+
syllable_sdk/models/incrementaction.py,sha256=7WeMAQL3bsmzlKz7XZlkhgY2t4UYq9OXzkZq3bGnHxo,3392
|
|
160
|
+
syllable_sdk/models/inputparameter.py,sha256=sDMFHX5bVgr2gj_hBePqCu8MPelqNetX-aLpSVTUnHk,2772
|
|
147
161
|
syllable_sdk/models/insight_tool_get_by_idop.py,sha256=3Krz56iwyygonAdlpzXDZork7NdxZ1VX74YrL3iwz64,494
|
|
148
162
|
syllable_sdk/models/insight_tool_listop.py,sha256=55fg04Vb0L3vpEVg1LKnJeG3CZIFvM99KEUoYboPJxM,5067
|
|
149
163
|
syllable_sdk/models/insights_folder_deleteop.py,sha256=NIjv9WSZxkdOSzFAC-RaHucKV2ht45SKietWX9C5Ml4,502
|
|
@@ -184,6 +198,7 @@ syllable_sdk/models/insightworkflowoutput.py,sha256=X7AFO6LBi4RRlKD5D8mJjrMoLSoa
|
|
|
184
198
|
syllable_sdk/models/insightworkflowproperties.py,sha256=tCD5v445mS1K1Ng3sbIud6QUuUcIjtZ8SvyLBqZi-bQ,394
|
|
185
199
|
syllable_sdk/models/inspectlatencyresponse.py,sha256=enfpoWfWUPUVoZeejYRP8WT5zSre-S74ARkeXG2tYaY,1195
|
|
186
200
|
syllable_sdk/models/internaltool.py,sha256=d-n7i573SPGBMZ0Krz3UhcJSopb-YkoH0q4uR59Z17I,1260
|
|
201
|
+
syllable_sdk/models/jmespathexpression.py,sha256=ce53QReAOPHRvcnEPtOa0--85OvkNg8ppjrxn-LsYDw,883
|
|
187
202
|
syllable_sdk/models/language_groups_deleteop.py,sha256=4MTGog70ojnyXZeVGNwp-50YcVktvkLBuzOWXUFrGA0,665
|
|
188
203
|
syllable_sdk/models/language_groups_get_by_idop.py,sha256=BqY8RoJ2AExtA67AIQlbn0J4dpTP4jmlEJUSagtgPHY,520
|
|
189
204
|
syllable_sdk/models/language_groups_listop.py,sha256=4ufQtf55hOWLmJMFPaS7Ff7mg9_TSVL4MiUbUrgfXiY,5089
|
|
@@ -225,8 +240,10 @@ syllable_sdk/models/listresponse_sessionlabel_.py,sha256=AC1xBcqGA5s3Y66powyGLFW
|
|
|
225
240
|
syllable_sdk/models/listresponse_toolresponse_.py,sha256=lAgwBYF4-VRgfNp7pyrBMw6mDXWMYTI0lX777304uM8,2348
|
|
226
241
|
syllable_sdk/models/listresponse_userresponse_.py,sha256=zZqujwjjoe589oZZZrSyEj8-74tx2MnSWpY08AJtaK0,2348
|
|
227
242
|
syllable_sdk/models/listresponse_voicegroupresponse_.py,sha256=zvhVkJ5ZkVNkgnJtHUEG20J5wyBwbaN6yxrP33sYDzs,2390
|
|
243
|
+
syllable_sdk/models/loadtoolfromfiletask.py,sha256=fbXiJnUHIZmK3aJVHi34s7QFeVotTuQqKtLd9BTaUjo,3577
|
|
228
244
|
syllable_sdk/models/logintype.py,sha256=N6VPXZQVqNFkhC2568I0mJzBotKDqCKeqipJFp2a_Pg,285
|
|
229
245
|
syllable_sdk/models/matchtype.py,sha256=PgCrtN-gRcpxCiHiwQt0X4z9CezayK1PbzuwcGL5aJo,257
|
|
246
|
+
syllable_sdk/models/nextstep.py,sha256=wLmDUwUwcuY-xo7ifkfuJJinN8mKuYpcVJHI-Qpqayc,3355
|
|
230
247
|
syllable_sdk/models/orderbydirection.py,sha256=1Jh50d2n7KXwKBRlkW7gdDUUGl4pexO0l0XwQWn8Sac,291
|
|
231
248
|
syllable_sdk/models/organizationchannelconfig.py,sha256=5XegldlEQSf69FtNbdsQboFbGJ_ImA1r0KqaXKz9EOM,3005
|
|
232
249
|
syllable_sdk/models/organizationchannelcreaterequest.py,sha256=e0OaCYQHw_vrtMgOIWrJigYMz-Ys5wfH9mrYIWgUI1M,2931
|
|
@@ -273,6 +290,8 @@ syllable_sdk/models/roles_deleteop.py,sha256=k3OA0KRLKZqSg5d_usu09b7PEViVZHQLfDt
|
|
|
273
290
|
syllable_sdk/models/roles_get_by_idop.py,sha256=Be9I6bNvT8z74-W_qnQFkdj8lJTxkkHnMUK1shZYmuY,482
|
|
274
291
|
syllable_sdk/models/roles_listop.py,sha256=VlDKBfR5-dn8z6ioDSc8dbe6cziaBPLXUnkCK-fjsQA,4999
|
|
275
292
|
syllable_sdk/models/roleupdaterequest.py,sha256=0POkwVJolChgU9uQeiEPnvk-b3vj-OwSvhjLbzuW4Qk,2393
|
|
293
|
+
syllable_sdk/models/saveaction.py,sha256=JwNzih0a1xkSSdf5G6597m7JcMhaf4Xa_GYPLxoZKbM,3519
|
|
294
|
+
syllable_sdk/models/sayaction.py,sha256=rOCzoK28fOALr8WUWR_rm9bUKp30Jfy59pf_7840IoA,3417
|
|
276
295
|
syllable_sdk/models/security.py,sha256=cmcb8jzAhbaN9jiBBNy4BcT9cOXogAwTIbkC4BDe7o8,711
|
|
277
296
|
syllable_sdk/models/service_deleteop.py,sha256=xoOwlMCY2tHhDFRsWM7NUMrh5HUwiexssrUrq8DdfTk,637
|
|
278
297
|
syllable_sdk/models/service_listop.py,sha256=4y4IacaGYPLQTeApQvOO4GLk1J1liEddOdKxZx5tShs,5027
|
|
@@ -281,7 +300,7 @@ syllable_sdk/models/serviceproperties.py,sha256=EHFdvU1QBJp4RnJqBaBMb8zZ4XdKFTcY
|
|
|
281
300
|
syllable_sdk/models/serviceresponse.py,sha256=BgAhYy4ZPaaa7TzLCgnByXF0pxlZEn6Iy0XZmLHqgsU,3217
|
|
282
301
|
syllable_sdk/models/services_get_by_idop.py,sha256=y7p_wwbjkL-DRN3v20J_8JVe-aXeTL7WLtaYEmXOreA,494
|
|
283
302
|
syllable_sdk/models/serviceupdaterequest.py,sha256=JMfYCiOFE_tBFxgcjRHYCEClK6EzN3mY5DUEpf0IVQ4,3469
|
|
284
|
-
syllable_sdk/models/session.py,sha256=
|
|
303
|
+
syllable_sdk/models/session.py,sha256=od5ikIzpM8EvZeqXl5QSuiq1_W9AX5HaaFNZp7MKNgI,7929
|
|
285
304
|
syllable_sdk/models/session_full_summary_get_by_idop.py,sha256=9mvK1ONJebhTEbL7NxOMQqlk8r3kc56TfXkSaaVvGXQ,514
|
|
286
305
|
syllable_sdk/models/session_get_by_idop.py,sha256=snBsZ3SLmPa98ATGNRdoiL9GzSiZot-beY9DRPZtK24,492
|
|
287
306
|
syllable_sdk/models/session_label_get_by_idop.py,sha256=V90OpTGH3tPScsZFI1X1hAW0OmgFH5svAPC3TcmwTok,514
|
|
@@ -301,8 +320,13 @@ syllable_sdk/models/sessions_listop.py,sha256=2MH0eKFHlZvkwJzXZmfzcG7vsBfsZep_fX
|
|
|
301
320
|
syllable_sdk/models/sessionsummaryresponse.py,sha256=LP0Q_iFxye0tGg7YGE569T9HxcSkfPBy0GApkszT2bw,1780
|
|
302
321
|
syllable_sdk/models/sessiontext.py,sha256=phsZJGSIBf54JX0fg-C4AMvs9xZU1OgE1qPKBH61IV8,2307
|
|
303
322
|
syllable_sdk/models/sessiontranscriptionresponse.py,sha256=XEBl0PyTHvw_HXMi6xIflXnPMVg10ZaXy8KTBfcwSE4,1246
|
|
323
|
+
syllable_sdk/models/setvalueaction.py,sha256=2NDXF_NMynKKPi7y8eCtuK3kDw5e5BJtxoqOgisOQpI,4655
|
|
304
324
|
syllable_sdk/models/statictoolparameter.py,sha256=xPxdGR0kfh1WyjVfOAmYBYBi06KLM-NYRpj5kkfh6fo,2869
|
|
305
325
|
syllable_sdk/models/statictoolparametertype.py,sha256=bR7qhWReaMcdPvehVFfhHkJFp1p841hbebjbpcJ19Ek,337
|
|
326
|
+
syllable_sdk/models/step.py,sha256=ISRrIyKa0vwv2LWuf9_3xKNM45dvf4G3z1b3abPXd3E,2104
|
|
327
|
+
syllable_sdk/models/stepeventactions.py,sha256=XPO3ItoCR3xUkD8_p6QAoZcVKd4wGPY5hKs7yOdoBJs,4518
|
|
328
|
+
syllable_sdk/models/stepstask.py,sha256=6Omen1D2r74ybbfZYJnctgsc5vtGhZLfh-JUr50W3CY,3062
|
|
329
|
+
syllable_sdk/models/steptools.py,sha256=-6b2SXwKdroURrNHwhUvuGsrGm8PqyfqyNgG9mCGO3Y,2196
|
|
306
330
|
syllable_sdk/models/summaryentry.py,sha256=f-1pluTulgvUObiyDwYrjlPNPI0vPY_yVf4gQmSLmbo,2043
|
|
307
331
|
syllable_sdk/models/supportedllm.py,sha256=YVm9r0-O_wyN79uLVcKIPMEpVoFmV_mvWSrlD5pTiR0,2654
|
|
308
332
|
syllable_sdk/models/takeoutrequeststatus.py,sha256=m6A2WbvqNwyq_0cCVrqQZTUc6dOiRQWttXFvEjDrCP4,344
|
|
@@ -320,7 +344,7 @@ syllable_sdk/models/toolagentinfo.py,sha256=-2Ei3lSLNvgp3XTr1oNyJ9njTQ_oKiakOTsj
|
|
|
320
344
|
syllable_sdk/models/toolargumentlocation.py,sha256=jeJSwcRnE_pv-eLFXr-f_qonNKbLI4p0uW2OxvFCLV0,530
|
|
321
345
|
syllable_sdk/models/toolauthtype.py,sha256=6vr4EocS4hFep8U7UzPb5FAi0nQSv9mVOqvcfeJHL9I,265
|
|
322
346
|
syllable_sdk/models/toolcreaterequest.py,sha256=hcvljGwPgPFNgk48ASIPjs9KORmMND6MlIW9L5EcCgk,1003
|
|
323
|
-
syllable_sdk/models/tooldefinition.py,sha256=
|
|
347
|
+
syllable_sdk/models/tooldefinition.py,sha256=OW2IbAcxAhFYPKj0_qDth54MJ-y3bdd4353IqYV0T0o,4835
|
|
324
348
|
syllable_sdk/models/tooldetailresponse.py,sha256=6JVm3M-ZW6pWB3kyThlUVFzHc2QAQWyv4OuLwtUfvvI,4805
|
|
325
349
|
syllable_sdk/models/toolfunction.py,sha256=bqrAmQxStYGQChS4nwzsVDBsnXIq0nHDxkmO9ht_Zgw,1009
|
|
326
350
|
syllable_sdk/models/toolhttpendpoint.py,sha256=Q54Fpith2qyO1MyJ6JZ8JpyWUphdZJPgMv4Qmcdobig,1472
|
|
@@ -355,6 +379,7 @@ syllable_sdk/models/users_listop.py,sha256=Nz5lyya0FJOwjy6c_8Ov-3pVeXVNRahqLfDMM
|
|
|
355
379
|
syllable_sdk/models/users_send_emailop.py,sha256=ylzKSqQ1PuoNCVoCIwtsOHttxEpoJ54JzCaMRwFcfAg,728
|
|
356
380
|
syllable_sdk/models/userupdaterequest.py,sha256=mK96YNCSQSm4ib-LsaZoZQM6mj5Wo2OWmmbK9UBp-pQ,2274
|
|
357
381
|
syllable_sdk/models/validationerror.py,sha256=uxsoFicbgd_z1G43oIqm9zxSAulUONwaDMKvaOLytHE,529
|
|
382
|
+
syllable_sdk/models/variable.py,sha256=TIWBKBBhEiWRKaYguw8wip8tdBxDwKQeeTo0lzhUEpo,4330
|
|
358
383
|
syllable_sdk/models/voice_groups_deleteop.py,sha256=M_ItL_3sLWDi8ybzLgJ7py7Zofdyr8bDZRRBb3u4XBg,653
|
|
359
384
|
syllable_sdk/models/voice_groups_get_by_idop.py,sha256=-bNAnW9PBf-LXTNEE39thJD8N3mYxtNU2zvGeNLrPDU,508
|
|
360
385
|
syllable_sdk/models/voice_groups_listop.py,sha256=RZ8D38XTAUV5i7DKDDAxPGe78hV2nuiQKa4jB71ZTiw,5059
|
|
@@ -407,6 +432,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
|
|
|
407
432
|
syllable_sdk/v1.py,sha256=BuA9D8PTM3ACw7t2p_wd6bIZblDM1JF8Scx0U2GPpCQ,53476
|
|
408
433
|
syllable_sdk/voice_groups.py,sha256=m68HbT6z6SWtGWPoZaFFu6NIyNYIG7H9H5QkQuzlTQU,48512
|
|
409
434
|
syllable_sdk/workflows.py,sha256=xHWT4Wl65qw2jvNZ5xF_MwpR5xd5147cSlQE_6gvfSo,64809
|
|
410
|
-
syllable_sdk-0.
|
|
411
|
-
syllable_sdk-0.
|
|
412
|
-
syllable_sdk-0.
|
|
435
|
+
syllable_sdk-0.43.1.dist-info/METADATA,sha256=cRJwIWumFKp1Bg6RIo3FUVklVrsrvQulXBsW-Aebi8A,49728
|
|
436
|
+
syllable_sdk-0.43.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
437
|
+
syllable_sdk-0.43.1.dist-info/RECORD,,
|
|
File without changes
|