syllable-sdk 0.35.34__py3-none-any.whl → 0.35.38__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.34"
6
+ __version__: str = "0.35.38"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
- __gen_version__: str = "2.653.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.35.34 2.653.0 0.0.2 syllable-sdk"
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"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -7,6 +7,6 @@ from enum import Enum
7
7
  class AgentSttProvider(str, Enum):
8
8
  r"""Speech-to-text providers supported by agents."""
9
9
 
10
- GOOGLE_STT_V1 = "Google STT V1"
11
10
  GOOGLE_STT_V2 = "Google STT V2"
11
+ GOOGLE_STT_V1 = "Google STT V1"
12
12
  DEEPGRAM_NOVA_2 = "Deepgram Nova 2"
@@ -9,7 +9,7 @@ from syllable_sdk.types import (
9
9
  UNSET,
10
10
  UNSET_SENTINEL,
11
11
  )
12
- from typing import List, Union
12
+ from typing import Dict, List, Union
13
13
  from typing_extensions import NotRequired, TypeAliasType, TypedDict
14
14
 
15
15
 
@@ -36,6 +36,8 @@ class InsightWorkflowConditionTypedDict(TypedDict):
36
36
  r"""List of prompts"""
37
37
  folder_list: NotRequired[Nullable[List[int]]]
38
38
  r"""List of folder IDs"""
39
+ sheet_info: NotRequired[Nullable[Dict[str, str]]]
40
+ r"""Information about the sheet to be used for the workflow"""
39
41
 
40
42
 
41
43
  class InsightWorkflowCondition(BaseModel):
@@ -59,6 +61,9 @@ class InsightWorkflowCondition(BaseModel):
59
61
  folder_list: OptionalNullable[List[int]] = UNSET
60
62
  r"""List of folder IDs"""
61
63
 
64
+ sheet_info: OptionalNullable[Dict[str, str]] = UNSET
65
+ r"""Information about the sheet to be used for the workflow"""
66
+
62
67
  @model_serializer(mode="wrap")
63
68
  def serialize_model(self, handler):
64
69
  optional_fields = [
@@ -68,6 +73,7 @@ class InsightWorkflowCondition(BaseModel):
68
73
  "agent_list",
69
74
  "prompt_list",
70
75
  "folder_list",
76
+ "sheet_info",
71
77
  ]
72
78
  nullable_fields = [
73
79
  "min_duration",
@@ -76,6 +82,7 @@ class InsightWorkflowCondition(BaseModel):
76
82
  "agent_list",
77
83
  "prompt_list",
78
84
  "folder_list",
85
+ "sheet_info",
79
86
  ]
80
87
  null_default_fields = []
81
88
 
@@ -24,17 +24,17 @@ class InsightWorkflowInputTypedDict(TypedDict):
24
24
  name: str
25
25
  r"""Human-readable name of insight workflow"""
26
26
  source: str
27
- r"""Source of the insight workflow"""
27
+ r"""Source of the workflow"""
28
28
  description: str
29
- r"""Text description of insight workflow"""
29
+ r"""Text description of workflow"""
30
30
  insight_tool_ids: List[int]
31
- r"""List of IDs of insight tool configurations used in the workflow"""
31
+ r"""Ordered list of IDs of tool configurations to be executed in the workflow"""
32
32
  conditions: InsightWorkflowConditionTypedDict
33
33
  r"""Model for the conditions that trigger an insight workflow."""
34
34
  start_datetime: NotRequired[Nullable[datetime]]
35
- r"""Timestamp for when the insight workflow should start. An empty value indicates start on activation"""
35
+ r"""Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only"""
36
36
  end_datetime: NotRequired[Nullable[datetime]]
37
- r"""Timestamp of when the insight workflow should end. An empty value indicates no end"""
37
+ r"""Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation"""
38
38
 
39
39
 
40
40
  class InsightWorkflowInput(BaseModel):
@@ -44,22 +44,22 @@ class InsightWorkflowInput(BaseModel):
44
44
  r"""Human-readable name of insight workflow"""
45
45
 
46
46
  source: str
47
- r"""Source of the insight workflow"""
47
+ r"""Source of the workflow"""
48
48
 
49
49
  description: str
50
- r"""Text description of insight workflow"""
50
+ r"""Text description of workflow"""
51
51
 
52
52
  insight_tool_ids: List[int]
53
- r"""List of IDs of insight tool configurations used in the workflow"""
53
+ r"""Ordered list of IDs of tool configurations to be executed in the workflow"""
54
54
 
55
55
  conditions: InsightWorkflowCondition
56
56
  r"""Model for the conditions that trigger an insight workflow."""
57
57
 
58
58
  start_datetime: OptionalNullable[datetime] = UNSET
