syllable-sdk 0.35.38__py3-none-any.whl → 0.35.47__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.35.38"
6
+ __version__: str = "0.35.47"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
- __gen_version__: str = "2.656.3"
9
- __user_agent__: str = "speakeasy-sdk/python 0.35.38 2.656.3 0.0.2 syllable-sdk"
8
+ __gen_version__: str = "2.661.4"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.35.47 2.661.4 0.0.2 syllable-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -701,6 +701,7 @@ if TYPE_CHECKING:
701
701
  from .tool_listop import ToolListRequest, ToolListRequestTypedDict
702
702
  from .toolagentinfo import ToolAgentInfo, ToolAgentInfoTypedDict
703
703
  from .toolargumentlocation import ToolArgumentLocation
704
+ from .toolauthtype import ToolAuthType
704
705
  from .toolcreaterequest import ToolCreateRequest, ToolCreateRequestTypedDict
705
706
  from .tooldefinition import (
706
707
  Defaults,
@@ -1292,6 +1293,7 @@ __all__ = [
1292
1293
  "ToolAgentInfo",
1293
1294
  "ToolAgentInfoTypedDict",
1294
1295
  "ToolArgumentLocation",
1296
+ "ToolAuthType",
1295
1297
  "ToolCreateRequest",
1296
1298
  "ToolCreateRequestTypedDict",
1297
1299
  "ToolDefinition",
@@ -1860,6 +1862,7 @@ _dynamic_imports: dict[str, str] = {
1860
1862
  "ToolAgentInfo": ".toolagentinfo",
1861
1863
  "ToolAgentInfoTypedDict": ".toolagentinfo",
1862
1864
  "ToolArgumentLocation": ".toolargumentlocation",
1865
+ "ToolAuthType": ".toolauthtype",
1863
1866
  "ToolCreateRequest": ".toolcreaterequest",
1864
1867
  "ToolCreateRequestTypedDict": ".toolcreaterequest",
1865
1868
  "Defaults": ".tooldefinition",
@@ -33,7 +33,7 @@ class AgentCreateTypedDict(TypedDict):
33
33
  variables: Dict[str, str]
34
34
  r"""Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."""
35
35
  tool_headers: Nullable[Dict[str, str]]
36
- r"""Optional headers to include in tool calls for agent."""
36
+ r"""Optional headers to include in tool calls for agent. (It is discouraged to use this field for \"Authorization\" headers, as values here are not encrypted. Instead, set up a service with either basic, bearer, or custom header auth; attach the appropriate tools to that service, and the attached tools will automatically use the auth configured on the service.)"""
37
37
  description: NotRequired[Nullable[str]]
38
38
  r"""The agent description"""
39
39
  label: NotRequired[Nullable[str]]
@@ -76,7 +76,7 @@ class AgentCreate(BaseModel):
76
76
  r"""Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."""
77
77
 
78
78
  tool_headers: Nullable[Dict[str, str]]
79
- r"""Optional headers to include in tool calls for agent."""
79
+ r"""Optional headers to include in tool calls for agent. (It is discouraged to use this field for \"Authorization\" headers, as values here are not encrypted. Instead, set up a service with either basic, bearer, or custom header auth; attach the appropriate tools to that service, and the attached tools will automatically use the auth configured on the service.)"""
80
80
 
81
81
  description: OptionalNullable[str] = UNSET
82
82
  r"""The agent description"""
@@ -47,7 +47,7 @@ class AgentResponseTypedDict(TypedDict):
47
47
  variables: Dict[str, str]
48
48
  r"""Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."""
49
49
  tool_headers: Nullable[Dict[str, str]]
50
- r"""Optional headers to include in tool calls for agent."""
50
+ r"""Optional headers to include in tool calls for agent. (It is discouraged to use this field for \"Authorization\" headers, as values here are not encrypted. Instead, set up a service with either basic, bearer, or custom header auth; attach the appropriate tools to that service, and the attached tools will automatically use the auth configured on the service.)"""
51
51
  id: int
52
52
  r"""Internal ID of the agent"""
53
53
  updated_at: datetime
@@ -111,7 +111,7 @@ class AgentResponse(BaseModel):
111
111
  r"""Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."""
112
112
 
113
113
  tool_headers: Nullable[Dict[str, str]]
114
- r"""Optional headers to include in tool calls for agent."""
114
+ r"""Optional headers to include in tool calls for agent. (It is discouraged to use this field for \"Authorization\" headers, as values here are not encrypted. Instead, set up a service with either basic, bearer, or custom header auth; attach the appropriate tools to that service, and the attached tools will automatically use the auth configured on the service.)"""
115
115
 
116
116
  id: int
117
117
  r"""Internal ID of the agent"""
@@ -33,7 +33,7 @@ class AgentUpdateTypedDict(TypedDict):
33
33
  variables: Dict[str, str]
34
34
  r"""Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."""
35
35
  tool_headers: Nullable[Dict[str, str]]
36
- r"""Optional headers to include in tool calls for agent."""
36
+ r"""Optional headers to include in tool calls for agent. (It is discouraged to use this field for \"Authorization\" headers, as values here are not encrypted. Instead, set up a service with either basic, bearer, or custom header auth; attach the appropriate tools to that service, and the attached tools will automatically use the auth configured on the service.)"""
37
37
  id: int
38
38
  r"""Internal ID of the agent"""
39
39
  description: NotRequired[Nullable[str]]
@@ -78,7 +78,7 @@ class AgentUpdate(BaseModel):
78
78
  r"""Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."""
79
79
 
80
80
  tool_headers: Nullable[Dict[str, str]]
81
- r"""Optional headers to include in tool calls for agent."""
81
+ r"""Optional headers to include in tool calls for agent. (It is discouraged to use this field for \"Authorization\" headers, as values here are not encrypted. Instead, set up a service with either basic, bearer, or custom header auth; attach the appropriate tools to that service, and the attached tools will automatically use the auth configured on the service.)"""
82
82
 
83
83
  id: int
84
84
  r"""Internal ID of the agent"""
@@ -20,15 +20,18 @@ class OrganizationResponseTypedDict(TypedDict):
20
20
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
21
21
  id: int
22
22
  r"""The internal ID of the organization."""
23
+ slug: str
24
+ r"""The slug of the organization used for URLs in the Console UI"""
23
25
  last_updated: datetime
24
26
  r"""The timestamp of the most recent update to the organization"""
25
- logo_str: Nullable[str]
26
27
  description: NotRequired[Nullable[str]]
27
28
  r"""Description of the organization."""
28
29
  last_updated_comments: NotRequired[Nullable[str]]
29
30
  r"""Comments for the most recent edit to the organization."""
30
31
  last_updated_by: NotRequired[Nullable[str]]
31
32
  r"""The email of the user who most recently updated the organization"""
33
+ logo_url: NotRequired[Nullable[str]]
34
+ r"""CDN URL. The org will always have a logo, but this value will be null on a response to an update where no logo was provided on the request"""
32
35
 
33
36
 
34
37
  class OrganizationResponse(BaseModel):
@@ -41,11 +44,12 @@ class OrganizationResponse(BaseModel):
41
44
  id: int
42
45
  r"""The internal ID of the organization."""
43
46
 
47
+ slug: str
48
+ r"""The slug of the organization used for URLs in the Console UI"""
49
+
44
50
  last_updated: datetime
45
51
  r"""The timestamp of the most recent update to the organization"""
46
52
 
47
- logo_str: Nullable[str]
48
-
49
53
  description: OptionalNullable[str] = UNSET
50
54
  r"""Description of the organization."""
51
55
 
@@ -55,14 +59,22 @@ class OrganizationResponse(BaseModel):
55
59
  last_updated_by: OptionalNullable[str] = UNSET
56
60
  r"""The email of the user who most recently updated the organization"""
57
61
 
62
+ logo_url: OptionalNullable[str] = UNSET
63
+ r"""CDN URL. The org will always have a logo, but this value will be null on a response to an update where no logo was provided on the request"""
64
+
58
65
  @model_serializer(mode="wrap")
59
66
  def serialize_model(self, handler):
60
- optional_fields = ["description", "last_updated_comments", "last_updated_by"]
67
+ optional_fields = [
68
+ "description",
69
+ "last_updated_comments",
70
+ "last_updated_by",
71
+ "logo_url",
72
+ ]
61
73
  nullable_fields = [
62
74
  "description",
63
75
  "last_updated_comments",
64
76
  "last_updated_by",
65
- "logo_str",
77
+ "logo_url",
66
78
  ]
67
79
  null_default_fields = []
68
80
 
@@ -1,8 +1,17 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from syllable_sdk.types import BaseModel
5
- from typing_extensions import TypedDict
4
+ from .toolauthtype import ToolAuthType
5
+ from pydantic import model_serializer
6
+ from syllable_sdk.types import (
7
+ BaseModel,
8
+ Nullable,
9
+ OptionalNullable,
10
+ UNSET,
11
+ UNSET_SENTINEL,
12
+ )
13
+ from typing import Dict
14
+ from typing_extensions import NotRequired, TypedDict
6
15
 
7
16
 
8
17
  class ServiceCreateRequestTypedDict(TypedDict):
@@ -12,6 +21,10 @@ class ServiceCreateRequestTypedDict(TypedDict):
12
21
  r"""The name of the service"""
13
22
  description: str
14
23
  r"""The description of the service"""
24
+ auth_type: NotRequired[Nullable[ToolAuthType]]
25
+ r"""The type of authentication to use for the service's tools"""
26
+ auth_values: NotRequired[Nullable[Dict[str, Nullable[str]]]]
27
+ r"""The values to use for the authentication. Should contain \"username\" and \"password\" keys if auth type is basic, \"token\" key if auth type is bearer, or arbitrary header keys if auth type is custom_headers. On an update, leave a value for a given key null and the value in the database will not be updated. (If a key is omitted entirely, any existing value for that key will be removed.)"""
15
28
 
16
29
 
17
30
  class ServiceCreateRequest(BaseModel):
@@ -22,3 +35,39 @@ class ServiceCreateRequest(BaseModel):
22
35
 
23
36
  description: str
24
37
  r"""The description of the service"""
38
+
39
+ auth_type: OptionalNullable[ToolAuthType] = UNSET
40
+ r"""The type of authentication to use for the service's tools"""
41
+
42
+ auth_values: OptionalNullable[Dict[str, Nullable[str]]] = UNSET
43
+ r"""The values to use for the authentication. Should contain \"username\" and \"password\" keys if auth type is basic, \"token\" key if auth type is bearer, or arbitrary header keys if auth type is custom_headers. On an update, leave a value for a given key null and the value in the database will not be updated. (If a key is omitted entirely, any existing value for that key will be removed.)"""
44
+
45
+ @model_serializer(mode="wrap")
46
+ def serialize_model(self, handler):
47
+ optional_fields = ["auth_type", "auth_values"]
48
+ nullable_fields = ["auth_type", "auth_values"]
49
+ null_default_fields = []
50
+
51
+ serialized = handler(self)
52
+
53
+ m = {}
54
+
55
+ for n, f in type(self).model_fields.items():
56
+ k = f.alias or n
57
+ val = serialized.get(k)
58
+ serialized.pop(k, None)
59
+
60
+ optional_nullable = k in optional_fields and k in nullable_fields
61
+ is_set = (
62
+ self.__pydantic_fields_set__.intersection({n})
63
+ or k in null_default_fields
64
+ ) # pylint: disable=no-member
65
+
66
+ if val is not None and val != UNSET_SENTINEL:
67
+ m[k] = val
68
+ elif val != UNSET_SENTINEL and (
69
+ not k in optional_fields or (optional_nullable and is_set)
70
+ ):
71
+ m[k] = val
72
+
73
+ return m
@@ -10,5 +10,5 @@ class ServiceProperties(str, Enum):
10
10
  ID = "id"
11
11
  NAME = "name"
12
12
  DESCRIPTION = "description"
13
- UPDATED_AT = "updated_at"
13
+ LAST_UPDATED = "last_updated"
14
14
  LAST_UPDATED_BY = "last_updated_by"
@@ -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 .toolauthtype import ToolAuthType
4
5
  from datetime import datetime
5
6
  from pydantic import model_serializer
6
7
  from syllable_sdk.types import (
@@ -17,18 +18,22 @@ from typing_extensions import NotRequired, TypedDict
17
18
  class ServiceResponseTypedDict(TypedDict):
18
19
  r"""Response model for service operations. A service is a collection of tools."""
19
20
 
21
+ id: int
22
+ r"""The internal ID of the service"""
20
23
  name: str
21
24
  r"""The name of the service"""
22
25
  description: str
23
26
  r"""The description of the service"""
24
- id: int
25
- r"""The internal ID of the service"""
26
27
  last_updated: datetime
27
28
  r"""The timestamp of the most recent update to the service"""
28
29
  last_updated_by: str
29
30
  r"""The email of the user who last updated the service"""
30
31
  tools: List[str]
31
32
  r"""Names of tools that belong to the service"""
33
+ auth_type: NotRequired[Nullable[ToolAuthType]]
34
+ r"""The type of authentication to use for the service's tools"""
35
+ auth_value_keys: NotRequired[Nullable[List[str]]]
36
+ r"""Auth value keys (values omitted for security)"""
32
37
  last_updated_comments: NotRequired[Nullable[str]]
33
38
  r"""Free text providing comment about what was updated"""
34
39
 
@@ -36,15 +41,15 @@ class ServiceResponseTypedDict(TypedDict):
36
41
  class ServiceResponse(BaseModel):
37
42
  r"""Response model for service operations. A service is a collection of tools."""
38
43
 
44
+ id: int
45
+ r"""The internal ID of the service"""
46
+
39
47
  name: str
40
48
  r"""The name of the service"""
41
49
 
42
50
  description: str
43
51
  r"""The description of the service"""
44
52
 
45
- id: int
46
- r"""The internal ID of the service"""
47
-
48
53
  last_updated: datetime
49
54
  r"""The timestamp of the most recent update to the service"""
50
55
 
@@ -54,13 +59,19 @@ class ServiceResponse(BaseModel):
54
59
  tools: List[str]
55
60
  r"""Names of tools that belong to the service"""
56
61
 
62
+ auth_type: OptionalNullable[ToolAuthType] = UNSET
63
+ r"""The type of authentication to use for the service's tools"""
64
+
65
+ auth_value_keys: OptionalNullable[List[str]] = UNSET
66
+ r"""Auth value keys (values omitted for security)"""
67
+
57
68
  last_updated_comments: OptionalNullable[str] = UNSET
58
69
  r"""Free text providing comment about what was updated"""
59
70
 
60
71
  @model_serializer(mode="wrap")
61
72
  def serialize_model(self, handler):
62
- optional_fields = ["last_updated_comments"]
63
- nullable_fields = ["last_updated_comments"]
73
+ optional_fields = ["auth_type", "auth_value_keys", "last_updated_comments"]
74
+ nullable_fields = ["auth_type", "auth_value_keys", "last_updated_comments"]
64
75
  null_default_fields = []
65
76
 
66
77
  serialized = handler(self)
@@ -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 .toolauthtype import ToolAuthType
4
5
  from pydantic import model_serializer
5
6
  from syllable_sdk.types import (
6
7
  BaseModel,
@@ -9,6 +10,7 @@ from syllable_sdk.types import (
9
10
  UNSET,
10
11
  UNSET_SENTINEL,
11
12
  )
13
+ from typing import Dict
12
14
  from typing_extensions import NotRequired, TypedDict
13
15
 
14
16
 
@@ -21,6 +23,10 @@ class ServiceUpdateRequestTypedDict(TypedDict):
21
23
  r"""The description of the service"""
22
24
  id: int
23
25
  r"""The internal ID of the service"""
26
+ auth_type: NotRequired[Nullable[ToolAuthType]]
27
+ r"""The type of authentication to use for the service's tools"""
28
+ auth_values: NotRequired[Nullable[Dict[str, Nullable[str]]]]
29
+ r"""The values to use for the authentication. Should contain \"username\" and \"password\" keys if auth type is basic, \"token\" key if auth type is bearer, or arbitrary header keys if auth type is custom_headers. On an update, leave a value for a given key null and the value in the database will not be updated. (If a key is omitted entirely, any existing value for that key will be removed.)"""
24
30
  last_updated_comments: NotRequired[Nullable[str]]
25
31
  r"""Free text providing comment about what was updated"""
26
32
 
@@ -37,13 +43,19 @@ class ServiceUpdateRequest(BaseModel):
37
43
  id: int
38
44
  r"""The internal ID of the service"""
39
45
 
46
+ auth_type: OptionalNullable[ToolAuthType] = UNSET
47
+ r"""The type of authentication to use for the service's tools"""
48
+
49
+ auth_values: OptionalNullable[Dict[str, Nullable[str]]] = UNSET
50
+ r"""The values to use for the authentication. Should contain \"username\" and \"password\" keys if auth type is basic, \"token\" key if auth type is bearer, or arbitrary header keys if auth type is custom_headers. On an update, leave a value for a given key null and the value in the database will not be updated. (If a key is omitted entirely, any existing value for that key will be removed.)"""
51
+
40
52
  last_updated_comments: OptionalNullable[str] = UNSET
41
53
  r"""Free text providing comment about what was updated"""
42
54
 
43
55
  @model_serializer(mode="wrap")
44
56
  def serialize_model(self, handler):
45
- optional_fields = ["last_updated_comments"]
46
- nullable_fields = ["last_updated_comments"]
57
+ optional_fields = ["auth_type", "auth_values", "last_updated_comments"]
58
+ nullable_fields = ["auth_type", "auth_values", "last_updated_comments"]
47
59
  null_default_fields = []
48
60
 
49
61
  serialized = handler(self)
@@ -0,0 +1,10 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from enum import Enum
5
+
6
+
7
+ class ToolAuthType(str, Enum):
8
+ BASIC = "basic"
9
+ BEARER = "bearer"
10
+ CUSTOM_HEADERS = "custom_headers"
syllable_sdk/sdk.py CHANGED
@@ -100,7 +100,7 @@ class SyllableSDK(BaseSDK):
100
100
  roles: "Roles"
101
101
  r"""Operations related to roles. A role is a collection of permissions that can be assigned to users to control their access to various features within the Syllable system."""
102
102
  services: "Services"
103
- r"""Operations related to service configuration. A service is a collection of tools."""
103
+ r"""Operations related to service configuration. A service is a collection of tools. You can specify an authentication method and values on a service, and any linked tools will use that auth information to generate headers for HTTP calls."""
104
104
  session_labels: "SessionLabels"
105
105
  r"""Operations related to labeling sessions with evaluations of quality and descriptions of issues the user encountered or other details. For more information, see [Console docs](https://docs.syllable.ai/workspaces/Sessions)."""
106
106
  sessions: "Sessions"
syllable_sdk/services.py CHANGED
@@ -10,7 +10,7 @@ from typing import Any, List, Mapping, Optional, Union, cast
10
10
 
11
11
 
12
12
  class Services(BaseSDK):
13
- r"""Operations related to service configuration. A service is a collection of tools."""
13
+ r"""Operations related to service configuration. A service is a collection of tools. You can specify an authentication method and values on a service, and any linked tools will use that auth information to generate headers for HTTP calls."""
14
14
 
15
15
  def list(
16
16
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: syllable-sdk
3
- Version: 0.35.38
3
+ Version: 0.35.47
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Syllable
6
6
  Requires-Python: >=3.9.2
@@ -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=xYWicuEBih38HLJH5qMI27YCoPFJnkh8T3qXXezRcFw,470
6
+ syllable_sdk/_version.py,sha256=9hgzWZsxU2SStp4s6Rwnyv1snmR1OYzZ0ytHh7O97k4,470
7
7
  syllable_sdk/agents.py,sha256=0x4iFVF9VksBu32ThrGcgM3FqMCC9-iP8ggPh2r4R04,46694
8
8
  syllable_sdk/basesdk.py,sha256=dULbDf9e71tjSgOe7YwC9jD-80uIFiMrAhFbFvbEYho,11916
9
9
  syllable_sdk/batches.py,sha256=qgI5PRkdgLdaJl4DPfs4mBJrB0OY_CCDePYntyjleSs,73059
@@ -28,18 +28,18 @@ syllable_sdk/insights_sdk.py,sha256=MxNtdwu2dcM8xCjKS2l-ZIM-pT-Bbh8LSjMnFLl32nc,
28
28
  syllable_sdk/insights_tools.py,sha256=SuDEOpPtk7SlsFZ-thzIZSt_31WjofzyzqozseWQy3M,55115
29
29
  syllable_sdk/language_groups.py,sha256=BlcTvh_KitUkbVzXlBjCcxTmBbQ12QWxCZfXqlCOoPc,49214
30
30
  syllable_sdk/latency.py,sha256=PymvwBTs6KAVMl-IZVj6L4zJotRApBOcnkfB4FrlNkg,7449
31
- syllable_sdk/models/__init__.py,sha256=2pK0yy6zUHZ1c9LYaOmxJmuaIcgXiUpiWuqDHbF9yFI,83441
31
+ syllable_sdk/models/__init__.py,sha256=bCSeKImY-4vcEHeIJ5UZaSms2j_UB7h5GgcAiSebisc,83541
32
32
  syllable_sdk/models/agent_deleteop.py,sha256=tUbi-gwd4chf2Ba9O9lCvqDQw6YOnn7aheu8OPDzptc,629
33
33
  syllable_sdk/models/agent_get_by_idop.py,sha256=vj_xEbhOv3c8n3-B3uQnfTwHWdxYSE4k3Zvr58Yc9A4,484
34
34
  syllable_sdk/models/agent_listop.py,sha256=dJdQuIst1TF4xMol9XVdX4xOw8z06jyAQpm46_u0Ysk,5007
35
- syllable_sdk/models/agentcreate.py,sha256=QYTUpHd6sRA0EmVSjiJN64PoaoCb33SAh4pWqC_iFEs,6038
35
+ syllable_sdk/models/agentcreate.py,sha256=Yfvu4U3Q0prMFDFSTQPalr7FaVbTKoChcGofc_Cw_T4,6652
36
36
  syllable_sdk/models/agentlanguage.py,sha256=NkquRaZj2cPpm5bDSf2AuhHsL8NxDOYSDEO8YePUE4o,650
37
37
  syllable_sdk/models/agentproperties.py,sha256=r7acQPPWRA7gZUMbhSrQMyDFw_A7RSRZdKo7yvgGQY0,792
38
- syllable_sdk/models/agentresponse.py,sha256=86Z3kNBakkBYdL3PFGqzjs1otVfDbl1aIL7_ZJRGDqk,9075
38
+ syllable_sdk/models/agentresponse.py,sha256=pa6qBcPUF7LlK1Au29uuT6AN5dDiPDl8q1S1cc6LOqg,9689
39
39
  syllable_sdk/models/agentsttprovider.py,sha256=A-Y48rQF8_NOTAYbmzwFhgeeGX93mq4fEYV4JSbPywA,337
40
40
  syllable_sdk/models/agenttooldefaults.py,sha256=grephhXpDNRoteEjin5eOFqe2pqh2WHs80wO9As87S4,903
41
41
  syllable_sdk/models/agenttoolfielddefault.py,sha256=80ANVtg-F04tDjWvMj55g2xUujUIx-XtT-_lIQOiYnY,788
42
- syllable_sdk/models/agentupdate.py,sha256=kFJ_1Hixyub3GEGvqUEmwIuU5V6A8IsZxSW4T0h31aM,6153
42
+ syllable_sdk/models/agentupdate.py,sha256=JyNM5fEMKzsrsk1Ydbr3pu0RyJdQZmv80gvsHm9miL8,6767
43
43
  syllable_sdk/models/agentvoice.py,sha256=BczZexgI1oNXBnLNT-WOePXj52jTot23Twu2h-qXNJE,1853
44
44
  syllable_sdk/models/agentvoicedisplayname.py,sha256=GCgJ4X8uvjsWaqJwLouiSumyX9Fn9JGXfWpal7Wr2u0,3064
45
45
  syllable_sdk/models/agentvoicegender.py,sha256=eSrSwtf7UsFw9hFLcdgtjyp_OeNheZRGJtsu4pOJgPQ,246
@@ -206,7 +206,7 @@ syllable_sdk/models/listresponse_toolresponse_.py,sha256=lAgwBYF4-VRgfNp7pyrBMw6
206
206
  syllable_sdk/models/listresponse_userresponse_.py,sha256=zZqujwjjoe589oZZZrSyEj8-74tx2MnSWpY08AJtaK0,2348
207
207
  syllable_sdk/models/logintype.py,sha256=N6VPXZQVqNFkhC2568I0mJzBotKDqCKeqipJFp2a_Pg,285
208
208
  syllable_sdk/models/orderbydirection.py,sha256=1Jh50d2n7KXwKBRlkW7gdDUUGl4pexO0l0XwQWn8Sac,291
209
- syllable_sdk/models/organizationresponse.py,sha256=rCOPJgC8V_fd8adj26Rb1MMSSzBH5qvlX_qEJbmMgZs,2990
209
+ syllable_sdk/models/organizationresponse.py,sha256=qmrsK1LauZ6HDpahdxs5pGyMlby0UMzJmL_757aKfcs,3563
210
210
  syllable_sdk/models/outbound_batch_addop.py,sha256=5SI0jNm19NE11zdtToh9p3HLhSM9OiJSIx0wVjL-BpI,806
211
211
  syllable_sdk/models/outbound_batch_deleteop.py,sha256=5t4BDaxQYogksgZkvR_gDfkFPoMVeJA0GSrhTZu_uRs,892
212
212
  syllable_sdk/models/outbound_batch_get_by_idop.py,sha256=reCpzH9U9WVQqxIgxjaLeOy2cFcmNWe7C69ppbazmI4,500
@@ -247,11 +247,11 @@ syllable_sdk/models/roleupdaterequest.py,sha256=0POkwVJolChgU9uQeiEPnvk-b3vj-OwS
247
247
  syllable_sdk/models/security.py,sha256=cmcb8jzAhbaN9jiBBNy4BcT9cOXogAwTIbkC4BDe7o8,711
248
248
  syllable_sdk/models/service_deleteop.py,sha256=xoOwlMCY2tHhDFRsWM7NUMrh5HUwiexssrUrq8DdfTk,637
249
249
  syllable_sdk/models/service_listop.py,sha256=4y4IacaGYPLQTeApQvOO4GLk1J1liEddOdKxZx5tShs,5027
250
- syllable_sdk/models/servicecreaterequest.py,sha256=5AtFu31ZE3MGxYax0QvIVdYq0y1wfS2kiO-_uCF6Ee4,599
251
- syllable_sdk/models/serviceproperties.py,sha256=rhRj6ufAYC6kXgWnKoAC-tbRWtvsDlchodlorTslSms,388
252
- syllable_sdk/models/serviceresponse.py,sha256=V1h6OSpRm4jj5zNQ5CbRJbeHFWzlshcPjqMm8G4aO0U,2644
250
+ syllable_sdk/models/servicecreaterequest.py,sha256=eAxA1kmJ4mc1mLlcM1KrcCOLNjezilEj29ntVcXzazE,2915
251
+ syllable_sdk/models/serviceproperties.py,sha256=EHFdvU1QBJp4RnJqBaBMb8zZ4XdKFTcY9nk24QxZHXc,392
252
+ syllable_sdk/models/serviceresponse.py,sha256=BgAhYy4ZPaaa7TzLCgnByXF0pxlZEn6Iy0XZmLHqgsU,3217
253
253
  syllable_sdk/models/services_get_by_idop.py,sha256=y7p_wwbjkL-DRN3v20J_8JVe-aXeTL7WLtaYEmXOreA,494
254
- syllable_sdk/models/serviceupdaterequest.py,sha256=7yR5mtT9_0O4gymYFVBbFwgD2IDjV7ReKCcSXMtpbuE,2029
254
+ syllable_sdk/models/serviceupdaterequest.py,sha256=K-kKFxIYEymZrSlv0zJA8i4-jEDQQCf5Ax7z7bH4P1k,3330
255
255
  syllable_sdk/models/session.py,sha256=_16iy4DPLJYeZt2TBqStkSy11j-FHmTBRiVcAi2QbqY,6971
256
256
  syllable_sdk/models/session_full_summary_get_by_idop.py,sha256=9mvK1ONJebhTEbL7NxOMQqlk8r3kc56TfXkSaaVvGXQ,514
257
257
  syllable_sdk/models/session_get_by_idop.py,sha256=snBsZ3SLmPa98ATGNRdoiL9GzSiZot-beY9DRPZtK24,492
@@ -288,6 +288,7 @@ syllable_sdk/models/tool_get_by_nameop.py,sha256=gC_yKqlpCDgi0Xf_CDGKxlHdKPv27ZR
288
288
  syllable_sdk/models/tool_listop.py,sha256=3t8UvAQE-elpQxCdqNJ7Zv8euIvbxSatVcUAmZezG9w,4997
289
289
  syllable_sdk/models/toolagentinfo.py,sha256=-2Ei3lSLNvgp3XTr1oNyJ9njTQ_oKiakOTsjnUWUM7g,605
290
290
  syllable_sdk/models/toolargumentlocation.py,sha256=jeJSwcRnE_pv-eLFXr-f_qonNKbLI4p0uW2OxvFCLV0,530
291
+ syllable_sdk/models/toolauthtype.py,sha256=0mFbHo3uIJvzrjwncm7a_WI4OLFUfFewH09QBHItk-c,243
291
292
  syllable_sdk/models/toolcreaterequest.py,sha256=hcvljGwPgPFNgk48ASIPjs9KORmMND6MlIW9L5EcCgk,1003
292
293
  syllable_sdk/models/tooldefinition.py,sha256=X0wEwLMzWFUOv1V6ime1LjSusckoPt1NJ38FEmmBWgA,4501
293
294
  syllable_sdk/models/tooldetailresponse.py,sha256=6JVm3M-ZW6pWB3kyThlUVFzHc2QAQWyv4OuLwtUfvvI,4805
@@ -332,9 +333,9 @@ syllable_sdk/permissions.py,sha256=EGDOu1toJfNgAEfS4Uv5QdWTPKvnPkH_DWGXDQdDhkk,6
332
333
  syllable_sdk/prompts.py,sha256=he6DC_QyGK--i1TbfaLZLSrr8Wwd-XIUGRL9XLWf_IE,53270
333
334
  syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
334
335
  syllable_sdk/roles.py,sha256=wfAePzjeRItms1lvXIKZo73PdGZnzNn1SgjyMSKqdxc,40374
335
- syllable_sdk/sdk.py,sha256=P61SDKE0y6_uDg5QHDTGGubo2oBNlKcUms3H-LPhUBM,15588
336
+ syllable_sdk/sdk.py,sha256=c0ROTvesjQZNFZ143fig0qDKAYYahsow7Ep1w1gASeU,15752
336
337
  syllable_sdk/sdkconfiguration.py,sha256=cbYqSx5Sw6bPo2RiqBsU6OkBJnBBVJ6pNORhPyaTHkg,1594
337
- syllable_sdk/services.py,sha256=tIGg5QvQAMx_IQlTTiHGQ7UuHLFeJgQbQMC5VLKtPos,40107
338
+ syllable_sdk/services.py,sha256=sI0gG_Xa4XnDMU0B05q__UPs2LCYTNbkrvM_FuoXhgY,40271
338
339
  syllable_sdk/session_debug.py,sha256=wKqcDWjexF_k3BtZ4whViJOZtwUhVRoNrv22YI9kxTM,22188
339
340
  syllable_sdk/session_labels.py,sha256=_9pkwDKQ0Hwnb8neaAYS6ADcfd-Wf5CJXsMgSXaWHbc,25431
340
341
  syllable_sdk/sessions.py,sha256=VF_HhFnj1v7jwsT_dXBygcWEpuyJzfnODvDmib9aFbM,32549
@@ -366,6 +367,6 @@ syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,525
366
367
  syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
367
368
  syllable_sdk/v1.py,sha256=noni4Ds8tZ5oHPZqoEoVJUYGs8L-ts9jGGFDU2E0pyE,53244
368
369
  syllable_sdk/workflows.py,sha256=kQPJzssdldotkipoWzu1ddas4IKbpFdXkGFDwDkWt1M,64777
369
- syllable_sdk-0.35.38.dist-info/METADATA,sha256=jPY2OeFdJi4BxNnTmmQ88IPKDG7panH5gU_nJZ5qciA,45685
370
- syllable_sdk-0.35.38.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
371
- syllable_sdk-0.35.38.dist-info/RECORD,,
370
+ syllable_sdk-0.35.47.dist-info/METADATA,sha256=QovvwReIBP86_5z1SVip5mvFnHX8ypjKc-x3mo_CZms,45685
371
+ syllable_sdk-0.35.47.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
372
+ syllable_sdk-0.35.47.dist-info/RECORD,,