syllable-sdk 0.35.72__py3-none-any.whl → 0.35.78__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 +3 -2
- syllable_sdk/models/promptresponse.py +7 -0
- syllable_sdk/models/toolauthtype.py +1 -0
- {syllable_sdk-0.35.72.dist-info → syllable_sdk-0.35.78.dist-info}/METADATA +1 -1
- {syllable_sdk-0.35.72.dist-info → syllable_sdk-0.35.78.dist-info}/RECORD +7 -7
- {syllable_sdk-0.35.72.dist-info → syllable_sdk-0.35.78.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.35.
|
|
6
|
+
__version__: str = "0.35.78"
|
|
7
7
|
__openapi_doc_version__: str = "0.0.2"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.35.
|
|
8
|
+
__gen_version__: str = "2.686.7"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.35.78 2.686.7 0.0.2 syllable-sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -5,6 +5,7 @@ from .prompthistorylinkedtool import (
|
|
|
5
5
|
PromptHistoryLinkedTool,
|
|
6
6
|
PromptHistoryLinkedToolTypedDict,
|
|
7
7
|
)
|
|
8
|
+
from .promptllmconfig import PromptLlmConfig, PromptLlmConfigTypedDict
|
|
8
9
|
from datetime import datetime
|
|
9
10
|
from pydantic import model_serializer
|
|
10
11
|
from syllable_sdk.types import (
|
|
@@ -37,7 +38,7 @@ class PromptHistoryTypedDict(TypedDict):
|
|
|
37
38
|
r"""Whether this version of the prompt was created before history of tool-prompt linking was tracked"""
|
|
38
39
|
prompt_description: NotRequired[Nullable[str]]
|
|
39
40
|
r"""Description of the prompt at this version"""
|
|
40
|
-
llm_config: NotRequired[Nullable[
|
|
41
|
+
llm_config: NotRequired[Nullable[PromptLlmConfigTypedDict]]
|
|
41
42
|
r"""String representation of LLM config for the prompt at this version"""
|
|
42
43
|
comments: NotRequired[Nullable[str]]
|
|
43
44
|
r"""Comments describing the change that resulted in this version"""
|
|
@@ -72,7 +73,7 @@ class PromptHistory(BaseModel):
|
|
|
72
73
|
prompt_description: OptionalNullable[str] = UNSET
|
|
73
74
|
r"""Description of the prompt at this version"""
|
|
74
75
|
|
|
75
|
-
llm_config: OptionalNullable[
|
|
76
|
+
llm_config: OptionalNullable[PromptLlmConfig] = UNSET
|
|
76
77
|
r"""String representation of LLM config for the prompt at this version"""
|
|
77
78
|
|
|
78
79
|
comments: OptionalNullable[str] = UNSET
|
|
@@ -46,6 +46,8 @@ class PromptResponseTypedDict(TypedDict):
|
|
|
46
46
|
r"""Email address of the user who most recently updated the prompt"""
|
|
47
47
|
agent_count: NotRequired[Nullable[int]]
|
|
48
48
|
r"""The number of agents using the prompt"""
|
|
49
|
+
version_number: NotRequired[Nullable[int]]
|
|
50
|
+
r"""The version number of the current version of the prompt"""
|
|
49
51
|
tools_full: NotRequired[Nullable[List[ToolResponseTypedDict]]]
|
|
50
52
|
r"""Full definitions of tools to which the prompt has access"""
|
|
51
53
|
|
|
@@ -96,6 +98,9 @@ class PromptResponse(BaseModel):
|
|
|
96
98
|
agent_count: OptionalNullable[int] = UNSET
|
|
97
99
|
r"""The number of agents using the prompt"""
|
|
98
100
|
|
|
101
|
+
version_number: OptionalNullable[int] = UNSET
|
|
102
|
+
r"""The version number of the current version of the prompt"""
|
|
103
|
+
|
|
99
104
|
tools_full: OptionalNullable[List[ToolResponse]] = UNSET
|
|
100
105
|
r"""Full definitions of tools to which the prompt has access"""
|
|
101
106
|
|
|
@@ -108,6 +113,7 @@ class PromptResponse(BaseModel):
|
|
|
108
113
|
"edit_comments",
|
|
109
114
|
"last_updated_by",
|
|
110
115
|
"agent_count",
|
|
116
|
+
"version_number",
|
|
111
117
|
"tools_full",
|
|
112
118
|
]
|
|
113
119
|
nullable_fields = [
|
|
@@ -117,6 +123,7 @@ class PromptResponse(BaseModel):
|
|
|
117
123
|
"last_updated",
|
|
118
124
|
"last_updated_by",
|
|
119
125
|
"agent_count",
|
|
126
|
+
"version_number",
|
|
120
127
|
"tools_full",
|
|
121
128
|
]
|
|
122
129
|
null_default_fields = []
|
|
@@ -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=GBDhLgY311x5BnnLtmXrcJNnI6VAzHTHuYn2QSsOGMU,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
|
|
@@ -230,12 +230,12 @@ syllable_sdk/models/permissionresponse.py,sha256=UieyRpT5ubQ-08bx3DMdIkGi9KYbJaL
|
|
|
230
230
|
syllable_sdk/models/post_get_dashboardop.py,sha256=hJgtyzQsZ9Qyc5mqpfULcwHqXyAM8JucU5qRq6_VJ9g,504
|
|
231
231
|
syllable_sdk/models/post_list_dashboardop.py,sha256=5A9ntb9WgxBqwysitzuz9rL1rETjfXsxw_L6Ytho3Gg,5055
|
|
232
232
|
syllable_sdk/models/promptcreaterequest.py,sha256=n9Yzm2O7-x1obUTQA35w5S7qYttOOh7DSAGhNGsIOvI,3149
|
|
233
|
-
syllable_sdk/models/prompthistory.py,sha256=
|
|
233
|
+
syllable_sdk/models/prompthistory.py,sha256=pjqX8zjgVPrqrX5ax_ezMuTSeFS_aWmzRelHepJP7-E,4086
|
|
234
234
|
syllable_sdk/models/prompthistorylinkedtool.py,sha256=gVLskq9wKSPlaXadgWc6o2ELdKOvqSZIOoUx9RXpVBQ,1351
|
|
235
235
|
syllable_sdk/models/promptllmconfig.py,sha256=l231V2X2d42PrRAhC0xImKTWJBmcAztRrgGeprvtfqI,3213
|
|
236
236
|
syllable_sdk/models/promptllmprovider.py,sha256=nkDRxVE2qld5aX-rSyDO1KpD1nv5OVVEvxVQnl7VWUY,276
|
|
237
237
|
syllable_sdk/models/promptproperties.py,sha256=C9c3NRaEAx-ml5XkFYP2UxDm9QauYs7rawgrUYeGFGY,568
|
|
238
|
-
syllable_sdk/models/promptresponse.py,sha256=
|
|
238
|
+
syllable_sdk/models/promptresponse.py,sha256=kJAnFpGBuTdkv7uNv7RTg0qydwHIb4II2yB-2BG_K5k,5466
|
|
239
239
|
syllable_sdk/models/prompts_deleteop.py,sha256=gw1CB5A5Fd1CTaSMlQSDtJc0ZMKju7XcR-BnNZzWLDU,635
|
|
240
240
|
syllable_sdk/models/prompts_get_by_idop.py,sha256=r-ugo1ui1v-5Ns9dbDNuB_0R7-QD9aKUebT6noQHDVg,490
|
|
241
241
|
syllable_sdk/models/prompts_historyop.py,sha256=psp95NjtZ-G1ItE6AUgNO8OgZ0nh2vu8HZ7zK8vz9MY,490
|
|
@@ -294,7 +294,7 @@ syllable_sdk/models/tool_get_by_nameop.py,sha256=gC_yKqlpCDgi0Xf_CDGKxlHdKPv27ZR
|
|
|
294
294
|
syllable_sdk/models/tool_listop.py,sha256=3t8UvAQE-elpQxCdqNJ7Zv8euIvbxSatVcUAmZezG9w,4997
|
|
295
295
|
syllable_sdk/models/toolagentinfo.py,sha256=-2Ei3lSLNvgp3XTr1oNyJ9njTQ_oKiakOTsjnUWUM7g,605
|
|
296
296
|
syllable_sdk/models/toolargumentlocation.py,sha256=jeJSwcRnE_pv-eLFXr-f_qonNKbLI4p0uW2OxvFCLV0,530
|
|
297
|
-
syllable_sdk/models/toolauthtype.py,sha256=
|
|
297
|
+
syllable_sdk/models/toolauthtype.py,sha256=6vr4EocS4hFep8U7UzPb5FAi0nQSv9mVOqvcfeJHL9I,265
|
|
298
298
|
syllable_sdk/models/toolcreaterequest.py,sha256=hcvljGwPgPFNgk48ASIPjs9KORmMND6MlIW9L5EcCgk,1003
|
|
299
299
|
syllable_sdk/models/tooldefinition.py,sha256=X0wEwLMzWFUOv1V6ime1LjSusckoPt1NJ38FEmmBWgA,4501
|
|
300
300
|
syllable_sdk/models/tooldetailresponse.py,sha256=6JVm3M-ZW6pWB3kyThlUVFzHc2QAQWyv4OuLwtUfvvI,4805
|
|
@@ -373,6 +373,6 @@ syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,525
|
|
|
373
373
|
syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
374
374
|
syllable_sdk/v1.py,sha256=zMPQz7GtZxDuziCcmhKk2IS7EfiaW9WfiSIqAGbb-o4,53448
|
|
375
375
|
syllable_sdk/workflows.py,sha256=kQPJzssdldotkipoWzu1ddas4IKbpFdXkGFDwDkWt1M,64777
|
|
376
|
-
syllable_sdk-0.35.
|
|
377
|
-
syllable_sdk-0.35.
|
|
378
|
-
syllable_sdk-0.35.
|
|
376
|
+
syllable_sdk-0.35.78.dist-info/METADATA,sha256=3vA1tFCIobTeO3H11ZPZ148DWixEtAVxThX1OthUosY,46166
|
|
377
|
+
syllable_sdk-0.35.78.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
378
|
+
syllable_sdk-0.35.78.dist-info/RECORD,,
|
|
File without changes
|