59
- r"""Timestamp for when the insight workflow should start. An empty value indicates start on activation"""
59
+ r"""Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only"""
60
60
 
61
61
  end_datetime: OptionalNullable[datetime] = UNSET
62
- r"""Timestamp of when the insight workflow should end. An empty value indicates no end"""
62
+ r"""Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation"""
63
63
 
64
64
  @model_serializer(mode="wrap")
65
65
  def serialize_model(self, handler):
@@ -29,11 +29,11 @@ class InsightWorkflowOutputTypedDict(TypedDict):
29
29
  name: str
30
30
  r"""Human-readable name of insight workflow"""
31
31
  source: str
32
- r"""Source of the insight workflow"""
32
+ r"""Source of the workflow"""
33
33
  description: str
34
- r"""Text description of insight workflow"""
34
+ r"""Text description of workflow"""
35
35
  insight_tool_ids: List[int]
36
- r"""List of IDs of insight tool configurations used in the workflow"""
36
+ r"""Ordered list of IDs of tool configurations to be executed in the workflow"""
37
37
  conditions: InsightWorkflowConditionTypedDict
38
38
  r"""Model for the conditions that trigger an insight workflow."""
39
39
  id: int
@@ -47,9 +47,9 @@ class InsightWorkflowOutputTypedDict(TypedDict):
47
47
  last_updated_by: str
48
48
  r"""Email of user who last updated Insight Workflow"""
49
49
  start_datetime: NotRequired[Nullable[datetime]]
50
- r"""Timestamp for when the insight workflow should start. An empty value indicates start on activation"""
50
+ r"""Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only"""
51
51
  end_datetime: NotRequired[Nullable[datetime]]
52
- r"""Timestamp of when the insight workflow should end. An empty value indicates no end"""
52
+ r"""Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation"""
53
53
  queue_count: NotRequired[Nullable[int]]
54
54
  r"""Number of calls in the workflow queue (pending or processing)"""
55
55
  created_at: NotRequired[datetime]
@@ -65,13 +65,13 @@ class InsightWorkflowOutput(BaseModel):
65
65
  r"""Human-readable name of insight workflow"""
66
66
 
67
67
  source: str
68
- r"""Source of the insight workflow"""
68
+ r"""Source of the workflow"""
69
69
 
70
70
  description: str
71
- r"""Text description of insight workflow"""
71
+ r"""Text description of workflow"""
72
72
 
73
73
  insight_tool_ids: List[int]
74
- r"""List of IDs of insight tool configurations used in the workflow"""
74
+ r"""Ordered list of IDs of tool configurations to be executed in the workflow"""
75
75
 
76
76
  conditions: InsightWorkflowCondition
77
77
  r"""Model for the conditions that trigger an insight workflow."""
@@ -92,10 +92,10 @@ class InsightWorkflowOutput(BaseModel):
92
92
  r"""Email of user who last updated Insight Workflow"""
93
93
 
94
94
  start_datetime: OptionalNullable[datetime] = UNSET
95
- r"""Timestamp for when the insight workflow should start. An empty value indicates start on activation"""
95
+ r"""Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only"""
96
96
 
97
97
  end_datetime: OptionalNullable[datetime] = UNSET
98
- r"""Timestamp of when the insight workflow should end. An empty value indicates no end"""
98
+ r"""Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation"""
99
99
 
100
100
  queue_count: OptionalNullable[int] = UNSET
101
101
  r"""Number of calls in the workflow queue (pending or processing)"""
syllable_sdk/sdk.py CHANGED
@@ -48,17 +48,32 @@ class SyllableSDK(BaseSDK):
48
48
  ## Overview
49
49
 
50
50
  The Syllable SDK provides a comprehensive set of tools and APIs to integrate powerful AI
51
- capabilities into your communication applications. Whether you're building chatbots, virtual
52
- assistants, or any other AI-driven solutions, Syllable SDK has got you covered.
51
+ capabilities into your communication applications. Whether you're building phone agents, chatbots,
52
+ virtual assistants, or any other AI-driven solutions, Syllable SDK has got you covered.
53
53
 
54
54
  ## Features
55
55
 
