letta-client 1.0.0a9__py3-none-any.whl → 1.0.0a10__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.

Files changed (45) hide show
  1. letta_client/_version.py +1 -1
  2. letta_client/resources/agents/agents.py +396 -396
  3. letta_client/resources/agents/blocks.py +200 -190
  4. letta_client/resources/agents/messages.py +367 -367
  5. letta_client/resources/archives.py +101 -101
  6. letta_client/resources/blocks/blocks.py +241 -222
  7. letta_client/resources/folders/folders.py +133 -133
  8. letta_client/resources/groups/groups.py +141 -141
  9. letta_client/resources/groups/messages.py +198 -198
  10. letta_client/resources/identities/blocks.py +7 -7
  11. letta_client/resources/identities/identities.py +141 -141
  12. letta_client/resources/tools.py +794 -194
  13. letta_client/types/__init__.py +11 -7
  14. letta_client/types/{agent_update_params.py → agent_modify_params.py} +2 -2
  15. letta_client/types/agent_state.py +6 -3
  16. letta_client/types/agents/__init__.py +6 -3
  17. letta_client/types/agents/block.py +6 -3
  18. letta_client/types/agents/block_list_response.py +63 -0
  19. letta_client/types/agents/{block_update_params.py → block_modify_params.py} +8 -5
  20. letta_client/types/agents/block_modify_response.py +63 -0
  21. letta_client/types/agents/block_retrieve_response.py +63 -0
  22. letta_client/types/agents/{message_update_params.py → message_modify_params.py} +2 -2
  23. letta_client/types/agents/{message_update_response.py → message_modify_response.py} +2 -2
  24. letta_client/types/{archive_update_params.py → archive_modify_params.py} +2 -2
  25. letta_client/types/block_create_params.py +6 -3
  26. letta_client/types/block_create_response.py +63 -0
  27. letta_client/types/block_list_response.py +63 -0
  28. letta_client/types/{block_update_params.py → block_modify_params.py} +8 -5
  29. letta_client/types/block_modify_response.py +63 -0
  30. letta_client/types/block_retrieve_response.py +63 -0
  31. letta_client/types/create_block_param.py +6 -3
  32. letta_client/types/{folder_update_params.py → folder_modify_params.py} +2 -2
  33. letta_client/types/{group_update_params.py → group_modify_params.py} +2 -2
  34. letta_client/types/groups/__init__.py +2 -2
  35. letta_client/types/groups/{message_update_params.py → message_modify_params.py} +2 -2
  36. letta_client/types/groups/{message_update_response.py → message_modify_response.py} +2 -2
  37. letta_client/types/identities/__init__.py +1 -0
  38. letta_client/types/identities/block_list_response.py +63 -0
  39. letta_client/types/{identity_update_params.py → identity_modify_params.py} +2 -2
  40. letta_client/types/tool.py +106 -2
  41. letta_client/types/{tool_update_params.py → tool_modify_params.py} +2 -2
  42. {letta_client-1.0.0a9.dist-info → letta_client-1.0.0a10.dist-info}/METADATA +1 -1
  43. {letta_client-1.0.0a9.dist-info → letta_client-1.0.0a10.dist-info}/RECORD +45 -37
  44. {letta_client-1.0.0a9.dist-info → letta_client-1.0.0a10.dist-info}/WHEEL +0 -0
  45. {letta_client-1.0.0a9.dist-info → letta_client-1.0.0a10.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,63 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, Optional
4
+
5
+ from .._models import BaseModel
6
+
7
+ __all__ = ["BlockRetrieveResponse"]
8
+
9
+
10
+ class BlockRetrieveResponse(BaseModel):
11
+ value: str
12
+ """Value of the block."""
13
+
14
+ id: Optional[str] = None
15
+ """The human-friendly ID of the Block"""
16
+
17
+ base_template_id: Optional[str] = None
18
+ """(Deprecated) The base template id of the block."""
19
+
20
+ created_by_id: Optional[str] = None
21
+ """The id of the user that made this Block."""
22
+
23
+ deployment_id: Optional[str] = None
24
+ """(Deprecated) The id of the deployment."""
25
+
26
+ description: Optional[str] = None
27
+ """Description of the block."""
28
+
29
+ entity_id: Optional[str] = None
30
+ """(Deprecated) The id of the entity within the template."""
31
+
32
+ hidden: Optional[bool] = None
33
+ """(Deprecated) If set to True, the block will be hidden."""
34
+
35
+ is_template: Optional[bool] = None
36
+ """Whether the block is a template (e.g. saved human/persona options)."""
37
+
38
+ label: Optional[str] = None
39
+ """Label of the block (e.g. 'human', 'persona') in the context window."""
40
+
41
+ last_updated_by_id: Optional[str] = None
42
+ """The id of the user that last updated this Block."""
43
+
44
+ limit: Optional[int] = None
45
+ """Character limit of the block."""
46
+
47
+ metadata: Optional[Dict[str, object]] = None
48
+ """Metadata of the block."""
49
+
50
+ preserve_on_migration: Optional[bool] = None
51
+ """(Deprecated) Preserve the block on template migration."""
52
+
53
+ project_id: Optional[str] = None
54
+ """The associated project id."""
55
+
56
+ read_only: Optional[bool] = None
57
+ """(Deprecated) Whether the agent has read-only access to the block."""
58
+
59
+ template_id: Optional[str] = None
60
+ """(Deprecated) The id of the template."""
61
+
62
+ template_name: Optional[str] = None
63
+ """(Deprecated) The name of the block template (if it is a template)."""
@@ -38,9 +38,6 @@ class CreateBlockParam(TypedDict, total=False):
38
38
  metadata: Optional[Dict[str, object]]
39
39
  """Metadata of the block."""
40
40
 
41
- name: Optional[str]
42
- """The id of the template."""
43
-
44
41
  preserve_on_migration: Optional[bool]
45
42
  """Preserve the block on template migration."""
46
43
 
@@ -49,3 +46,9 @@ class CreateBlockParam(TypedDict, total=False):
49
46
 
50
47
  read_only: bool
51
48
  """Whether the agent has read-only access to the block."""
49
+
50
+ template_id: Optional[str]
51
+ """The id of the template."""
52
+
53
+ template_name: Optional[str]
54
+ """Name of the block if it is a template."""
@@ -7,10 +7,10 @@ from typing_extensions import TypedDict
7
7
 
8
8
  from .embedding_config_param import EmbeddingConfigParam
9
9
 
10
- __all__ = ["FolderUpdateParams"]
10
+ __all__ = ["FolderModifyParams"]
11
11
 
12
12
 
13
- class FolderUpdateParams(TypedDict, total=False):
13
+ class FolderModifyParams(TypedDict, total=False):
14
14
  description: Optional[str]
15
15
  """The description of the source."""
16
16
 
@@ -9,7 +9,7 @@ from .._types import SequenceNotStr
9
9
  from .._utils import PropertyInfo
10
10
 
11
11
  __all__ = [
12
- "GroupUpdateParams",
12
+ "GroupModifyParams",
13
13
  "ManagerConfig",
14
14
  "ManagerConfigRoundRobinManagerUpdate",
15
15
  "ManagerConfigSupervisorManagerUpdate",
@@ -19,7 +19,7 @@ __all__ = [
19
19
  ]
20
20
 
21
21
 
22
- class GroupUpdateParams(TypedDict, total=False):
22
+ class GroupModifyParams(TypedDict, total=False):
23
23
  agent_ids: Optional[SequenceNotStr[str]]
24
24
 
25
25
  description: Optional[str]
@@ -4,6 +4,6 @@ from __future__ import annotations
4
4
 
5
5
  from .message_list_params import MessageListParams as MessageListParams
6
6
  from .message_send_params import MessageSendParams as MessageSendParams
7
+ from .message_modify_params import MessageModifyParams as MessageModifyParams
7
8
  from .message_stream_params import MessageStreamParams as MessageStreamParams
8
- from .message_update_params import MessageUpdateParams as MessageUpdateParams
9
- from .message_update_response import MessageUpdateResponse as MessageUpdateResponse
9
+ from .message_modify_response import MessageModifyResponse as MessageModifyResponse
@@ -9,7 +9,7 @@ from ..agents.letta_user_message_content_union_param import LettaUserMessageCont
9
9
  from ..agents.letta_assistant_message_content_union_param import LettaAssistantMessageContentUnionParam
10
10
 
11
11
  __all__ = [
12
- "MessageUpdateParams",
12
+ "MessageModifyParams",
13
13
  "UpdateSystemMessage",
14
14
  "UpdateUserMessage",
15
15
  "UpdateReasoningMessage",
@@ -65,6 +65,6 @@ class UpdateAssistantMessage(TypedDict, total=False):
65
65
  message_type: Literal["assistant_message"]
66
66
 
67
67
 
68
- MessageUpdateParams: TypeAlias = Union[
68
+ MessageModifyParams: TypeAlias = Union[
69
69
  UpdateSystemMessage, UpdateUserMessage, UpdateReasoningMessage, UpdateAssistantMessage
70
70
  ]
@@ -14,9 +14,9 @@ from ..agents.approval_request_message import ApprovalRequestMessage
14
14
  from ..agents.hidden_reasoning_message import HiddenReasoningMessage
15
15
  from ..agents.approval_response_message import ApprovalResponseMessage
16
16
 
17
- __all__ = ["MessageUpdateResponse"]
17
+ __all__ = ["MessageModifyResponse"]
18
18
 
19
- MessageUpdateResponse: TypeAlias = Annotated[
19
+ MessageModifyResponse: TypeAlias = Annotated[
20
20
  Union[
21
21
  SystemMessage,
22
22
  UserMessage,
@@ -4,4 +4,5 @@ from __future__ import annotations
4
4
 
5
5
  from .agent_list_params import AgentListParams as AgentListParams
6
6
  from .block_list_params import BlockListParams as BlockListParams
7
+ from .block_list_response import BlockListResponse as BlockListResponse
7
8
  from .property_upsert_params import PropertyUpsertParams as PropertyUpsertParams
@@ -0,0 +1,63 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, Optional
4
+
5
+ from ..._models import BaseModel
6
+
7
+ __all__ = ["BlockListResponse"]
8
+
9
+
10
+ class BlockListResponse(BaseModel):
11
+ value: str
12
+ """Value of the block."""
13
+
14
+ id: Optional[str] = None
15
+ """The human-friendly ID of the Block"""
16
+
17
+ base_template_id: Optional[str] = None
18
+ """(Deprecated) The base template id of the block."""
19
+
20
+ created_by_id: Optional[str] = None
21
+ """The id of the user that made this Block."""
22
+
23
+ deployment_id: Optional[str] = None
24
+ """(Deprecated) The id of the deployment."""
25
+
26
+ description: Optional[str] = None
27
+ """Description of the block."""
28
+
29
+ entity_id: Optional[str] = None
30
+ """(Deprecated) The id of the entity within the template."""
31
+
32
+ hidden: Optional[bool] = None
33
+ """(Deprecated) If set to True, the block will be hidden."""
34
+
35
+ is_template: Optional[bool] = None
36
+ """Whether the block is a template (e.g. saved human/persona options)."""
37
+
38
+ label: Optional[str] = None
39
+ """Label of the block (e.g. 'human', 'persona') in the context window."""
40
+
41
+ last_updated_by_id: Optional[str] = None
42
+ """The id of the user that last updated this Block."""
43
+
44
+ limit: Optional[int] = None
45
+ """Character limit of the block."""
46
+
47
+ metadata: Optional[Dict[str, object]] = None
48
+ """Metadata of the block."""
49
+
50
+ preserve_on_migration: Optional[bool] = None
51
+ """(Deprecated) Preserve the block on template migration."""
52
+
53
+ project_id: Optional[str] = None
54
+ """The associated project id."""
55
+
56
+ read_only: Optional[bool] = None
57
+ """(Deprecated) Whether the agent has read-only access to the block."""
58
+
59
+ template_id: Optional[str] = None
60
+ """(Deprecated) The id of the template."""
61
+
62
+ template_name: Optional[str] = None
63
+ """(Deprecated) The name of the block template (if it is a template)."""
@@ -9,10 +9,10 @@ from .._types import SequenceNotStr
9
9
  from .identity_type import IdentityType
10
10
  from .identity_property_param import IdentityPropertyParam
11
11
 
12
- __all__ = ["IdentityUpdateParams"]
12
+ __all__ = ["IdentityModifyParams"]
13
13
 
14
14
 
15
- class IdentityUpdateParams(TypedDict, total=False):
15
+ class IdentityModifyParams(TypedDict, total=False):
16
16
  agent_ids: Optional[SequenceNotStr[str]]
17
17
  """The agent ids that are associated with the identity."""
18
18
 
@@ -1,15 +1,19 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  from typing import Dict, List, Optional
4
+ from abc import abstractmethod
5
+ from textwrap import dedent
6
+ import inspect
7
+ import typing
4
8
 
5
- from pydantic import Field as FieldInfo
9
+ from pydantic import Field as FieldInfo, Field, model_validator
6
10
 
7
11
  from .._models import BaseModel
8
12
  from .tool_type import ToolType
9
13
  from .npm_requirement import NpmRequirement
10
14
  from .pip_requirement import PipRequirement
11
15
 
12
- __all__ = ["Tool"]
16
+ __all__ = ["Tool", "BaseTool"]
13
17
 
14
18
 
15
19
  class Tool(BaseModel):
@@ -66,3 +70,103 @@ class Tool(BaseModel):
66
70
 
67
71
  tool_type: Optional[ToolType] = None
68
72
  """The type of the tool."""
73
+
74
+
75
+ class BaseTool(Tool):
76
+ name: Optional[str] = Field(default=None, description="The name of the function.")
77
+ args_schema: typing.Optional[typing.Type[BaseModel]] = Field(default=None, description="The schema for validating the tool's arguments.")
78
+
79
+ @abstractmethod
80
+ def run(self, *args: typing.Any, **kwargs: typing.Any) -> typing.Any:
81
+ """
82
+ Execute the tool with the provided arguments.
83
+
84
+ Parameters
85
+ ----------
86
+ self
87
+ The instance of the tool
88
+ *args
89
+ Positional arguments to pass to the tool.
90
+ **kwargs
91
+ Keyword arguments to pass to the tool.
92
+
93
+ Returns
94
+ -------
95
+ typing.Any
96
+ The result of executing the tool.
97
+ """
98
+ pass
99
+
100
+
101
+ @model_validator(mode="after")
102
+ def no_self_in_run_source(self) -> "BaseTool":
103
+ """
104
+ Validate that the provided implementation does not reference `self` in the
105
+ `run` method implementation.
106
+
107
+ This check is performed after the model is created, so `self` is guaranteed
108
+ to be set.
109
+
110
+ If `self` is found in the source code of the `run` method, a `ValueError` is
111
+ raised with a message pointing to the line and value of the offending code.
112
+ """
113
+ source_code = self.get_source_code()
114
+ if "self." in source_code:
115
+ raise_on_line, line_value = None, None
116
+ for i, line in enumerate(source_code.splitlines()):
117
+ if "self." in line:
118
+ raise_on_line, line_value = i+1, line
119
+ break;
120
+ raise ValueError(
121
+ f"Detected reference to 'self' in line {raise_on_line} of implementation, " +
122
+ f"which is not allowed:\n\n{line_value}\n\n" +
123
+ f"Please pass in the arguments directly to run() instead.")
124
+ return self
125
+
126
+
127
+ def get_source_code(self) -> str:
128
+ """
129
+ Get the source code of the `run` method, which will be executed in an agent step.
130
+
131
+ Returns
132
+ -------
133
+ str
134
+ The source code of the tool.
135
+ """
136
+ source_code = dedent(inspect.getsource(self.run))
137
+
138
+ # replace tool name
139
+ source_code = source_code.replace("def run", f"def {self.name}")
140
+
141
+ # remove self, handling several cases
142
+ source_code_lines = source_code.splitlines()
143
+ if "self" in source_code_lines[0]:
144
+ # def run(self, ...): or def run (self,): or def run(self):
145
+ source_code_lines[0] = source_code_lines[0].replace("self, ", "").replace("self,", "").replace("self", "")
146
+ else:
147
+ maybe_line_to_delete = None
148
+ for i, line in enumerate(source_code_lines):
149
+ if line.strip() == "self" or line.strip() == "self,":
150
+ # def run(
151
+ # self,
152
+ # ...
153
+ # ):
154
+ maybe_line_to_delete = i
155
+ break
156
+ elif line.strip().startswith("self"):
157
+ # def run(
158
+ # self, ...
159
+ # ):
160
+ source_code_lines[i] = line.replace("self, ", "").replace("self,", "").replace("self", "")
161
+ break
162
+ if maybe_line_to_delete is not None:
163
+ del source_code_lines[maybe_line_to_delete]
164
+ if maybe_line_to_delete == 1 and source_code_lines[0].strip()[-1] == "(" and source_code_lines[1].strip()[0] == ")":
165
+ # def run(
166
+ # self
167
+ # ):
168
+ source_code_lines[0] = source_code_lines[0].strip() + source_code_lines[1].strip()
169
+ del source_code_lines[1]
170
+
171
+ source_code = "\n".join(source_code_lines)
172
+ return source_code
@@ -10,10 +10,10 @@ from .._utils import PropertyInfo
10
10
  from .npm_requirement_param import NpmRequirementParam
11
11
  from .pip_requirement_param import PipRequirementParam
12
12
 
13
- __all__ = ["ToolUpdateParams"]
13
+ __all__ = ["ToolModifyParams"]
14
14
 
15
15
 
16
- class ToolUpdateParams(TypedDict, total=False):
16
+ class ToolModifyParams(TypedDict, total=False):
17
17
  args_json_schema: Optional[Dict[str, object]]
18
18
  """The args JSON schema of the function."""
19
19
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: letta-client
3
- Version: 1.0.0a9
3
+ Version: 1.0.0a10
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
@@ -11,7 +11,7 @@ letta_client/_resource.py,sha256=usdu71d9SVBhsKu3-JpcwE4ZYyIZJTEIFhNNUR2i-qI,109
11
11
  letta_client/_response.py,sha256=BKfNWi9r9l3FTwBirPt64_mnVss9gK8OYZkHb0MLL1A,28840
12
12
  letta_client/_streaming.py,sha256=yvRY-2Co3LGJP-i-BadgepvNxhhfMeIsXX2Rk6tcEg0,10096
13
13
  letta_client/_types.py,sha256=dz_siM5FFPTKJs3m9q2ocNjY26xAZ98zPp7sQlsSm0U,7242
14
- letta_client/_version.py,sha256=w0wgnwXobhLb0WRNKTXedV_TCJoUZ4CdqyExHJH8OfE,172
14
+ letta_client/_version.py,sha256=5OVUpinAao9eO8Up3skHCZ5v8XAQimXF_m1vF-gEbN8,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
@@ -28,34 +28,34 @@ letta_client/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZG
28
28
  letta_client/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
29
29
  letta_client/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
30
  letta_client/resources/__init__.py,sha256=t8-E03q5uhhzb8iMeqZrbjSJaMFHz0hw9g-EwLV6AeY,6017
31
- letta_client/resources/archives.py,sha256=xTYlARK5w7drhG2Kck5kMRkrOKeioQnjNo6Z2_RIrsY,22574
31
+ letta_client/resources/archives.py,sha256=YnyN8X5F9sAm3-mAXkGWjjbzqDRQ_lZfnB-wEsRE8TQ,22574
32
32
  letta_client/resources/tags.py,sha256=76SSFdJJBHLGuEL3ejulFwMxLLNTgiD2HuOqaxLx03Y,8635
33
- letta_client/resources/tools.py,sha256=8ExhSsul9XUkJArL9KS_zjRLFhjz7fC05cHCyAYqJTs,47609
33
+ letta_client/resources/tools.py,sha256=WjLLqXUq1VusQ3dEvbpdQs_9f7Kc1JBf49FZpjhH0vI,70263
34
34
  letta_client/resources/agents/__init__.py,sha256=kMBB1oA9e0oxT91T6Ck4AT-BKIBFQPKTENALxMNHN3g,3265
35
- letta_client/resources/agents/agents.py,sha256=5tkQqcxeRNeZSbk1cvrdMOk65m2jKFob76ZgbsTHyPQ,82228
36
- letta_client/resources/agents/blocks.py,sha256=5espAqEEvE9NmBUjw8WLV1EMfAvaWs-DDQutrdbebFc,27420
35
+ letta_client/resources/agents/agents.py,sha256=Vdn5OCqHv-jSk0u-x_RbASsBHSNIAhYMU6DTX-mgxoo,82228
36
+ letta_client/resources/agents/blocks.py,sha256=QMe8y8HDTO4SKmGAdImYwtFi5myrkaAS83GGVKfC1Hs,28188
37
37
  letta_client/resources/agents/files.py,sha256=zUFsoI7d0OlFKJ3QhdJ2HwkGUfVnQ8U3DuzNvOgQ2R4,20905
38
38
  letta_client/resources/agents/folders.py,sha256=N-2MUJIF0Ybr3tIRpgZVpEYbo5FsafH9T-LxDjAXrSY,15938
39
39
  letta_client/resources/agents/groups.py,sha256=Mre1J9LdVE78mW2R-xxtd66FY8_aFK-rRMglE7zP0Hg,8865
40
- letta_client/resources/agents/messages.py,sha256=pCPaCEn50YeJ0Zd8yeGI8C7I0qnOIWAL786fnUWGlA8,62096
40
+ letta_client/resources/agents/messages.py,sha256=3UCusM1UF7ioCKkML8YNYRP0rOwHa_WrKPm19RxTzWk,62096
41
41
  letta_client/resources/agents/tools.py,sha256=YLa0R1dAGRTrxMR_Aq3CTmb-28JJ5_JdpyOl1IhwFT0,20899
42
42
  letta_client/resources/batches/__init__.py,sha256=zix5YRFFCfQpPx3_vc1R2MbjLKYKJB5Ex-F_mYeVrpc,1041
43
43
  letta_client/resources/batches/batches.py,sha256=AnqFT5VGlJ7Bga8kTQUlTwe6gC7kUKf3Q5wqtN1in7A,19959
44
44
  letta_client/resources/batches/messages.py,sha256=3pifEcIFS0VYHvjaMgSJ0k8PWH5ZYD1XNNX13Y4M-D8,8885
45
45
  letta_client/resources/blocks/__init__.py,sha256=bdVcjGQZ2G8IPxXUtEIHRfJA0gopCS-rQGrxxjZY8L8,1002
46
46
  letta_client/resources/blocks/agents.py,sha256=nbmtwjZafr2ktTjybTUjIVL_BWiJfgBsQ9cwPHNgp1Y,10817
47
- letta_client/resources/blocks/blocks.py,sha256=hfnfr5eegQ766Ly0IKBbYkZleUAVC77qg3JVYL_Uu0c,37036
47
+ letta_client/resources/blocks/blocks.py,sha256=TR6Ltxw5L-wnl_vp1g9-hpa-1FcEUzTrXsYnIUMCF9w,38296
48
48
  letta_client/resources/folders/__init__.py,sha256=ANqxbwoospe99HnVPeeDt2lDyxG5m60_9QPTbehdRjs,1452
49
49
  letta_client/resources/folders/agents.py,sha256=TF2jWWA17gcm9f-qTEF30k4V1Buz0qzf8imL7E7Lsvc,8704
50
50
  letta_client/resources/folders/files.py,sha256=r4NmvgFK5lBiWSVYoFncyCSLeLRQ1NUgtHJFtoFocGs,18217
51
- letta_client/resources/folders/folders.py,sha256=COTjkhM0Zof5WEn2H-FhS4shKFbnHJgN4UJUvDZ-Id0,29134
51
+ letta_client/resources/folders/folders.py,sha256=YPcZus_-EPzzB3hHkqGbCYCHmmpoZQ34UZ3oQJIZ0Xc,29134
52
52
  letta_client/resources/groups/__init__.py,sha256=XRg7EgECFtIm8h8RjGcNEJyiZpw6XJqoG0aJwGsUADw,1028
53
- letta_client/resources/groups/groups.py,sha256=hV5bPhl_wVR8PrN0A8wbHYYqH1p0bxIhbtyzsI-UTsM,28415
54
- letta_client/resources/groups/messages.py,sha256=bU4UV3n2a07ZCfyipcHpks21YxvLXbeyEgDuSAearZo,45425
53
+ letta_client/resources/groups/groups.py,sha256=1R25YGALGCi1PfDMPY9DGZlb22t4uwer4J_JKDsl0To,28415
54
+ letta_client/resources/groups/messages.py,sha256=UxE6cN1YizDLmo7EdcxWzIVXHIZL-n-PPWaPtM215IY,45425
55
55
  letta_client/resources/identities/__init__.py,sha256=DaxkyrCra0xPWgEyZVRgVapuasUybvZokYssYq_QnyM,2006
56
56
  letta_client/resources/identities/agents.py,sha256=KeejDcc4xDrqCQMV79QvK1VDRTCSIS4GqvgQUCFQRIc,9709
57
- letta_client/resources/identities/blocks.py,sha256=wj33TgwKkbvRjFODp9X2OqsgEk0D3Lf5wT1Rdu8vy6w,8654
58
- letta_client/resources/identities/identities.py,sha256=zfdOrdbkOQcx318nKp8wnTlT5y0pTfy93a5np89bmX8,37988
57
+ letta_client/resources/identities/blocks.py,sha256=VxdZc908M71nhUp5OUFclrpkm-NnVV8IscrTs_EQOrg,8768
58
+ letta_client/resources/identities/identities.py,sha256=ya-MogilPGGuLCP7fJ0CIkC_7Q68bHHrsnEGsYo_q4E,37988
59
59
  letta_client/resources/identities/properties.py,sha256=8GcBy9r9DAuTmvZdlkFcTlfH_hbSNpzD0O_VPRrx2bQ,6483
60
60
  letta_client/resources/models/__init__.py,sha256=Tvswac6gTvPG6C45MOrEYYjWY6dEdWagxey_P6fgYkU,1054
61
61
  letta_client/resources/models/embeddings.py,sha256=1y7h-pd_LW7Dyf9q_7CV1MF6KVfSRHCfLlPuaM5B-KE,5238
@@ -74,7 +74,7 @@ letta_client/resources/steps/trace.py,sha256=Q11XSAoMKkEnePvm4eIUZ-UZeMu6QxmQedg
74
74
  letta_client/resources/templates/__init__.py,sha256=4wWq5EBTkiBFzEIzLMP5rkzQ94peMZkl1roLp8iPK_g,1041
75
75
  letta_client/resources/templates/agents.py,sha256=vc757D2B5BKTz8DoSTepQx1aChV4GFgXArM2cHfXG7s,9351
76
76
  letta_client/resources/templates/templates.py,sha256=ATGrBCFSA06XpjR5rbWtXAT4vq66DwnDia5_XcM8z7Q,3695
77
- letta_client/types/__init__.py,sha256=wkPJg-_byCF2KkVuD7RcfNr5S-SvdjdTD7oospPt3qE,7889
77
+ letta_client/types/__init__.py,sha256=FSAEuptNEEV-jjdwnK-Ydg_juJgZ3UTC616oYuuZpL0,8201
78
78
  letta_client/types/agent_count_response.py,sha256=SdUd1SYP0pwONLc_7_bESZm1mwsgrNP93JiWq47bKdo,198
79
79
  letta_client/types/agent_create_params.py,sha256=lpof9sC0HEX-Rnfw9-WB6Mwg1dpIBlsVMnE51TfCV2U,7343
80
80
  letta_client/types/agent_environment_variable.py,sha256=CDCeL5bHPsx9A_3SE3dPB5x8ceT2JB8FlQRwd1lVlbY,1144
@@ -83,28 +83,32 @@ letta_client/types/agent_export_file_response.py,sha256=c5eYslclKaFVoEBzrROlKbvK
83
83
  letta_client/types/agent_import_file_params.py,sha256=fGl277vpRgA8TbciH4UhmWK4XCZtafc5cd6VIBsPCg8,1355
84
84
  letta_client/types/agent_import_file_response.py,sha256=SetzaX66KAv1KUEsa1I2dkmFTGzE1roiSOXgTk4FdCE,297
85
85
  letta_client/types/agent_list_params.py,sha256=f-uiB1ANBPEhI6_U6YjIN7wQ-RsDajjiIPGzjrtSJdI,2550
86
+ letta_client/types/agent_modify_params.py,sha256=VDAxUPccDxBOUCvQwvz-xOLVIeqy6190_lMTXJVvsbA,5641
86
87
  letta_client/types/agent_retrieve_params.py,sha256=bukXdH3GE-NUSq13Se_fu6braZZOxHY4RUMnpsQC6yE,1100
87
- letta_client/types/agent_state.py,sha256=NsxkPiTUdPy8CVTa_If2UnU_qJX50T0jTtZnUHgrxVo,9339
88
+ letta_client/types/agent_state.py,sha256=NzGk7QgOgQPZ_D5Gltw053Iyb5GfQco1jh2gboYlP8E,9436
88
89
  letta_client/types/agent_type.py,sha256=s3xTJnio45wTIYkWNJotfD2X57Ad-26kQvIEAPtfBW0,405
89
- letta_client/types/agent_update_params.py,sha256=EkL2lhim0u8CgBHwN8aMLmlHeaEB4g6_EAActFbtEF0,5641
90
90
  letta_client/types/archive.py,sha256=KeykpT5HHZ6ofTXHYVSzgYkGgI9SzdkOAm-59pCNLUU,1207
91
91
  letta_client/types/archive_create_params.py,sha256=jgfx7deSjphAjcv6RV9uVAdbg7jEQpRP1CS1axP6hBA,507
92
92
  letta_client/types/archive_list_params.py,sha256=UapyvrrCC6WtuCEgDvWGNzYAlF8a38YD2qYP0ANMeNY,1032
93
- letta_client/types/archive_update_params.py,sha256=d9TShnWLYQzm-NyhHVgcz2r8uXC4eRJXbfqFzIEwg9M,335
93
+ letta_client/types/archive_modify_params.py,sha256=raXJhi9iABF86a8rEwl211iDBbDRMTojH0e9tiQKCp0,335
94
94
  letta_client/types/batch_create_params.py,sha256=L_eoTMfpaApo7kL85FjFMlRR87TXh29yZIoImfE0Igg,2428
95
95
  letta_client/types/batch_job.py,sha256=7WqF20P-PN66xtlPV7KKRk45lPa0qEAiiq3jgBCaPp4,2024
96
96
  letta_client/types/batch_list_params.py,sha256=bl6BOxOr0eyVktNbxLl9__5tmRXG-dNFBLPlXrCeaNc,845
97
97
  letta_client/types/block_count_response.py,sha256=rgo7gHSwJn8iQkorR8yoalkwR5cyLrD5le7v3YUM2Vo,198
98
- letta_client/types/block_create_params.py,sha256=VwfwhX8kUf3F1o8mxdzA1d8vfHN4YvA4TOU0mncg9Wc,1245
98
+ letta_client/types/block_create_params.py,sha256=m8XrM0OCCO8aRs9ZDoXV8HmyL2KdBZ6c9yy4Er1CGpo,1335
99
+ letta_client/types/block_create_response.py,sha256=q5cRjSBpbY_RTGBpofRYO5Nhxo9sAIQVDGW6ukcB-bE,1908
99
100
  letta_client/types/block_list_params.py,sha256=Earz6lU-V0HDD9V-_YrQhglg_A6UASWJgMaTq0KLpj0,2435
100
- letta_client/types/block_update_params.py,sha256=jlEf3o1LqpbUcc0NZkI1wIzdhR2kI_2DIE9DsPmj8K0,1371
101
+ letta_client/types/block_list_response.py,sha256=9pa244Fu5Gyhxvx2tKS7YtkSQB6zY5ls5KLmiUxfsvM,1904
102
+ letta_client/types/block_modify_params.py,sha256=saLnzB03wPeGPPFd2tgAAfTVbLk0wUNvX5wa3p-jcQg,1461
103
+ letta_client/types/block_modify_response.py,sha256=lGoPKeMiJp9gO_GU6lX4FWYQRkde_MqfyzFDkIQ7wzE,1908
104
+ letta_client/types/block_retrieve_response.py,sha256=i6AZuOWsYJ0_4zUOTZXWGuItCxQA5wZ6HeA9uBHPCKA,1912
101
105
  letta_client/types/child_tool_rule.py,sha256=9VmfpVcM-VB1v9SY_yN1ABXPDQeZOLfz7o98f8PCde8,1175
102
106
  letta_client/types/child_tool_rule_param.py,sha256=x_vGcGiiWl7HVDJGTX6aHfQZBnz6X5UNlqhfYIWJotc,1282
103
107
  letta_client/types/conditional_tool_rule.py,sha256=Em5yoc6EYjC5YZxEL_hYdREwtbMLr9PKyqqUsCjyil0,846
104
108
  letta_client/types/conditional_tool_rule_param.py,sha256=7WDbUlQNfRu9AUr_NgV-5R05Q7AJ4ypKMOCxw3nNWNk,865
105
109
  letta_client/types/continue_tool_rule.py,sha256=n07sVGn_P72U856-axi5NO1mddaDd2hKKM3yb9l7cmM,504
106
110
  letta_client/types/continue_tool_rule_param.py,sha256=_0JXxru5fUa0imWAi7g_OMqSv11t29VmzlKxKZrxlGc,537
107
- letta_client/types/create_block_param.py,sha256=p1qQwtQB_ij9yl0Mih00WAaMg-VvlJN_CTUTdOQME68,1243
111
+ letta_client/types/create_block_param.py,sha256=fetqqdTSTLwGBGhiwaQba4FnXxgoE1AT0CfGtL1NwUw,1333
108
112
  letta_client/types/dynamic_manager_param.py,sha256=pFaqA5fRBLTJNzduxNoEZHWLg6yiJSFKgwvumEWudzY,440
109
113
  letta_client/types/embedding_config.py,sha256=5m0iiKLT62T0hAaTQAgKr3XYCbtQfXbGyHf5Cso1GmQ,1512
110
114
  letta_client/types/embedding_config_param.py,sha256=GFyqvTbX6WdI9TFs2Px-fzSSBAYC2XXFImp7GXO9C1A,1624
@@ -112,21 +116,21 @@ letta_client/types/folder.py,sha256=jxrRX-mTAWWHu6nGhxM0dfz_DWaKl81YdGC11bjmu_o,
112
116
  letta_client/types/folder_count_response.py,sha256=BeKkjltHXaCZr9LMeA9uZbX4lvFVUh6Opb_1pddt2UI,200
113
117
  letta_client/types/folder_create_params.py,sha256=sJ3iSSQclEQHmwESkpSVhZyEY0ekn99Urk2RIlQoi4I,971
114
118
  letta_client/types/folder_list_params.py,sha256=oXb8k3fJywQXnjW_9DE2vKHbVQ3VDuJTa6-fUwLgAgk,931
115
- letta_client/types/folder_update_params.py,sha256=GQXYIQJRs-a8CuPQtSRWvdAQAhL-rk3ZTNOJsD9xIIs,781
119
+ letta_client/types/folder_modify_params.py,sha256=lnw17f57-7kD661OFmymEIrmnD2mE0Vz6CwCt7V-Zic,781
116
120
  letta_client/types/group.py,sha256=pHBvXJ1pwFxCCZJIdZr7dkmA5hnfBLJjR2MgcKrgFm4,1574
117
121
  letta_client/types/group_count_response.py,sha256=957tbXl5QChGQtuB96Ka0cC-8IXEhWHdt4-2S-FAw9A,198
118
122
  letta_client/types/group_create_params.py,sha256=qd-72B5O4c6PIgK7xIaFkxAlXBMdOwcIHaZFgVw81V0,1323
119
123
  letta_client/types/group_list_params.py,sha256=37JRsmoS6ZTVCvGzdg2-uXCfxn4zfkuAs7_yuqN8t3E,1050
120
- letta_client/types/group_update_params.py,sha256=EzGOp2m9Igsb3_IaYVmk8QNAuJulIUcikgvqX1_TB-0,2582
124
+ letta_client/types/group_modify_params.py,sha256=VjJTH-sL941j4gAuU8SWYwcqOEP3ZfiZSi9VgSUm7y8,2582
121
125
  letta_client/types/health_response.py,sha256=q4SqkchWIWVrGLsGeQTjy8qr1BynEKgm2vjCnAg6wfI,218
122
126
  letta_client/types/identity.py,sha256=NyVfbNd2-LsHPwowJw04_bxLmKiz6mE54XG-E7T8FVI,970
123
127
  letta_client/types/identity_count_response.py,sha256=KGDSczG-xwOpFXjuxivkbF0df7WELT3R4IeBkzW0IE4,204
124
128
  letta_client/types/identity_create_params.py,sha256=wHarVuxFwL3TD4Wxaa9-KWRW6GaSV9h84FXd1UO1ALg,1282
125
129
  letta_client/types/identity_list_params.py,sha256=M5zNhXGSrSZ7PUAe5QYtlTeemvDn213zKBA7m_HsT0A,1124
130
+ letta_client/types/identity_modify_params.py,sha256=iBGIPczHJiJr4IcrlKg6-4URsRCIA6as6LoppEkuLQ0,1021
126
131
  letta_client/types/identity_property.py,sha256=wI7QIJCpfUBiOeHVnbFH7fN1Vxr0jLoWsomp6vHJ-bc,489
127
132
  letta_client/types/identity_property_param.py,sha256=cxsJfRQs8bISHOg_ji7u6L_MD4OaQxCDJ3qhPKPqdlY,566
128
133
  letta_client/types/identity_type.py,sha256=Zx2_g64c3_aO7Ta9I6v1-fX9k36V1Rji0sCZ1J0xgRs,223
129
- letta_client/types/identity_update_params.py,sha256=OwCs76fjzs6S0zlkLwZtlU3Tob4a0vEp---C-JqxDa0,1021
130
134
  letta_client/types/identity_upsert_params.py,sha256=48_BPAW6VDmqC5atgg5AxXdKEGcTqyA0Wha9JrOunZg,1282
131
135
  letta_client/types/init_tool_rule.py,sha256=3s2PBplBfjAcjnPX6NaDWpxVpa3fzqhS3M3xeqKCbHs,960
132
136
  letta_client/types/init_tool_rule_param.py,sha256=o8CqWIK4_iDTEe99mPmvb0I0rXQtNt7nBC8A5JBR674,986
@@ -169,26 +173,29 @@ letta_client/types/terminal_tool_rule.py,sha256=awI46gpnXzb1yEF8P8-LC_mTDKPsyPb9
169
173
  letta_client/types/terminal_tool_rule_param.py,sha256=6nVUm9k1XaDwmbZjsdmSoyaT6N4MTKRS6oxIyViuX40,533
170
174
  letta_client/types/text_response_format.py,sha256=JXjHFwVTXR3EAXEgyqnPrI5BnPEWp0BXtLW6pdK5GoE,345
171
175
  letta_client/types/text_response_format_param.py,sha256=0vse-dbRXfuIGUIf7qcWbEafroNfQz5ZsstHxeE-GG8,337
172
- letta_client/types/tool.py,sha256=O8JTID2qIZN5orFlCBU8rBqe0aOqZXU9WcJNRj83Pps,2092
176
+ letta_client/types/tool.py,sha256=yqsWI9yC0MgZAl3RQRX_nzMRrYGyFUV7u1kuXBNAXSs,6018
173
177
  letta_client/types/tool_count_params.py,sha256=En9uTa2LsREUJSuql5okpUxnSEePjkqL2LiZt1xf8gM,1115
174
178
  letta_client/types/tool_count_response.py,sha256=fxkWNTsSBbEJl7EhEuq9nqEZC161PsEbglIpw33jrgM,196
175
179
  letta_client/types/tool_create_params.py,sha256=ourfiChPPF2YoNxmpHmIXq89EPevrTetZtYWwKCZX3s,1610
176
180
  letta_client/types/tool_list_params.py,sha256=oSwepX0mdUw07skdN6ULZbX2bxhLHbIVusuNsXQZsMQ,1639
181
+ letta_client/types/tool_modify_params.py,sha256=ITg5_E0EhkYj3g31paosi8oei7176oNkO1grFnzAKnw,1808
177
182
  letta_client/types/tool_return_message.py,sha256=cbKJnEJgD5YssoC4BId-fG5floUPOXZZQde7z-uNqoY,928
178
183
  letta_client/types/tool_type.py,sha256=bCnBz4HnX_v2a-1KoE5n3IS-tbadrkLvK3VTyvJRx2M,459
179
- letta_client/types/tool_update_params.py,sha256=sLLst0Dk69UuVotbHvpIPETpqVJ_VfUIKld8QsrLe6Q,1808
180
184
  letta_client/types/tool_upsert_base_tools_response.py,sha256=LnfdXQ1Ogg9lsOzZ6LvjsUlGUAsnskQw4xIaPiV35og,271
181
185
  letta_client/types/tool_upsert_params.py,sha256=mZW3jsUXSCIJWTHzyfbxlZwtw7ue2K1oKllK9onPOik,1610
182
186
  letta_client/types/vector_db_provider.py,sha256=qBKOulAcpdAgPJxRBU_bwNyK3LDRRDc23ZWHwOG10kU,237
183
187
  letta_client/types/voice_sleeptime_manager_param.py,sha256=fpSmxdOHcyj6h6EV1K0fqh9howUNN9d_IGUfUO9d8Do,856
184
- letta_client/types/agents/__init__.py,sha256=zBspVlwywWm3QV3Emy61vl6bOGC_q0M95v4RnJA_BRc,4936
188
+ letta_client/types/agents/__init__.py,sha256=MnrNCfLBc-UCHZdWePsaCoVyDK2YwURqD6fG3UCiUss,5170
185
189
  letta_client/types/agents/approval_create_param.py,sha256=MT8miAyzQSZwjN7vPe8iFWwris30bl34KJs0LlR1DVE,1295
186
190
  letta_client/types/agents/approval_request_message.py,sha256=ig5yQhnSut9F5uGLJCoPI0hsCOZQLZq6TL8o9NEVcM8,1178
187
191
  letta_client/types/agents/approval_response_message.py,sha256=JkZLpvyE7muDzkKYoWz8PlLlz5V_rW9lARrlsVtyLV4,1691
188
192
  letta_client/types/agents/assistant_message.py,sha256=fUPjYLWZJHglFdcI3gm6I-yzkMIeE7P5D3mbly0L23U,930
189
- letta_client/types/agents/block.py,sha256=5iiwmmjg8rPFCXSaWBNCZXhIg2Cr5fNh9pGUv5usIJg,1665
193
+ letta_client/types/agents/block.py,sha256=W89HtUA_EsVpfVy06pV3Rm3zmBhDD5kwiLN1KDQyiVA,1762
190
194
  letta_client/types/agents/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
191
- letta_client/types/agents/block_update_params.py,sha256=Re774KcydMNgPxBiOj_1Cs8Cw_He8lH25pvO-Mc_EAY,1470
195
+ letta_client/types/agents/block_list_response.py,sha256=7zdduZIf38XnicCK2WIV-D_QlQsiQc8BB3O3Mm34m0Y,1905
196
+ letta_client/types/agents/block_modify_params.py,sha256=nowldbVlbanKYdA87Pk70OnZB9R15vG6WPx4dXx3DV8,1560
197
+ letta_client/types/agents/block_modify_response.py,sha256=Xw_cxxqrmMKGDIe4XUyvnRJK0TG-6JTNMfMsQJt4XrI,1909
198
+ letta_client/types/agents/block_retrieve_response.py,sha256=DD3lba9tl4V_fQtmtPjDGZubRi4azKGCP-loS0DTWM0,1913
192
199
  letta_client/types/agents/file_close_all_response.py,sha256=yq3AN8M749mivM6T7WS6iNKCrBRANafXXHsB3NuQRsc,232
193
200
  letta_client/types/agents/file_list_params.py,sha256=ltjR-n7z_ZiOCO_nNPmSyH7DQUxdUB_jEuSXnnLWMmE,1067
194
201
  letta_client/types/agents/file_list_response.py,sha256=SILYgNMYWxdWsY6Nn1oxec5b12B2Eu6-yDTVB9RFRN0,1041
@@ -211,14 +218,14 @@ letta_client/types/agents/message.py,sha256=UEBeJIl_-XMHmvUESTOI0e--2W4xl7swirth
211
218
  letta_client/types/agents/message_cancel_params.py,sha256=BPgIzthxeMYYIP-Gjab8iwicmLZWLdNMqXDvdVgDcZw,405
212
219
  letta_client/types/agents/message_cancel_response.py,sha256=vTd3EpaL-xN1zG6BgiOYhFxUkqbqFM0AJiFPRV2vB28,242
213
220
  letta_client/types/agents/message_list_params.py,sha256=GrzqCYFDpgWP8Mr2CBxKUjj3UyZsHO3EM1hP4ETtnwY,1337
221
+ letta_client/types/agents/message_modify_params.py,sha256=aM1c_wvAqkioRsQ6vyOSDDV1ysk7rOTXwcGgBMlyUDg,2030
222
+ letta_client/types/agents/message_modify_response.py,sha256=egJI5J1On_34PoT2Y3_UumeJPpWNhiOIGGbCCchSLvU,1056
214
223
  letta_client/types/agents/message_reset_params.py,sha256=fdhNm-jWov0vO21yxzybEXK_y9ursZKsFcvhdD_uavE,358
215
224
  letta_client/types/agents/message_role.py,sha256=eAvdKVpQSHXw37kexvCvW7FmhYBZunHjLCgHEcHxVAY,260
216
225
  letta_client/types/agents/message_send_async_params.py,sha256=hRa_uEFYmbn3fcQeqAp3XEEgqNZqxqKBEBz6RCiNXVg,1807
217
226
  letta_client/types/agents/message_send_params.py,sha256=x7c0hfKAEPPqqkkI_-0TYoJSVMkDE-v5hEOFBMsqzy8,1698
218
227
  letta_client/types/agents/message_stream_params.py,sha256=AcVgn-QFgDOHqjh3-ZRNehnZNBPY0Oxf6f5PeZaEIAw,2071
219
228
  letta_client/types/agents/message_type.py,sha256=89E2AtHyPVha9f7MbIO2kU3d_fOeLXjMjobIrBtpT0E,441
220
- letta_client/types/agents/message_update_params.py,sha256=SaCdIDe0j68k8YNUp3GW2DHUad5XfLsCKVLT8FDs-74,2030
221
- letta_client/types/agents/message_update_response.py,sha256=ybLBHIo0tqiLDN_GGNG-P4Io2MOuDA9hHxQ-HccdkOQ,1056
222
229
  letta_client/types/agents/omitted_reasoning_content.py,sha256=8PtpFUv-zgsRCdJRNXWxGp0JMw31yakDuivuJkCsBQY,473
223
230
  letta_client/types/agents/omitted_reasoning_content_param.py,sha256=i19iKBJU8epIMvaxyVvGmdX8-G4DacP8bGkuQTF_d28,485
224
231
  letta_client/types/agents/reasoning_content.py,sha256=RB-8KyJlr48Ntc3ziPvY6nC-aHUtiW1DBN_vClzBaGM,675
@@ -257,15 +264,16 @@ letta_client/types/folders/file_list_params.py,sha256=eXpJfwqdeIzVgqdBittXz8KFfO
257
264
  letta_client/types/folders/file_list_response.py,sha256=vwIjQJzdE9QIhQnAi0ceCotklvfVWcKskt6pkUsbilA,1851
258
265
  letta_client/types/folders/file_upload_params.py,sha256=QTwtUEVP3lnvb3cz0KSUV9ZZMq3h-a-sO-HBJhtMVk0,563
259
266
  letta_client/types/folders/file_upload_response.py,sha256=e8r6wCrJYH-8uEYlB3vrX88DT1oF2F2vMdSBl6Rs6ww,1855
260
- letta_client/types/groups/__init__.py,sha256=mgMtN3bJUAjAZpxX9jMM2N8wQoBALDMEUH-Adb_k5UA,507
267
+ letta_client/types/groups/__init__.py,sha256=ZMgighSb07QQvQvtq4sI4E00Exy_9ss4ICpIwK3kHDc,507
261
268
  letta_client/types/groups/message_list_params.py,sha256=3jinSJ9x44shMpCGUnDyQIHGEO8eacmYJS9pYUZBXZY,1132
269
+ letta_client/types/groups/message_modify_params.py,sha256=42rqznXd5086v0ovL8DQfNABzvAZ_Oc7w47GItonFUw,2046
270
+ letta_client/types/groups/message_modify_response.py,sha256=c8PQSfZUG7-Uum00CKWzsYTKawNGVoBktwC262eQUYg,1120
262
271
  letta_client/types/groups/message_send_params.py,sha256=_wjiak-S3PyUWcG4zX8jhcXmAee8xnzPVegd1K9yO6o,1714
263
272
  letta_client/types/groups/message_stream_params.py,sha256=Z9UeNykGd-542rtXIpk6w--SXbPmemu9Os1L6hiikQA,2087
264
- letta_client/types/groups/message_update_params.py,sha256=tdLJjMuGf8pER0Nh9M-TMvqaxxXwX8-hcP6cRjCCPx4,2046
265
- letta_client/types/groups/message_update_response.py,sha256=k_LZMbo4PoU5AOCWCaPfyLwxGt423MrCFslYFSioCpY,1120
266
- letta_client/types/identities/__init__.py,sha256=SQiVtprSocQYiddZcYSxaWRwRakw6nHqXQEhLX06rvU,336
273
+ letta_client/types/identities/__init__.py,sha256=oIM33NS0sM6RIWdlvlvWh14v90n6N9OsrALU9FDQYEU,408
267
274
  letta_client/types/identities/agent_list_params.py,sha256=RyGM8SzPHzBTwuIAWIhyyk--gvFppZYueCSn6gSzp2E,1248
268
275
  letta_client/types/identities/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
276
+ letta_client/types/identities/block_list_response.py,sha256=7zdduZIf38XnicCK2WIV-D_QlQsiQc8BB3O3Mm34m0Y,1905
269
277
  letta_client/types/identities/property_upsert_params.py,sha256=BUnzZp4_FhfEgbWZYX0r-SwRSPKvpvFGaX-NYexQs00,404
270
278
  letta_client/types/models/__init__.py,sha256=ldgePtY0WELsx-lMqSQk1640HoGRcSqS0E7pMa38D_g,207
271
279
  letta_client/types/models/embedding_list_response.py,sha256=qYfIdlT2K9HfQM4HT8q5aRyLTjHxhZ5OMSqv0_2Yy3E,294
@@ -281,7 +289,7 @@ letta_client/types/steps/message_list_response.py,sha256=KOOB_tmBTiMjXRPtuZocvn_
281
289
  letta_client/types/steps/metric_retrieve_response.py,sha256=2rqlYkeGpwu4JYBPg9PszUKbT63x4AEDfo8wAJSdoew,1385
282
290
  letta_client/types/templates/__init__.py,sha256=eRs8IaeLPk-OtK1SeqFlKxHQ1_thE0sgK2BZ2ioSyUw,195
283
291
  letta_client/types/templates/agent_create_params.py,sha256=kvmC7ldFkNdx7kf6r_CK3O88BATWZjKW3kdzc475rFk,1406
284
- letta_client-1.0.0a9.dist-info/METADATA,sha256=zN21t_5I0anYjfz9zL8c319y6nzEZwyUVPUpQNncVwA,15981
285
- letta_client-1.0.0a9.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
286
- letta_client-1.0.0a9.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
287
- letta_client-1.0.0a9.dist-info/RECORD,,
292
+ letta_client-1.0.0a10.dist-info/METADATA,sha256=ApURrxJVeaJ3jUHvdMtUAlxiSplRsRS7ibzwuKDJGjw,15982
293
+ letta_client-1.0.0a10.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
294
+ letta_client-1.0.0a10.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
295
+ letta_client-1.0.0a10.dist-info/RECORD,,