letta-client 1.0.0a11__py3-none-any.whl → 1.0.0a13__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/_client.py +23 -0
- letta_client/_streaming.py +4 -6
- letta_client/_version.py +1 -1
- letta_client/resources/__init__.py +14 -0
- letta_client/resources/agents/agents.py +0 -8
- letta_client/resources/groups/groups.py +1 -17
- letta_client/resources/groups/messages.py +8 -2
- letta_client/resources/identities/identities.py +1 -17
- letta_client/resources/mcp_servers/__init__.py +47 -0
- letta_client/resources/mcp_servers/mcp_servers.py +1165 -0
- letta_client/resources/mcp_servers/refresh.py +192 -0
- letta_client/resources/mcp_servers/tools.py +351 -0
- letta_client/resources/runs/messages.py +8 -2
- letta_client/resources/steps/steps.py +1 -9
- letta_client/resources/tools.py +4 -4
- letta_client/types/__init__.py +6 -0
- letta_client/types/agent_create_params.py +1 -5
- letta_client/types/group_create_params.py +1 -5
- letta_client/types/group_modify_params.py +1 -5
- letta_client/types/identity_create_params.py +1 -5
- letta_client/types/identity_upsert_params.py +1 -5
- letta_client/types/mcp_server_create_params.py +67 -0
- letta_client/types/mcp_server_create_response.py +74 -0
- letta_client/types/mcp_server_list_response.py +86 -0
- letta_client/types/mcp_server_modify_params.py +76 -0
- letta_client/types/mcp_server_modify_response.py +74 -0
- letta_client/types/mcp_server_retrieve_response.py +74 -0
- letta_client/types/mcp_servers/__init__.py +8 -0
- letta_client/types/mcp_servers/refresh_trigger_params.py +12 -0
- letta_client/types/mcp_servers/tool_list_response.py +10 -0
- letta_client/types/mcp_servers/tool_run_params.py +15 -0
- letta_client/types/mcp_servers/tool_run_response.py +43 -0
- letta_client/types/step_list_params.py +1 -5
- letta_client/types/tool.py +4 -4
- {letta_client-1.0.0a11.dist-info → letta_client-1.0.0a13.dist-info}/METADATA +1 -1
- {letta_client-1.0.0a11.dist-info → letta_client-1.0.0a13.dist-info}/RECORD +38 -23
- {letta_client-1.0.0a11.dist-info → letta_client-1.0.0a13.dist-info}/WHEEL +0 -0
- {letta_client-1.0.0a11.dist-info → letta_client-1.0.0a13.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from ..._models import BaseModel
|
|
7
|
+
from ..agent_state import AgentState
|
|
8
|
+
|
|
9
|
+
__all__ = ["ToolRunResponse"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ToolRunResponse(BaseModel):
|
|
13
|
+
status: Literal["success", "error"]
|
|
14
|
+
"""The status of the tool execution and return object"""
|
|
15
|
+
|
|
16
|
+
agent_state: Optional[AgentState] = None
|
|
17
|
+
"""Representation of an agent's state.
|
|
18
|
+
|
|
19
|
+
This is the state of the agent at a given time, and is persisted in the DB
|
|
20
|
+
backend. The state has all the information needed to recreate a persisted agent.
|
|
21
|
+
|
|
22
|
+
Parameters: id (str): The unique identifier of the agent. name (str): The name
|
|
23
|
+
of the agent (must be unique to the user). created_at (datetime): The datetime
|
|
24
|
+
the agent was created. message_ids (List[str]): The ids of the messages in the
|
|
25
|
+
agent's in-context memory. memory (Memory): The in-context memory of the agent.
|
|
26
|
+
tools (List[str]): The tools used by the agent. This includes any memory editing
|
|
27
|
+
functions specified in `memory`. system (str): The system prompt used by the
|
|
28
|
+
agent. llm_config (LLMConfig): The LLM configuration used by the agent.
|
|
29
|
+
embedding_config (EmbeddingConfig): The embedding configuration used by the
|
|
30
|
+
agent.
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
func_return: Optional[object] = None
|
|
34
|
+
"""The function return object"""
|
|
35
|
+
|
|
36
|
+
sandbox_config_fingerprint: Optional[str] = None
|
|
37
|
+
"""The fingerprint of the config for the sandbox"""
|
|
38
|
+
|
|
39
|
+
stderr: Optional[List[str]] = None
|
|
40
|
+
"""Captured stderr from the function invocation"""
|
|
41
|
+
|
|
42
|
+
stdout: Optional[List[str]] = None
|
|
43
|
+
"""Captured stdout (prints, logs) from function invocation"""
|
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import Optional
|
|
6
|
-
from typing_extensions import Literal,
|
|
6
|
+
from typing_extensions import Literal, TypedDict
|
|
7
7
|
|
|
8
8
|
from .._types import SequenceNotStr
|
|
9
|
-
from .._utils import PropertyInfo
|
|
10
9
|
|
|
11
10
|
__all__ = ["StepListParams"]
|
|
12
11
|
|
|
@@ -56,6 +55,3 @@ class StepListParams(TypedDict, total=False):
|
|
|
56
55
|
|
|
57
56
|
trace_ids: Optional[SequenceNotStr[str]]
|
|
58
57
|
"""Filter by trace ids returned by the server"""
|
|
59
|
-
|
|
60
|
-
x_project: Annotated[str, PropertyInfo(alias="X-Project")]
|
|
61
|
-
"""Filter by project slug to associate with the group (cloud only)."""
|
letta_client/types/tool.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
import typing
|
|
4
|
+
import inspect
|
|
4
5
|
from abc import abstractmethod
|
|
6
|
+
from typing import Dict, List, Optional
|
|
5
7
|
from textwrap import dedent
|
|
6
|
-
import inspect
|
|
7
|
-
import typing
|
|
8
8
|
|
|
9
|
-
from pydantic import Field as FieldInfo
|
|
9
|
+
from pydantic import Field, Field as FieldInfo
|
|
10
10
|
|
|
11
11
|
from .._models import BaseModel
|
|
12
12
|
from .tool_type import ToolType
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0a13
|
|
4
4
|
Summary: The official Python library for the letta API
|
|
5
5
|
Project-URL: Homepage, https://github.com/letta-ai/letta-python
|
|
6
6
|
Project-URL: Repository, https://github.com/letta-ai/letta-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
letta_client/__init__.py,sha256=qGnQpgLF2IeCkTBNc7P5VwhcqjKS_Gs90jsb2et5a-w,2715
|
|
2
2
|
letta_client/_base_client.py,sha256=baHmwqnnDXr5ZRC9OXhVBA8LT3B8nD_vlRHwlWkDz0k,67053
|
|
3
|
-
letta_client/_client.py,sha256=
|
|
3
|
+
letta_client/_client.py,sha256=rzsi1QSK3MiXbd1YrTj9QPJM0jj63ac2fcOW1DuzFJ4,27625
|
|
4
4
|
letta_client/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
letta_client/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
letta_client/_exceptions.py,sha256=30Z6OdknKex-stJOwtC_5naV8ozjHcX7-IIAqvKB0xY,3218
|
|
@@ -9,9 +9,9 @@ letta_client/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
|
|
|
9
9
|
letta_client/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
10
10
|
letta_client/_resource.py,sha256=usdu71d9SVBhsKu3-JpcwE4ZYyIZJTEIFhNNUR2i-qI,1094
|
|
11
11
|
letta_client/_response.py,sha256=BKfNWi9r9l3FTwBirPt64_mnVss9gK8OYZkHb0MLL1A,28840
|
|
12
|
-
letta_client/_streaming.py,sha256=
|
|
12
|
+
letta_client/_streaming.py,sha256=IhQrxmf7HMjkKLynITPcJBzqg30SI5e2O35zFOP1AMk,11283
|
|
13
13
|
letta_client/_types.py,sha256=dz_siM5FFPTKJs3m9q2ocNjY26xAZ98zPp7sQlsSm0U,7242
|
|
14
|
-
letta_client/_version.py,sha256=
|
|
14
|
+
letta_client/_version.py,sha256=JkDHYdSYcrQ-zg_-0-46-gcf3jpEFQwwjGGrU_cEByk,173
|
|
15
15
|
letta_client/pagination.py,sha256=lQ8asLHRqlok2V6OLrTR6TVgvvqFxvYm5IFJSNYFXxE,7967
|
|
16
16
|
letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
letta_client/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -27,12 +27,12 @@ letta_client/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mc
|
|
|
27
27
|
letta_client/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
28
|
letta_client/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
29
29
|
letta_client/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
30
|
-
letta_client/resources/__init__.py,sha256=
|
|
30
|
+
letta_client/resources/__init__.py,sha256=5f9u41Tj5QuVrmX5lhI5zDt6FG_Qxzm4gIRnw4cidfU,6520
|
|
31
31
|
letta_client/resources/archives.py,sha256=_YWmXSr_GkmGCDjfGU_EdSIFB9e0qC_BeCg0EF2YM70,22484
|
|
32
32
|
letta_client/resources/tags.py,sha256=vuNCEAN0xZ_98X5w4Q95oOfGmNlC5A5ZQYrDfAuv07I,8458
|
|
33
|
-
letta_client/resources/tools.py,sha256
|
|
33
|
+
letta_client/resources/tools.py,sha256=LxGMgcPoACs-rtaEfKs_RNSluLPA0kjoMX2oBZvSdY4,70176
|
|
34
34
|
letta_client/resources/agents/__init__.py,sha256=kMBB1oA9e0oxT91T6Ck4AT-BKIBFQPKTENALxMNHN3g,3265
|
|
35
|
-
letta_client/resources/agents/agents.py,sha256=
|
|
35
|
+
letta_client/resources/agents/agents.py,sha256=UolbAMRbQ5VFvWhus5tvnVceGQ08YZBROK8x2l0-NpM,81800
|
|
36
36
|
letta_client/resources/agents/blocks.py,sha256=NUFcRR5A4yGwplmy_ldSTP_rNkKHuTjs88xOL3n2zqk,27944
|
|
37
37
|
letta_client/resources/agents/files.py,sha256=Xaj7R3ye4PqtqrMejFnWh47Hvj5OJpJvS1H-RSHMpb8,20676
|
|
38
38
|
letta_client/resources/agents/folders.py,sha256=dkHlFE_oZ3dcXXhmOkqBzglrpLUSEeyXGH00qIcM0pA,15727
|
|
@@ -50,18 +50,22 @@ letta_client/resources/folders/agents.py,sha256=0qd5nMcNqVQMNNGMfQLAdKm01BpXVdoX
|
|
|
50
50
|
letta_client/resources/folders/files.py,sha256=nNtsVaok4mIxkNWuW-coZipFQGLGemkuVvRS6p0TNvo,17989
|
|
51
51
|
letta_client/resources/folders/folders.py,sha256=9WGYvy0b-3EwLLh87K5XoW2eqvPUZ35R8XrYNJ9svxQ,29045
|
|
52
52
|
letta_client/resources/groups/__init__.py,sha256=XRg7EgECFtIm8h8RjGcNEJyiZpw6XJqoG0aJwGsUADw,1028
|
|
53
|
-
letta_client/resources/groups/groups.py,sha256=
|
|
54
|
-
letta_client/resources/groups/messages.py,sha256=
|
|
53
|
+
letta_client/resources/groups/groups.py,sha256=ieqdZUSFtm7-svHEMFQ85tt4VSGJt45lyVGgSTRf8Sw,27542
|
|
54
|
+
letta_client/resources/groups/messages.py,sha256=Gb9ZbK2ftCGVgEFAgJJBMb9rUON0fBO4I_ICcHllxIA,45765
|
|
55
55
|
letta_client/resources/identities/__init__.py,sha256=DaxkyrCra0xPWgEyZVRgVapuasUybvZokYssYq_QnyM,2006
|
|
56
56
|
letta_client/resources/identities/agents.py,sha256=KeejDcc4xDrqCQMV79QvK1VDRTCSIS4GqvgQUCFQRIc,9709
|
|
57
57
|
letta_client/resources/identities/blocks.py,sha256=JnvtUXjXQe_SyWlLqljAAc8tZ68rLj-3Hof4ccca2YA,8720
|
|
58
|
-
letta_client/resources/identities/identities.py,sha256=
|
|
58
|
+
letta_client/resources/identities/identities.py,sha256=lAlBDdNBeFxsVnXCC-G1y1I5q8gbj1ARbeXewb_fADQ,37012
|
|
59
59
|
letta_client/resources/identities/properties.py,sha256=8GcBy9r9DAuTmvZdlkFcTlfH_hbSNpzD0O_VPRrx2bQ,6483
|
|
60
|
+
letta_client/resources/mcp_servers/__init__.py,sha256=XWX7T21d7jL5dtYvIcx8jqXwO704JmpIltAd0Ed8RKU,1505
|
|
61
|
+
letta_client/resources/mcp_servers/mcp_servers.py,sha256=Mvwj9-fLePcDKCVYZrWwT0B8vNzp3u97rlCOlBw2760,45078
|
|
62
|
+
letta_client/resources/mcp_servers/refresh.py,sha256=HH8UD2jMRi0YS-RYCJZzktf_dWnhg4SeMqTnQgLOODI,6934
|
|
63
|
+
letta_client/resources/mcp_servers/tools.py,sha256=YGTeTVXHSknvXJSrUOgD0V6Na87LmwTit8jvUcHxibE,13294
|
|
60
64
|
letta_client/resources/models/__init__.py,sha256=Tvswac6gTvPG6C45MOrEYYjWY6dEdWagxey_P6fgYkU,1054
|
|
61
65
|
letta_client/resources/models/embeddings.py,sha256=1y7h-pd_LW7Dyf9q_7CV1MF6KVfSRHCfLlPuaM5B-KE,5238
|
|
62
66
|
letta_client/resources/models/models.py,sha256=hL_X-WVFOIzxpbnfgeAU-yPTSOn0mj5YTaiqKKcVIL4,8217
|
|
63
67
|
letta_client/resources/runs/__init__.py,sha256=Oz3VS4QWQ-W1ZkMdw1EuuH33QdUIgyxFhtAROdmI7RQ,1876
|
|
64
|
-
letta_client/resources/runs/messages.py,sha256=
|
|
68
|
+
letta_client/resources/runs/messages.py,sha256=UqdiizM0A4OGq6oIZObQT3K5H6SjJ9E53WqnJoesb9Y,14005
|
|
65
69
|
letta_client/resources/runs/runs.py,sha256=x79KGrUTCePKG1XYhn4fQgDrZRyqgyfdiOSLSzplceA,16614
|
|
66
70
|
letta_client/resources/runs/steps.py,sha256=hR33PtnoHUFrxLSj8-Rb3kAMRebyzlYjaSxqn8vyEXc,7981
|
|
67
71
|
letta_client/resources/runs/usage.py,sha256=rsarShRjn8sylRDfsO2BcM25dk2xGr0Njal9CKbeDgs,5824
|
|
@@ -69,14 +73,14 @@ letta_client/resources/steps/__init__.py,sha256=OV3vMIlQtZsrqFyxxdFcdAy4CZHlf2p1
|
|
|
69
73
|
letta_client/resources/steps/feedback.py,sha256=c6Ph3zVOVQduy4pjuHQWmTOtEITsESmBg6dJ4dP2kt4,7131
|
|
70
74
|
letta_client/resources/steps/messages.py,sha256=rd5ATYa8q40jrGEP908jXZf8jdpVMD_4ACN_JpJj4yo,8935
|
|
71
75
|
letta_client/resources/steps/metrics.py,sha256=_oFTnx8VS1-H4TkBaqWcxuxjjO_SuAdshoUC-PRvJy8,6049
|
|
72
|
-
letta_client/resources/steps/steps.py,sha256
|
|
76
|
+
letta_client/resources/steps/steps.py,sha256=6rNNRNgp0bQYie-FUfQ9hs82tCL_tcj7aHW7p2K9yMk,18204
|
|
73
77
|
letta_client/resources/steps/trace.py,sha256=Q11XSAoMKkEnePvm4eIUZ-UZeMu6QxmQedgH4TI8swQ,5951
|
|
74
78
|
letta_client/resources/templates/__init__.py,sha256=4wWq5EBTkiBFzEIzLMP5rkzQ94peMZkl1roLp8iPK_g,1041
|
|
75
79
|
letta_client/resources/templates/agents.py,sha256=vc757D2B5BKTz8DoSTepQx1aChV4GFgXArM2cHfXG7s,9351
|
|
76
80
|
letta_client/resources/templates/templates.py,sha256=ATGrBCFSA06XpjR5rbWtXAT4vq66DwnDia5_XcM8z7Q,3695
|
|
77
|
-
letta_client/types/__init__.py,sha256=
|
|
81
|
+
letta_client/types/__init__.py,sha256=17n1efIhPXCKUWjmO0PnQM3dTvEzaj_5m1ku9Shhrok,8923
|
|
78
82
|
letta_client/types/agent_count_response.py,sha256=SdUd1SYP0pwONLc_7_bESZm1mwsgrNP93JiWq47bKdo,198
|
|
79
|
-
letta_client/types/agent_create_params.py,sha256=
|
|
83
|
+
letta_client/types/agent_create_params.py,sha256=vNWwi6vzxhwut0YCcI75-m9T9SYvaOwRju9Bw-XFIrI,7165
|
|
80
84
|
letta_client/types/agent_environment_variable.py,sha256=CDCeL5bHPsx9A_3SE3dPB5x8ceT2JB8FlQRwd1lVlbY,1144
|
|
81
85
|
letta_client/types/agent_export_file_params.py,sha256=Aj_O87Sv-3JUg31wIbWLHpRG4632Yp9YqLztKDqbmuk,523
|
|
82
86
|
letta_client/types/agent_export_file_response.py,sha256=c5eYslclKaFVoEBzrROlKbvKCTvJO7KJ5PBAgFLqJyk,208
|
|
@@ -119,20 +123,20 @@ letta_client/types/folder_list_response.py,sha256=pCdn2XIbn5F8Aw2Vy2_fEUIYzewxVV
|
|
|
119
123
|
letta_client/types/folder_modify_params.py,sha256=lnw17f57-7kD661OFmymEIrmnD2mE0Vz6CwCt7V-Zic,781
|
|
120
124
|
letta_client/types/group.py,sha256=pHBvXJ1pwFxCCZJIdZr7dkmA5hnfBLJjR2MgcKrgFm4,1574
|
|
121
125
|
letta_client/types/group_count_response.py,sha256=957tbXl5QChGQtuB96Ka0cC-8IXEhWHdt4-2S-FAw9A,198
|
|
122
|
-
letta_client/types/group_create_params.py,sha256=
|
|
126
|
+
letta_client/types/group_create_params.py,sha256=bcUZwegDvRjqucO4b4aodNAv_JIlEy_Y1xzFvTpWF-g,1145
|
|
123
127
|
letta_client/types/group_list_params.py,sha256=37JRsmoS6ZTVCvGzdg2-uXCfxn4zfkuAs7_yuqN8t3E,1050
|
|
124
|
-
letta_client/types/group_modify_params.py,sha256=
|
|
128
|
+
letta_client/types/group_modify_params.py,sha256=U8aovgL3ht4DVCUXWL4CF0KJj2ERsBGZN4_D1zOftRM,2404
|
|
125
129
|
letta_client/types/health_response.py,sha256=q4SqkchWIWVrGLsGeQTjy8qr1BynEKgm2vjCnAg6wfI,218
|
|
126
130
|
letta_client/types/identity.py,sha256=NyVfbNd2-LsHPwowJw04_bxLmKiz6mE54XG-E7T8FVI,970
|
|
127
131
|
letta_client/types/identity_count_response.py,sha256=KGDSczG-xwOpFXjuxivkbF0df7WELT3R4IeBkzW0IE4,204
|
|
128
|
-
letta_client/types/identity_create_params.py,sha256=
|
|
132
|
+
letta_client/types/identity_create_params.py,sha256=N4g_cd6XupzukARThZbscAIvv9weaOf5c8iqmsRWOVg,1101
|
|
129
133
|
letta_client/types/identity_list_params.py,sha256=M5zNhXGSrSZ7PUAe5QYtlTeemvDn213zKBA7m_HsT0A,1124
|
|
130
134
|
letta_client/types/identity_list_response.py,sha256=n8WiHIiX5BOutoKuyqZreiCV8UhzOt8YFyOfbdvYvQU,269
|
|
131
135
|
letta_client/types/identity_modify_params.py,sha256=iBGIPczHJiJr4IcrlKg6-4URsRCIA6as6LoppEkuLQ0,1021
|
|
132
136
|
letta_client/types/identity_property.py,sha256=wI7QIJCpfUBiOeHVnbFH7fN1Vxr0jLoWsomp6vHJ-bc,489
|
|
133
137
|
letta_client/types/identity_property_param.py,sha256=cxsJfRQs8bISHOg_ji7u6L_MD4OaQxCDJ3qhPKPqdlY,566
|
|
134
138
|
letta_client/types/identity_type.py,sha256=Zx2_g64c3_aO7Ta9I6v1-fX9k36V1Rji0sCZ1J0xgRs,223
|
|
135
|
-
letta_client/types/identity_upsert_params.py,sha256=
|
|
139
|
+
letta_client/types/identity_upsert_params.py,sha256=YM4HNEfwXMagm7sJmGwYQSO58h0bBxCYbviwc3zZn5s,1101
|
|
136
140
|
letta_client/types/init_tool_rule.py,sha256=3s2PBplBfjAcjnPX6NaDWpxVpa3fzqhS3M3xeqKCbHs,960
|
|
137
141
|
letta_client/types/init_tool_rule_param.py,sha256=o8CqWIK4_iDTEe99mPmvb0I0rXQtNt7nBC8A5JBR674,986
|
|
138
142
|
letta_client/types/json_object_response_format.py,sha256=fYuhVjIpiT51YqE160hDnvip9FrZmUdDRA6-5BpKIw4,364
|
|
@@ -145,6 +149,12 @@ letta_client/types/llm_config_param.py,sha256=wMQe3gggOikEfRyN30LgQdmsOUAD6IrZTj
|
|
|
145
149
|
letta_client/types/manager_type.py,sha256=DvgmoA49kUmjtRBmfJb8iapLupb-2iy78G1Gw-AbNmg,278
|
|
146
150
|
letta_client/types/max_count_per_step_tool_rule.py,sha256=OF-eF1FdcI48mcpZamFEp6IuII-yhVZ50yYVcF7BTe8,660
|
|
147
151
|
letta_client/types/max_count_per_step_tool_rule_param.py,sha256=__ZUX-0KbIEioPGhHydRvd1q7rATwqusBEvmQElkgec,703
|
|
152
|
+
letta_client/types/mcp_server_create_params.py,sha256=yEJruphvGUJ4b_WPYC6ljrXHZ6tWR039gnyKiIr24bY,1990
|
|
153
|
+
letta_client/types/mcp_server_create_response.py,sha256=3Y9nDSvsuHg6fvZkmOwUEQBI3AwCq08yUzetfoy5dUc,2106
|
|
154
|
+
letta_client/types/mcp_server_list_response.py,sha256=E_ccSgVpsUh8EkZRo85_8zItRSvhuBKUtEeyOHPNliQ,2466
|
|
155
|
+
letta_client/types/mcp_server_modify_params.py,sha256=DxIPmWbqUd3p4TwLF8bYJGakEHusigB_EP75Pt2rcW8,2172
|
|
156
|
+
letta_client/types/mcp_server_modify_response.py,sha256=dx4YS-LWQ8hvddrPdHX91gj0mts6Cqxo06w6AdNbfDY,2106
|
|
157
|
+
letta_client/types/mcp_server_retrieve_response.py,sha256=55seTQW4c4HQL_hpf8wLOrchXZtcTjv2BhVzlH_muxM,2110
|
|
148
158
|
letta_client/types/message_create_param.py,sha256=EoFS5N7nNqVptVUnQS0cWyd81e7DwHIx9CvKtbbMJps,1147
|
|
149
159
|
letta_client/types/model_list_params.py,sha256=gIwbmlVRsz-PmI18eqj9VDKsQGS6cujNL-LHeTvw1q8,499
|
|
150
160
|
letta_client/types/model_list_response.py,sha256=QB71C10tow-weixPXPndi62L9pBg9_nF-1UC4W0Pg0w,267
|
|
@@ -166,7 +176,7 @@ letta_client/types/run_list_params.py,sha256=NlhObeRvbiU2wG_FTwEozTCOJinC_ZevZZO
|
|
|
166
176
|
letta_client/types/run_list_response.py,sha256=G73U6hxFfp6wjpAxvTAOaRw9DkdQS6NIs73BdO9XeV0,251
|
|
167
177
|
letta_client/types/sleeptime_manager_param.py,sha256=rwg20GKfOPTnGLiMApQ-V1-sshFp3Ncn_WNHXNfy__g,424
|
|
168
178
|
letta_client/types/step.py,sha256=HEaZCWHB802VOZX8ADswSgh2J-GduelP0ln5aU73JqY,2995
|
|
169
|
-
letta_client/types/step_list_params.py,sha256=
|
|
179
|
+
letta_client/types/step_list_params.py,sha256=zyloM3DqBGTmDo1qDuu6rEzyI71o3hbXwiJF6hg-gvk,1600
|
|
170
180
|
letta_client/types/stop_reason_type.py,sha256=c65VgfH1QeppsLMqD09IkYL4FLBC1yHKQdD9OGsgjDQ,405
|
|
171
181
|
letta_client/types/supervisor_manager_param.py,sha256=Jxnf9Yi8-kzGBIMqFCkJSMqWvsp3AXPzKQOqHxurOps,353
|
|
172
182
|
letta_client/types/tag_list_params.py,sha256=_RnY8jTjiAnm7vYTXgjyo6LeVMcvVzsQkHycgQOiM40,992
|
|
@@ -175,7 +185,7 @@ letta_client/types/terminal_tool_rule.py,sha256=awI46gpnXzb1yEF8P8-LC_mTDKPsyPb9
|
|
|
175
185
|
letta_client/types/terminal_tool_rule_param.py,sha256=6nVUm9k1XaDwmbZjsdmSoyaT6N4MTKRS6oxIyViuX40,533
|
|
176
186
|
letta_client/types/text_response_format.py,sha256=JXjHFwVTXR3EAXEgyqnPrI5BnPEWp0BXtLW6pdK5GoE,345
|
|
177
187
|
letta_client/types/text_response_format_param.py,sha256=0vse-dbRXfuIGUIf7qcWbEafroNfQz5ZsstHxeE-GG8,337
|
|
178
|
-
letta_client/types/tool.py,sha256=
|
|
188
|
+
letta_client/types/tool.py,sha256=lDF2GH2u3v9GyiiWatPifvzzzKIovZrMmn_7k7YXb6E,6045
|
|
179
189
|
letta_client/types/tool_count_params.py,sha256=En9uTa2LsREUJSuql5okpUxnSEePjkqL2LiZt1xf8gM,1115
|
|
180
190
|
letta_client/types/tool_count_response.py,sha256=fxkWNTsSBbEJl7EhEuq9nqEZC161PsEbglIpw33jrgM,196
|
|
181
191
|
letta_client/types/tool_create_params.py,sha256=ourfiChPPF2YoNxmpHmIXq89EPevrTetZtYWwKCZX3s,1610
|
|
@@ -277,6 +287,11 @@ letta_client/types/identities/__init__.py,sha256=SQiVtprSocQYiddZcYSxaWRwRakw6nH
|
|
|
277
287
|
letta_client/types/identities/agent_list_params.py,sha256=RyGM8SzPHzBTwuIAWIhyyk--gvFppZYueCSn6gSzp2E,1248
|
|
278
288
|
letta_client/types/identities/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
|
|
279
289
|
letta_client/types/identities/property_upsert_params.py,sha256=BUnzZp4_FhfEgbWZYX0r-SwRSPKvpvFGaX-NYexQs00,404
|
|
290
|
+
letta_client/types/mcp_servers/__init__.py,sha256=vGk2UG3iqqOsZSp4NnZnjm-lFV2wBuGF0R_iEzMDdGY,399
|
|
291
|
+
letta_client/types/mcp_servers/refresh_trigger_params.py,sha256=BAlzzEghiqZ59TCX4LzAr23R_MVsXdJHCsAK_QMwHjw,309
|
|
292
|
+
letta_client/types/mcp_servers/tool_list_response.py,sha256=ZcDgozkPHhscFNdPkdSW3J3ZL6NjmCA0EY33EqCoge0,250
|
|
293
|
+
letta_client/types/mcp_servers/tool_run_params.py,sha256=D--rxN8zAm0P7k8jlF2jYefASOmxdxaQluVKRiR1qc8,379
|
|
294
|
+
letta_client/types/mcp_servers/tool_run_response.py,sha256=jT2s13HU_hWxSruIy6Eo4ai8vVx1zkkFbQnNB6_baqQ,1717
|
|
280
295
|
letta_client/types/models/__init__.py,sha256=ldgePtY0WELsx-lMqSQk1640HoGRcSqS0E7pMa38D_g,207
|
|
281
296
|
letta_client/types/models/embedding_list_response.py,sha256=qYfIdlT2K9HfQM4HT8q5aRyLTjHxhZ5OMSqv0_2Yy3E,294
|
|
282
297
|
letta_client/types/runs/__init__.py,sha256=Riz_7Dvo-6bmNzacxeOskEMg02AUa09z734xhie-ucA,420
|
|
@@ -291,7 +306,7 @@ letta_client/types/steps/message_list_response.py,sha256=KOOB_tmBTiMjXRPtuZocvn_
|
|
|
291
306
|
letta_client/types/steps/metric_retrieve_response.py,sha256=2rqlYkeGpwu4JYBPg9PszUKbT63x4AEDfo8wAJSdoew,1385
|
|
292
307
|
letta_client/types/templates/__init__.py,sha256=eRs8IaeLPk-OtK1SeqFlKxHQ1_thE0sgK2BZ2ioSyUw,195
|
|
293
308
|
letta_client/types/templates/agent_create_params.py,sha256=kvmC7ldFkNdx7kf6r_CK3O88BATWZjKW3kdzc475rFk,1406
|
|
294
|
-
letta_client-1.0.
|
|
295
|
-
letta_client-1.0.
|
|
296
|
-
letta_client-1.0.
|
|
297
|
-
letta_client-1.0.
|
|
309
|
+
letta_client-1.0.0a13.dist-info/METADATA,sha256=6XkeWOnnOgpNIrfHKZ5q8uvin-AU5t7f3FdL4T8-HjU,15982
|
|
310
|
+
letta_client-1.0.0a13.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
311
|
+
letta_client-1.0.0a13.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
|
|
312
|
+
letta_client-1.0.0a13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|