56
- - **Natural Language Processing (NLP)**: Understand and generate human language with ease.
57
- - **Machine Learning Models**: Leverage pre-trained models or train your own custom models.
58
- - **Speech Recognition**: Convert speech to text and vice versa.
59
- - **Data Analytics**: Analyze and visualize data to gain insights.
60
- - **Integration**: Seamlessly integrate with other services and platforms.
61
-
56
+ - **Agent Configuration**: Create and manage agents that can interact with users across various
57
+ channels.
58
+ - **Channel Management**: Configure channels like SMS, web chat, and more to connect agents with
59
+ users.
60
+ - **Custom Messages**: Set up custom messages that agents can deliver as greetings or responses.
61
+ - **Conversations**: Track and manage conversations between users and agents, including session
62
+ management.
63
+ - **Tools and Workflows**: Leverage tools and workflows to enhance agent capabilities, such as data
64
+ processing and API calls.
65
+ - **Data Sources**: Integrate data sources to provide agents with additional context and
66
+ information.
67
+ - **Insights and Analytics**: Analyze conversations and sessions to gain insights into user
68
+ interactions.
69
+ - **Permissions and Security**: Manage permissions to control access to various features and
70
+ functionalities.
71
+ - **Language Support**: Define language groups to enable multilingual support for agents.
72
+ - **Outbound Campaigns**: Create and manage outbound communication campaigns to reach users
73
+ effectively.
74
+ - **Session Labels**: Label sessions with evaluations of quality and descriptions of issues
75
+ encountered.
76
+ - **Incident Management**: Track and manage incidents related to agent interactions.
62
77
 
