letta-client 0.1.294__py3-none-any.whl → 0.1.295__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.
Potentially problematic release.
This version of letta-client might be problematic. Click here for more details.
- letta_client/__init__.py +4 -0
- letta_client/agents/types/create_agent_request_tool_rules_item.py +2 -0
- letta_client/agents/types/update_agent_tool_rules_item.py +2 -0
- letta_client/core/client_wrapper.py +2 -2
- letta_client/templates/__init__.py +2 -0
- letta_client/templates/types/__init__.py +4 -0
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py +4 -0
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template.py +22 -0
- letta_client/types/__init__.py +2 -0
- letta_client/types/agent_state_tool_rules_item.py +2 -0
- letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py +2 -0
- letta_client/types/requires_approval_tool_rule.py +33 -0
- {letta_client-0.1.294.dist-info → letta_client-0.1.295.dist-info}/METADATA +1 -1
- {letta_client-0.1.294.dist-info → letta_client-0.1.295.dist-info}/RECORD +15 -13
- {letta_client-0.1.294.dist-info → letta_client-0.1.295.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -232,6 +232,7 @@ from .types import (
|
|
|
232
232
|
ReasoningMessageSource,
|
|
233
233
|
RedactedReasoningContent,
|
|
234
234
|
RequiredBeforeExitToolRule,
|
|
235
|
+
RequiresApprovalToolRule,
|
|
235
236
|
ResponseFormatJsonObject,
|
|
236
237
|
ResponseFormatJsonSchema,
|
|
237
238
|
ResponseFormatText,
|
|
@@ -386,6 +387,7 @@ from .templates import (
|
|
|
386
387
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemFour,
|
|
387
388
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemMaxCountLimit,
|
|
388
389
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne,
|
|
390
|
+
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate,
|
|
389
391
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven,
|
|
390
392
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemTwo,
|
|
391
393
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemZero,
|
|
@@ -686,6 +688,7 @@ __all__ = [
|
|
|
686
688
|
"ReasoningMessageSource",
|
|
687
689
|
"RedactedReasoningContent",
|
|
688
690
|
"RequiredBeforeExitToolRule",
|
|
691
|
+
"RequiresApprovalToolRule",
|
|
689
692
|
"ResponseFormatJsonObject",
|
|
690
693
|
"ResponseFormatJsonSchema",
|
|
691
694
|
"ResponseFormatText",
|
|
@@ -736,6 +739,7 @@ __all__ = [
|
|
|
736
739
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemFour",
|
|
737
740
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemMaxCountLimit",
|
|
738
741
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne",
|
|
742
|
+
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate",
|
|
739
743
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven",
|
|
740
744
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemTwo",
|
|
741
745
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemZero",
|
|
@@ -9,6 +9,7 @@ from ...types.init_tool_rule import InitToolRule
|
|
|
9
9
|
from ...types.max_count_per_step_tool_rule import MaxCountPerStepToolRule
|
|
10
10
|
from ...types.parent_tool_rule import ParentToolRule
|
|
11
11
|
from ...types.required_before_exit_tool_rule import RequiredBeforeExitToolRule
|
|
12
|
+
from ...types.requires_approval_tool_rule import RequiresApprovalToolRule
|
|
12
13
|
from ...types.terminal_tool_rule import TerminalToolRule
|
|
13
14
|
|
|
14
15
|
CreateAgentRequestToolRulesItem = typing.Union[
|
|
@@ -19,5 +20,6 @@ CreateAgentRequestToolRulesItem = typing.Union[
|
|
|
19
20
|
MaxCountPerStepToolRule,
|
|
20
21
|
ParentToolRule,
|
|
21
22
|
RequiredBeforeExitToolRule,
|
|
23
|
+
RequiresApprovalToolRule,
|
|
22
24
|
InitToolRule,
|
|
23
25
|
]
|
|
@@ -9,6 +9,7 @@ from ...types.init_tool_rule import InitToolRule
|
|
|
9
9
|
from ...types.max_count_per_step_tool_rule import MaxCountPerStepToolRule
|
|
10
10
|
from ...types.parent_tool_rule import ParentToolRule
|
|
11
11
|
from ...types.required_before_exit_tool_rule import RequiredBeforeExitToolRule
|
|
12
|
+
from ...types.requires_approval_tool_rule import RequiresApprovalToolRule
|
|
12
13
|
from ...types.terminal_tool_rule import TerminalToolRule
|
|
13
14
|
|
|
14
15
|
UpdateAgentToolRulesItem = typing.Union[
|
|
@@ -19,5 +20,6 @@ UpdateAgentToolRulesItem = typing.Union[
|
|
|
19
20
|
MaxCountPerStepToolRule,
|
|
20
21
|
ParentToolRule,
|
|
21
22
|
RequiredBeforeExitToolRule,
|
|
23
|
+
RequiresApprovalToolRule,
|
|
22
24
|
InitToolRule,
|
|
23
25
|
]
|
|
@@ -24,10 +24,10 @@ class BaseClientWrapper:
|
|
|
24
24
|
|
|
25
25
|
def get_headers(self) -> typing.Dict[str, str]:
|
|
26
26
|
headers: typing.Dict[str, str] = {
|
|
27
|
-
"User-Agent": "letta-client/0.1.
|
|
27
|
+
"User-Agent": "letta-client/0.1.295",
|
|
28
28
|
"X-Fern-Language": "Python",
|
|
29
29
|
"X-Fern-SDK-Name": "letta-client",
|
|
30
|
-
"X-Fern-SDK-Version": "0.1.
|
|
30
|
+
"X-Fern-SDK-Version": "0.1.295",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
|
@@ -17,6 +17,7 @@ from .types import (
|
|
|
17
17
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemFour,
|
|
18
18
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemMaxCountLimit,
|
|
19
19
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne,
|
|
20
|
+
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate,
|
|
20
21
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven,
|
|
21
22
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemTwo,
|
|
22
23
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemZero,
|
|
@@ -58,6 +59,7 @@ __all__ = [
|
|
|
58
59
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemFour",
|
|
59
60
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemMaxCountLimit",
|
|
60
61
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne",
|
|
62
|
+
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate",
|
|
61
63
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven",
|
|
62
64
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemTwo",
|
|
63
65
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemZero",
|
|
@@ -34,6 +34,9 @@ from .templates_get_template_snapshot_response_agents_item_tool_rules_item_max_c
|
|
|
34
34
|
from .templates_get_template_snapshot_response_agents_item_tool_rules_item_one import (
|
|
35
35
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne,
|
|
36
36
|
)
|
|
37
|
+
from .templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template import (
|
|
38
|
+
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate,
|
|
39
|
+
)
|
|
37
40
|
from .templates_get_template_snapshot_response_agents_item_tool_rules_item_seven import (
|
|
38
41
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven,
|
|
39
42
|
)
|
|
@@ -75,6 +78,7 @@ __all__ = [
|
|
|
75
78
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemFour",
|
|
76
79
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemMaxCountLimit",
|
|
77
80
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne",
|
|
81
|
+
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate",
|
|
78
82
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven",
|
|
79
83
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemTwo",
|
|
80
84
|
"TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemZero",
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py
CHANGED
|
@@ -17,6 +17,9 @@ from .templates_get_template_snapshot_response_agents_item_tool_rules_item_max_c
|
|
|
17
17
|
from .templates_get_template_snapshot_response_agents_item_tool_rules_item_one import (
|
|
18
18
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemOne,
|
|
19
19
|
)
|
|
20
|
+
from .templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template import (
|
|
21
|
+
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate,
|
|
22
|
+
)
|
|
20
23
|
from .templates_get_template_snapshot_response_agents_item_tool_rules_item_seven import (
|
|
21
24
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven,
|
|
22
25
|
)
|
|
@@ -36,4 +39,5 @@ TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItem = typing.Union[
|
|
|
36
39
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemFive,
|
|
37
40
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemMaxCountLimit,
|
|
38
41
|
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemSeven,
|
|
42
|
+
TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate,
|
|
39
43
|
]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ...core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class TemplatesGetTemplateSnapshotResponseAgentsItemToolRulesItemPromptTemplate(UncheckedBaseModel):
|
|
11
|
+
tool_name: str
|
|
12
|
+
type: typing.Optional[typing.Literal["requires_approval"]] = None
|
|
13
|
+
prompt_template: typing.Optional[str] = None
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
letta_client/types/__init__.py
CHANGED
|
@@ -253,6 +253,7 @@ from .reasoning_message import ReasoningMessage
|
|
|
253
253
|
from .reasoning_message_source import ReasoningMessageSource
|
|
254
254
|
from .redacted_reasoning_content import RedactedReasoningContent
|
|
255
255
|
from .required_before_exit_tool_rule import RequiredBeforeExitToolRule
|
|
256
|
+
from .requires_approval_tool_rule import RequiresApprovalToolRule
|
|
256
257
|
from .response_format_json_object import ResponseFormatJsonObject
|
|
257
258
|
from .response_format_json_schema import ResponseFormatJsonSchema
|
|
258
259
|
from .response_format_text import ResponseFormatText
|
|
@@ -563,6 +564,7 @@ __all__ = [
|
|
|
563
564
|
"ReasoningMessageSource",
|
|
564
565
|
"RedactedReasoningContent",
|
|
565
566
|
"RequiredBeforeExitToolRule",
|
|
567
|
+
"RequiresApprovalToolRule",
|
|
566
568
|
"ResponseFormatJsonObject",
|
|
567
569
|
"ResponseFormatJsonSchema",
|
|
568
570
|
"ResponseFormatText",
|
|
@@ -9,6 +9,7 @@ from .init_tool_rule import InitToolRule
|
|
|
9
9
|
from .max_count_per_step_tool_rule import MaxCountPerStepToolRule
|
|
10
10
|
from .parent_tool_rule import ParentToolRule
|
|
11
11
|
from .required_before_exit_tool_rule import RequiredBeforeExitToolRule
|
|
12
|
+
from .requires_approval_tool_rule import RequiresApprovalToolRule
|
|
12
13
|
from .terminal_tool_rule import TerminalToolRule
|
|
13
14
|
|
|
14
15
|
AgentStateToolRulesItem = typing.Union[
|
|
@@ -19,5 +20,6 @@ AgentStateToolRulesItem = typing.Union[
|
|
|
19
20
|
MaxCountPerStepToolRule,
|
|
20
21
|
ParentToolRule,
|
|
21
22
|
RequiredBeforeExitToolRule,
|
|
23
|
+
RequiresApprovalToolRule,
|
|
22
24
|
InitToolRule,
|
|
23
25
|
]
|
|
@@ -9,6 +9,7 @@ from .init_tool_rule import InitToolRule
|
|
|
9
9
|
from .max_count_per_step_tool_rule import MaxCountPerStepToolRule
|
|
10
10
|
from .parent_tool_rule import ParentToolRule
|
|
11
11
|
from .required_before_exit_tool_rule import RequiredBeforeExitToolRule
|
|
12
|
+
from .requires_approval_tool_rule import RequiresApprovalToolRule
|
|
12
13
|
from .terminal_tool_rule import TerminalToolRule
|
|
13
14
|
|
|
14
15
|
LettaSchemasAgentFileAgentSchemaToolRulesItem = typing.Union[
|
|
@@ -19,5 +20,6 @@ LettaSchemasAgentFileAgentSchemaToolRulesItem = typing.Union[
|
|
|
19
20
|
MaxCountPerStepToolRule,
|
|
20
21
|
ParentToolRule,
|
|
21
22
|
RequiredBeforeExitToolRule,
|
|
23
|
+
RequiresApprovalToolRule,
|
|
22
24
|
InitToolRule,
|
|
23
25
|
]
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class RequiresApprovalToolRule(UncheckedBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Represents a tool rule configuration which requires approval before the tool can be invoked.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
tool_name: str = pydantic.Field()
|
|
16
|
+
"""
|
|
17
|
+
The name of the tool. Must exist in the database for the user's organization.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type: typing.Literal["requires_approval"] = "requires_approval"
|
|
21
|
+
prompt_template: typing.Optional[str] = pydantic.Field(default=None)
|
|
22
|
+
"""
|
|
23
|
+
Optional Jinja2 template for generating agent prompt about this tool rule. Template can use variables like 'tool_name' and rule-specific attributes.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
if IS_PYDANTIC_V2:
|
|
27
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
28
|
+
else:
|
|
29
|
+
|
|
30
|
+
class Config:
|
|
31
|
+
frozen = True
|
|
32
|
+
smart_union = True
|
|
33
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=SYqMmQyPAq_7ir2_2UbLf-1mk6WV5ec5lxhO6NOuoMw,26703
|
|
2
2
|
letta_client/agents/__init__.py,sha256=mrreK8Hk5PitAA7gomrc2g9EW9idazMGLDTHBAPrRPw,1912
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=CUwVh5FHgD0YP3VNhUrWdkedMWk49yH3IiDD589AWEM,15809
|
|
@@ -58,9 +58,9 @@ letta_client/agents/types/agents_search_request_search_item_zero.py,sha256=rgwRm
|
|
|
58
58
|
letta_client/agents/types/agents_search_request_sort_by.py,sha256=svlezWF0A2JQlEnjjIXTMJnkrCjRot1r7ITCP1nQ4iQ,186
|
|
59
59
|
letta_client/agents/types/agents_search_response.py,sha256=MQwHnZgk0p2Eb85smfWE6qpKAIrOKijbjKcaHpKpfjI,816
|
|
60
60
|
letta_client/agents/types/create_agent_request_response_format.py,sha256=KelhhSSmhjllSbI4NxxY7MVdII28-KLI6DC9-BMRomo,410
|
|
61
|
-
letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=
|
|
61
|
+
letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=CUKSYO0ZpKjtpiITefr14AajfQwkzGF60kT8vCQD8oI,905
|
|
62
62
|
letta_client/agents/types/update_agent_response_format.py,sha256=31HEHo0H99dzGPi4m3U0LAoGpWrzjEx_t4b72kVhBYI,403
|
|
63
|
-
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=
|
|
63
|
+
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=H9sgZurQhGAIUvuFNNrcKldyDKCtGtHc9KyiOZugvxM,898
|
|
64
64
|
letta_client/base_client.py,sha256=5zKvhW_CnSDY1TRvAMcX_iYbIBbLob6NRrd7ezom37w,10698
|
|
65
65
|
letta_client/batches/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
66
66
|
letta_client/batches/client.py,sha256=hvgUXvClZjuNiJu0J3u9X35W6Z7DZlZXaSjnl1-pIk0,10886
|
|
@@ -89,7 +89,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
89
89
|
letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item_access_item.py,sha256=kNHfEWFl7u71Pu8NPqutod0a2NXfvq8il05Hqm0iBB4,284
|
|
90
90
|
letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
|
|
91
91
|
letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
92
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
92
|
+
letta_client/core/client_wrapper.py,sha256=rnYnUHjDLczk2pUfx68X6cRPHQ66jFCq_fE9mKmqIok,2776
|
|
93
93
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
94
94
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
95
95
|
letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -199,7 +199,7 @@ letta_client/tags/raw_client.py,sha256=DQXEgzOuCygBMbzX63Sc9UwfueALa5rUHH3c8jb4O
|
|
|
199
199
|
letta_client/telemetry/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
200
200
|
letta_client/telemetry/client.py,sha256=cHMxfLAFjbT-XLtG0o04tGMaRnabrPuixbfHV3HFitE,3042
|
|
201
201
|
letta_client/telemetry/raw_client.py,sha256=Zxs3KkYCfs6M1b4vJbzHunZs7SzSiYAiy4Nb7tFAKC8,4962
|
|
202
|
-
letta_client/templates/__init__.py,sha256=
|
|
202
|
+
letta_client/templates/__init__.py,sha256=G3ToD1RUnDkj2rZV3M82hiudHSGhcf2XI-EpIzImUMQ,3896
|
|
203
203
|
letta_client/templates/agents/__init__.py,sha256=Nb3AeDuJhSba_DbgHKuCUY1b3PT1jj3-YMJ7uW7RIAk,393
|
|
204
204
|
letta_client/templates/agents/client.py,sha256=HCCEZZ3b0tGonxDNbiPuXadoZu_x1G_OtBdTHRBpG4M,7088
|
|
205
205
|
letta_client/templates/agents/raw_client.py,sha256=RGf_8ZaBbkS3sE7qrKqirL8Mu-E7CDRZNEKFWCJ3v4E,9552
|
|
@@ -209,7 +209,7 @@ letta_client/templates/agents/types/agents_create_request_initial_message_sequen
|
|
|
209
209
|
letta_client/templates/agents/types/agents_create_response.py,sha256=P5sppbD_qW7I9suv5Ykm7tlgnh5a3omYggA8JgLw2RY,637
|
|
210
210
|
letta_client/templates/client.py,sha256=zydy4k7OeFkXjQcJfpykOpySyzyFY0yD9bev1Wog9ag,26795
|
|
211
211
|
letta_client/templates/raw_client.py,sha256=zj0HIvY8RU4HxlDMIfyK22gSC4_lOWdAIVWx-0lxHeM,43678
|
|
212
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
212
|
+
letta_client/templates/types/__init__.py,sha256=gbQnd4ODVSObpyIJGiJ2n8EY1TgYpDbeq6hphxhysJY,5670
|
|
213
213
|
letta_client/templates/types/templates_create_template_response.py,sha256=UKaNiwW7WNX4Q3_IqGkFJaatMcdSS-Tsf8gDT2i677w,1082
|
|
214
214
|
letta_client/templates/types/templates_delete_template_response.py,sha256=_DUyWh9jtgw8u_U_JsV8N-RhPcY32QLAQZsUCSXDCTY,583
|
|
215
215
|
letta_client/templates/types/templates_fork_template_response.py,sha256=zX8aCR5Z8sEgXJHHzxsPeYRNMW2HfD26EN5Mlwrt-ZI,1080
|
|
@@ -218,12 +218,13 @@ letta_client/templates/types/templates_get_template_snapshot_response_agents_ite
|
|
|
218
218
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_memory_variables.py,sha256=POh1PTstz0UC_rOnkpEyIQI0yHrANeM6Y5vuJlJAruU,877
|
|
219
219
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_memory_variables_data_item.py,sha256=TNgE_92wCm2MEGERb_q24_GKzvbh1z1I3pchuwowowA,816
|
|
220
220
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties.py,sha256=9s-Abzd4QfGjeOyzrdwrPLad4mZx7z4cvX7aOKbeyHs,1084
|
|
221
|
-
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=
|
|
221
|
+
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=_fQY5-2x_-A0v5hho_jRUeZrvowovjuzVy9ZHlGST0w,2321
|
|
222
222
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_output_mapping.py,sha256=LLnaNqnXFnoLRTZo2O9nCFlkLTkdj2Re1h6ItsM-_RQ,895
|
|
223
223
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_five.py,sha256=6yyJTWEoTy6UVFHqqzbvfY_i1VmWLuZVaRBWU8EbKx8,738
|
|
224
224
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_four.py,sha256=f6ocdxac6oeozltoJK9JyDRf2mSlxC4iYkOoXx5iQRk,731
|
|
225
225
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_max_count_limit.py,sha256=SfDBej2crgo7Bp9vksmT-abkCBJTDWJ9fC5zmZ0Tz7U,772
|
|
226
226
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_one.py,sha256=hCBKI3NoMG3ka0nE_DxScubJuyCKmvTBpk916BLygfo,726
|
|
227
|
+
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template.py,sha256=rscHsbtUlHbzfxz5QUcLd85ny-8AEq81TFrCvDVDjiM,745
|
|
227
228
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_seven.py,sha256=q66qeWM8QE-ySyWv2mnkEnO8pntQrXkifw-zLvtqVns,766
|
|
228
229
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_two.py,sha256=LNzwnMLjyskkT4-2WoRD3D9-JYZXpfcLAB91LAqzwxc,726
|
|
229
230
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_zero.py,sha256=1vTNmInW_YrU9H9Ik361lMnzHSKjd48J1KE5eY3n0r8,770
|
|
@@ -253,7 +254,7 @@ letta_client/tools/types/streaming_response.py,sha256=V1qT-XAqm-z7zffJ7W1JKPCaxZ
|
|
|
253
254
|
letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzuBSKv8O3Y7qSUFrCiXEvSRk,373
|
|
254
255
|
letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
|
|
255
256
|
letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
|
|
256
|
-
letta_client/types/__init__.py,sha256=
|
|
257
|
+
letta_client/types/__init__.py,sha256=Bdxss7qDyKIxQZz5-WCqt0qew8WIthoxoEZEc9v-JGs,29382
|
|
257
258
|
letta_client/types/action_model.py,sha256=VTXavHB6J2d4MjjTMEpkuEyVaiTHyj1FGfa4j8kN6hQ,1241
|
|
258
259
|
letta_client/types/action_parameters_model.py,sha256=s1mJ4tycms8UmCFsxyjKr6RbghSuqv35xpa9mK42sjg,829
|
|
259
260
|
letta_client/types/action_response_model.py,sha256=LcML150OvsKimVV3sP4jSFh8pVxQXn_r_ff8DADOr3c,825
|
|
@@ -262,7 +263,7 @@ letta_client/types/agent_file_attachment.py,sha256=J8zj7RkNkKr2ikgY1nbtcMNiBzZch
|
|
|
262
263
|
letta_client/types/agent_file_schema.py,sha256=yD3QqRVWQr7T9M7OXL9KWNCP9BiR9wZC48xKnGzqsxQ,2212
|
|
263
264
|
letta_client/types/agent_state.py,sha256=gnAIpQvmKbkJoOJNp6Udj2Z8SCmER9-UPurnCKvUapw,6923
|
|
264
265
|
letta_client/types/agent_state_response_format.py,sha256=EsaiTnlxRPkGPBc67DCsVAARsGubFQM7Xbs12jtsvWw,378
|
|
265
|
-
letta_client/types/agent_state_tool_rules_item.py,sha256=
|
|
266
|
+
letta_client/types/agent_state_tool_rules_item.py,sha256=m0DKEipSMed98rueO2oqqBNhNp5-l-mfBvUGHSS0Ibg,825
|
|
266
267
|
letta_client/types/agent_type.py,sha256=4_JSgy0zfiqtUcKh5XMfRDYaablo4RuzUmIstRZ2FsI,370
|
|
267
268
|
letta_client/types/app_auth_scheme.py,sha256=A1ha3TmjgFw3-mW8r44LPB_Go3pdbGxJ_LHrDChSG14,1243
|
|
268
269
|
letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
|
|
@@ -416,7 +417,7 @@ letta_client/types/letta_request_config.py,sha256=7Jxvs4Vja2GguDvESB5YxbpOCHBpJN
|
|
|
416
417
|
letta_client/types/letta_response.py,sha256=XsdGEunygyUZc-jegfZ0dqmERToeFQShvJY5JNmGTHM,1396
|
|
417
418
|
letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=VGnQ-6FJAV0c4UGs-FgKoHPjwdpt83qN10W1aiUJ1Ts,9129
|
|
418
419
|
letta_client/types/letta_schemas_agent_file_agent_schema_response_format.py,sha256=ZXsdcfac2W9-vcdCAmdCT6YX1n59LKTbdNHfWkykGm8,406
|
|
419
|
-
letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=
|
|
420
|
+
letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=vjLR2zQtZl__7v6WNY-NtaxF2UBqiTiorO-Gw6B9rbc,847
|
|
420
421
|
letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=1oBl0jYC-6KcOeTBSHe3625Wv_wKh46uI1QN7w2FVIQ,2870
|
|
421
422
|
letta_client/types/letta_schemas_agent_file_message_schema_content.py,sha256=7Co1Px87C9iREMZ3882Pt2NJCufjU5bOp0JgDnf46DQ,248
|
|
422
423
|
letta_client/types/letta_schemas_agent_file_tool_schema.py,sha256=FlArylR1PkQDmk50zvxX_1DN3jmANkJKfD_OHs-AvV0,2973
|
|
@@ -483,6 +484,7 @@ letta_client/types/reasoning_message.py,sha256=-eZpuDwFkRjNcfrebI3u_7HIP62sxXnZl
|
|
|
483
484
|
letta_client/types/reasoning_message_source.py,sha256=GYOWGm2mje1yYbR8E2kbAeQS--VDrGlpsobEBQHE2cU,186
|
|
484
485
|
letta_client/types/redacted_reasoning_content.py,sha256=d3L2OoswodrCBaeCsP9VSDd7VUmVFEMN9ORPCUGsz6c,736
|
|
485
486
|
letta_client/types/required_before_exit_tool_rule.py,sha256=QAoqKyCXkGyIRuHeIE3WW86XQYAn1U6_5QMcUiCCrZY,1058
|
|
487
|
+
letta_client/types/requires_approval_tool_rule.py,sha256=kygEgrWtbtOFcFnBrjP10ZINyICukh4bwK_tPFTae9A,1117
|
|
486
488
|
letta_client/types/response_format_json_object.py,sha256=84tj2_clAPEqC4vrFJoGlh1EqodNMiLckPeXGKPWnww,612
|
|
487
489
|
letta_client/types/response_format_json_schema.py,sha256=Yxz8QL1_s7vIAuzap82IPfylT0cTrR3BLrpp7Wn8VVc,676
|
|
488
490
|
letta_client/types/response_format_text.py,sha256=q9U4VDi57FPpqCVVPk-_21e0fbIohBPLDqWR-tAV2ls,592
|
|
@@ -566,6 +568,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
566
568
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
567
569
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
568
570
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
569
|
-
letta_client-0.1.
|
|
570
|
-
letta_client-0.1.
|
|
571
|
-
letta_client-0.1.
|
|
571
|
+
letta_client-0.1.295.dist-info/METADATA,sha256=EE-ZQnCxjQpF7cKExX70vYWLo6zU4wJBPfQ3x04X9hg,5782
|
|
572
|
+
letta_client-0.1.295.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
573
|
+
letta_client-0.1.295.dist-info/RECORD,,
|
|
File without changes
|