63
78
  """
64
79
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: syllable-sdk
3
- Version: 0.35.34
3
+ Version: 0.35.38
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Syllable
6
6
  Requires-Python: >=3.9.2
@@ -27,16 +27,32 @@ Syllable SDK gives you the power of awesome AI agentry. 🚀
27
27
  ## Overview
28
28
 
29
29
  The Syllable SDK provides a comprehensive set of tools and APIs to integrate powerful AI
30
- capabilities into your communication applications. Whether you're building chatbots, virtual
31
- assistants, or any other AI-driven solutions, Syllable SDK has got you covered.
30
+ capabilities into your communication applications. Whether you're building phone agents, chatbots,
31
+ virtual assistants, or any other AI-driven solutions, Syllable SDK has got you covered.
32
32
 
33
33
  ## Features
34
34
 
35
- - **Natural Language Processing (NLP)**: Understand and generate human language with ease.
36
- - **Machine Learning Models**: Leverage pre-trained models or train your own custom models.
37
- - **Speech Recognition**: Convert speech to text and vice versa.
38
- - **Data Analytics**: Analyze and visualize data to gain insights.
39
- - **Integration**: Seamlessly integrate with other services and platforms.
35
+ - **Agent Configuration**: Create and manage agents that can interact with users across various
36
+ channels.
37
+ - **Channel Management**: Configure channels like SMS, web chat, and more to connect agents with
38
+ users.
39
+ - **Custom Messages**: Set up custom messages that agents can deliver as greetings or responses.
40
+ - **Conversations**: Track and manage conversations between users and agents, including session
41
+ management.
42
+ - **Tools and Workflows**: Leverage tools and workflows to enhance agent capabilities, such as data
43
+ processing and API calls.
44
+ - **Data Sources**: Integrate data sources to provide agents with additional context and
45
+ information.
46
+ - **Insights and Analytics**: Analyze conversations and sessions to gain insights into user
47
+ interactions.
48
+ - **Permissions and Security**: Manage permissions to control access to various features and
49
+ functionalities.
50
+ - **Language Support**: Define language groups to enable multilingual support for agents.
51
+ - **Outbound Campaigns**: Create and manage outbound communication campaigns to reach users
52
+ effectively.
53
+ - **Session Labels**: Label sessions with evaluations of quality and descriptions of issues
54
+ encountered.
55
+ - **Incident Management**: Track and manage incidents related to agent interactions.
40
56
  <!-- End Summary [summary] -->
41
57
 
42
58
  <!-- Start Table of Contents [toc] -->
@@ -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=Xwwvvfqd5jwJxVmqfWOj_8hhzI9PQC0nZNOpy5NKgVQ,470
6
+ syllable_sdk/_version.py,sha256=xYWicuEBih38HLJH5qMI27YCoPFJnkh8T3qXXezRcFw,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
@@ -36,7 +36,7 @@ syllable_sdk/models/agentcreate.py,sha256=QYTUpHd6sRA0EmVSjiJN64PoaoCb33SAh4pWqC
36
36
  syllable_sdk/models/agentlanguage.py,sha256=NkquRaZj2cPpm5bDSf2AuhHsL8NxDOYSDEO8YePUE4o,650
37
37
  syllable_sdk/models/agentproperties.py,sha256=r7acQPPWRA7gZUMbhSrQMyDFw_A7RSRZdKo7yvgGQY0,792
38
38
  syllable_sdk/models/agentresponse.py,sha256=86Z3kNBakkBYdL3PFGqzjs1otVfDbl1aIL7_ZJRGDqk,9075
39
- syllable_sdk/models/agentsttprovider.py,sha256=b0USHqktlGCi-ky4kE-8ro7VR1nqJn2EKQSIODC7iLw,337
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
42
  syllable_sdk/models/agentupdate.py,sha256=kFJ_1Hixyub3GEGvqUEmwIuU5V6A8IsZxSW4T0h31aM,6153
@@ -159,10 +159,10 @@ syllable_sdk/models/insighttooloutput.py,sha256=lOgOnhwNp5ufaJfYb04BWo2WmaR3wUUt
159
159
  syllable_sdk/models/insighttoolproperties.py,sha256=4CND3iVh8BInmfWszIN6xY97spN5xGFEfD4yD9NZ2dA,396
160
160
  syllable_sdk/models/insighttooltestinput.py,sha256=pbQtoUZ5WGSNS0cIYkNaT7Fp4Humn4ntzRx_NjwfA4w,2099
161
161
  syllable_sdk/models/insightworkflowactivate.py,sha256=XwMga80GoXNPBvMbER8lX_cfB0zcMsk9ZhIRTH_AHyc,892
162
- syllable_sdk/models/insightworkflowcondition.py,sha256=jOYFUfUUnP_yAB4Dhn_pUgLb6QtZBBYi0OSpr3FmteE,3109
162
+ syllable_sdk/models/insightworkflowcondition.py,sha256=brPTt-3xUqv0wa0GQzObYIc5E2kUt3J9VlNMm__QEvo,3413
163
163
  syllable_sdk/models/insightworkflowestimate.py,sha256=diEVEf4XiPnq624z_y3tK2wFUh5m8e5F4-hriC1ezTY,1775
164
- syllable_sdk/models/insightworkflowinput.py,sha256=ejcyrDiGB3kbTIZ2Jxj7vfJteXTyf9_rE_6FBVxUWmA,3109
165
- syllable_sdk/models/insightworkflowoutput.py,sha256=icITCxyj9mUH3NgY-KytiP4Yyqx3PFShtJk_FSju3-k,4896
164
+ syllable_sdk/models/insightworkflowinput.py,sha256=FvGFmOaNgdPill1_O1dQoWyQrGXyu5glGqLJ4KZmS0E,3273
165
+ syllable_sdk/models/insightworkflowoutput.py,sha256=X7AFO6LBi4RRlKD5D8mJjrMoLSoat2EAr1fVpb4Nen4,5060
166
166
  syllable_sdk/models/insightworkflowproperties.py,sha256=tCD5v445mS1K1Ng3sbIud6QUuUcIjtZ8SvyLBqZi-bQ,394
167
167
  syllable_sdk/models/inspectlatencyresponse.py,sha256=enfpoWfWUPUVoZeejYRP8WT5zSre-S74ARkeXG2tYaY,1195
168
168
  syllable_sdk/models/internaltool.py,sha256=d-n7i573SPGBMZ0Krz3UhcJSopb-YkoH0q4uR59Z17I,1260
@@ -332,7 +332,7 @@ syllable_sdk/permissions.py,sha256=EGDOu1toJfNgAEfS4Uv5QdWTPKvnPkH_DWGXDQdDhkk,6
332
332
  syllable_sdk/prompts.py,sha256=he6DC_QyGK--i1TbfaLZLSrr8Wwd-XIUGRL9XLWf_IE,53270
333
333
  syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
334
334
  syllable_sdk/roles.py,sha256=wfAePzjeRItms1lvXIKZo73PdGZnzNn1SgjyMSKqdxc,40374
335
- syllable_sdk/sdk.py,sha256=AqYFoA4CH3JlGENkinAhjvftV4YKdsVjw2xDnwUIYGE,14657
335
+ syllable_sdk/sdk.py,sha256=P61SDKE0y6_uDg5QHDTGGubo2oBNlKcUms3H-LPhUBM,15588
336
336
  syllable_sdk/sdkconfiguration.py,sha256=cbYqSx5Sw6bPo2RiqBsU6OkBJnBBVJ6pNORhPyaTHkg,1594
337
337
  syllable_sdk/services.py,sha256=tIGg5QvQAMx_IQlTTiHGQ7UuHLFeJgQbQMC5VLKtPos,40107
338
338
  syllable_sdk/session_debug.py,sha256=wKqcDWjexF_k3BtZ4whViJOZtwUhVRoNrv22YI9kxTM,22188
@@ -366,6 +366,6 @@ syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,525
366
366
  syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
367
367
  syllable_sdk/v1.py,sha256=noni4Ds8tZ5oHPZqoEoVJUYGs8L-ts9jGGFDU2E0pyE,53244
368
368
  syllable_sdk/workflows.py,sha256=kQPJzssdldotkipoWzu1ddas4IKbpFdXkGFDwDkWt1M,64777
369
- syllable_sdk-0.35.34.dist-info/METADATA,sha256=_Kn9RlNL_8AvSx7QuBWrjAXdkJ1btxmUeprNSDJQ2HE,44808
370
- syllable_sdk-0.35.34.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
371
- syllable_sdk-0.35.34.dist-info/RECORD,,
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,,