letta-client 0.1.0__py3-none-any.whl → 0.1.2__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.
Files changed (201) hide show
  1. letta/__init__.py +293 -0
  2. letta/agents/__init__.py +28 -0
  3. letta/agents/archival_memory/__init__.py +2 -0
  4. letta/agents/archival_memory/client.py +591 -0
  5. letta/agents/client.py +2166 -0
  6. letta/agents/context/__init__.py +2 -0
  7. letta/agents/context/client.py +145 -0
  8. letta/agents/memory/__init__.py +5 -0
  9. letta/agents/memory/client.py +149 -0
  10. letta/agents/memory/messages/__init__.py +2 -0
  11. letta/agents/memory/messages/client.py +147 -0
  12. letta/agents/memory_blocks/__init__.py +2 -0
  13. letta/agents/memory_blocks/client.py +364 -0
  14. letta/agents/messages/__init__.py +5 -0
  15. letta/agents/messages/client.py +787 -0
  16. letta/agents/messages/types/__init__.py +7 -0
  17. letta/agents/messages/types/letta_streaming_response.py +20 -0
  18. letta/agents/messages/types/messages_list_response.py +7 -0
  19. letta/agents/messages/types/messages_list_response_item.py +13 -0
  20. letta/agents/recall_memory/__init__.py +2 -0
  21. letta/agents/recall_memory/client.py +147 -0
  22. letta/agents/sources/__init__.py +2 -0
  23. letta/agents/sources/client.py +145 -0
  24. letta/agents/tools/__init__.py +2 -0
  25. letta/agents/tools/client.py +408 -0
  26. letta/agents/types/__init__.py +13 -0
  27. letta/agents/types/agents_create_version_response.py +22 -0
  28. letta/agents/types/agents_migrate_response.py +19 -0
  29. letta/agents/types/create_agent_request_tool_rules_item.py +9 -0
  30. letta/agents/types/update_agent_tool_rules_item.py +9 -0
  31. letta/blocks/__init__.py +2 -0
  32. letta/blocks/client.py +1054 -0
  33. letta/client.py +164 -0
  34. letta/core/__init__.py +47 -0
  35. letta/core/api_error.py +15 -0
  36. letta/core/client_wrapper.py +76 -0
  37. letta/core/datetime_utils.py +28 -0
  38. letta/core/file.py +67 -0
  39. letta/core/http_client.py +499 -0
  40. letta/core/jsonable_encoder.py +101 -0
  41. letta/core/pydantic_utilities.py +296 -0
  42. letta/core/query_encoder.py +58 -0
  43. letta/core/remove_none_from_dict.py +11 -0
  44. letta/core/request_options.py +35 -0
  45. letta/core/serialization.py +272 -0
  46. letta/environment.py +8 -0
  47. letta/errors/__init__.py +8 -0
  48. letta/errors/conflict_error.py +9 -0
  49. letta/errors/internal_server_error.py +9 -0
  50. letta/errors/not_found_error.py +9 -0
  51. letta/errors/unprocessable_entity_error.py +9 -0
  52. letta/health/__init__.py +2 -0
  53. letta/health/client.py +108 -0
  54. letta/jobs/__init__.py +2 -0
  55. letta/jobs/client.py +503 -0
  56. letta/models/__init__.py +2 -0
  57. letta/models/client.py +201 -0
  58. letta/sources/__init__.py +5 -0
  59. letta/sources/client.py +1154 -0
  60. letta/sources/files/__init__.py +2 -0
  61. letta/sources/files/client.py +436 -0
  62. letta/sources/passages/__init__.py +2 -0
  63. letta/sources/passages/client.py +145 -0
  64. letta/tools/__init__.py +2 -0
  65. letta/tools/client.py +1823 -0
  66. letta/types/__init__.py +263 -0
  67. letta/types/action_model.py +36 -0
  68. letta/types/action_parameters_model.py +26 -0
  69. letta/types/action_response_model.py +26 -0
  70. letta/types/agent_state.py +139 -0
  71. letta/types/agent_state_tool_rules_item.py +9 -0
  72. letta/types/agent_type.py +8 -0
  73. letta/types/app_auth_scheme.py +34 -0
  74. letta/types/app_auth_scheme_auth_mode.py +7 -0
  75. letta/types/app_model.py +44 -0
  76. letta/types/archival_memory_summary.py +22 -0
  77. letta/types/assistant_file.py +33 -0
  78. letta/types/assistant_message_input.py +23 -0
  79. letta/types/assistant_message_output.py +23 -0
  80. letta/types/auth_request.py +22 -0
  81. letta/types/auth_response.py +29 -0
  82. letta/types/auth_scheme_field.py +30 -0
  83. letta/types/block.py +91 -0
  84. letta/types/block_update.py +60 -0
  85. letta/types/chat_completion_request.py +49 -0
  86. letta/types/chat_completion_request_function_call.py +6 -0
  87. letta/types/chat_completion_request_messages_item.py +11 -0
  88. letta/types/chat_completion_request_stop.py +5 -0
  89. letta/types/chat_completion_request_tool_choice.py +8 -0
  90. letta/types/chat_completion_response.py +32 -0
  91. letta/types/child_tool_rule.py +33 -0
  92. letta/types/choice.py +25 -0
  93. letta/types/conditional_tool_rule.py +43 -0
  94. letta/types/conflict_error_body.py +21 -0
  95. letta/types/context_window_overview.py +105 -0
  96. letta/types/create_assistant_file_request.py +22 -0
  97. letta/types/create_assistant_request.py +57 -0
  98. letta/types/create_block.py +56 -0
  99. letta/types/delete_assistant_file_response.py +28 -0
  100. letta/types/delete_assistant_response.py +28 -0
  101. letta/types/e_2_b_sandbox_config.py +32 -0
  102. letta/types/embedding_config.py +72 -0
  103. letta/types/embedding_config_embedding_endpoint_type.py +26 -0
  104. letta/types/file_metadata.py +82 -0
  105. letta/types/function_call_input.py +19 -0
  106. letta/types/function_call_output.py +20 -0
  107. letta/types/function_schema.py +21 -0
  108. letta/types/health.py +24 -0
  109. letta/types/http_validation_error.py +20 -0
  110. letta/types/init_tool_rule.py +29 -0
  111. letta/types/internal_server_error_body.py +19 -0
  112. letta/types/job.py +79 -0
  113. letta/types/job_status.py +5 -0
  114. letta/types/letta_request.py +33 -0
  115. letta/types/letta_response.py +125 -0
  116. letta/types/letta_response_assistant_message.py +23 -0
  117. letta/types/letta_response_letta_usage_statistics.py +47 -0
  118. letta/types/letta_response_reasoning_message.py +32 -0
  119. letta/types/letta_response_system_message.py +32 -0
  120. letta/types/letta_response_tool_call.py +21 -0
  121. letta/types/letta_response_tool_call_delta.py +21 -0
  122. letta/types/letta_response_tool_call_message.py +33 -0
  123. letta/types/letta_response_tool_call_message_tool_call.py +9 -0
  124. letta/types/letta_response_tool_call_message_tool_call_one.py +21 -0
  125. letta/types/letta_response_tool_call_message_tool_call_zero.py +21 -0
  126. letta/types/letta_response_tool_return_message.py +41 -0
  127. letta/types/letta_response_tool_return_message_status.py +5 -0
  128. letta/types/letta_response_usage_message.py +40 -0
  129. letta/types/letta_response_usage_message_usage.py +47 -0
  130. letta/types/letta_response_user_message.py +32 -0
  131. letta/types/letta_schemas_letta_message_tool_call.py +21 -0
  132. letta/types/letta_schemas_message_message.py +103 -0
  133. letta/types/letta_schemas_openai_chat_completion_request_tool.py +21 -0
  134. letta/types/letta_schemas_openai_chat_completion_request_tool_call.py +24 -0
  135. letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py +20 -0
  136. letta/types/letta_schemas_openai_chat_completion_response_message.py +24 -0
  137. letta/types/letta_schemas_openai_chat_completion_response_tool_call.py +22 -0
  138. letta/types/letta_schemas_openai_chat_completions_tool_call_function.py +27 -0
  139. letta/types/letta_schemas_openai_chat_completions_tool_call_input.py +29 -0
  140. letta/types/letta_schemas_openai_chat_completions_tool_call_output.py +29 -0
  141. letta/types/letta_schemas_tool_tool.py +88 -0
  142. letta/types/letta_usage_statistics.py +47 -0
  143. letta/types/llm_config.py +60 -0
  144. letta/types/llm_config_model_endpoint_type.py +26 -0
  145. letta/types/local_sandbox_config.py +32 -0
  146. letta/types/log_prob_token.py +21 -0
  147. letta/types/memory.py +32 -0
  148. letta/types/message_content_log_prob.py +23 -0
  149. letta/types/message_create.py +37 -0
  150. letta/types/message_create_role.py +5 -0
  151. letta/types/message_role.py +5 -0
  152. letta/types/not_found_error_body.py +20 -0
  153. letta/types/not_found_error_body_message.py +11 -0
  154. letta/types/open_ai_assistant.py +67 -0
  155. letta/types/organization.py +33 -0
  156. letta/types/organization_create.py +22 -0
  157. letta/types/passage.py +107 -0
  158. letta/types/reasoning_message.py +32 -0
  159. letta/types/recall_memory_summary.py +22 -0
  160. letta/types/response_format.py +19 -0
  161. letta/types/sandbox_config.py +59 -0
  162. letta/types/sandbox_config_create.py +23 -0
  163. letta/types/sandbox_config_create_config.py +7 -0
  164. letta/types/sandbox_config_update.py +27 -0
  165. letta/types/sandbox_config_update_config.py +7 -0
  166. letta/types/sandbox_environment_variable.py +68 -0
  167. letta/types/sandbox_environment_variable_create.py +32 -0
  168. letta/types/sandbox_environment_variable_update.py +36 -0
  169. letta/types/sandbox_type.py +5 -0
  170. letta/types/source.py +85 -0
  171. letta/types/system_message_input.py +21 -0
  172. letta/types/system_message_output.py +32 -0
  173. letta/types/terminal_tool_rule.py +29 -0
  174. letta/types/tool_call_delta.py +21 -0
  175. letta/types/tool_call_function_output.py +27 -0
  176. letta/types/tool_call_message.py +33 -0
  177. letta/types/tool_call_message_tool_call.py +7 -0
  178. letta/types/tool_create.py +57 -0
  179. letta/types/tool_function_choice.py +21 -0
  180. letta/types/tool_input.py +21 -0
  181. letta/types/tool_message.py +21 -0
  182. letta/types/tool_return_message.py +41 -0
  183. letta/types/tool_return_message_status.py +5 -0
  184. letta/types/tool_rule_type.py +10 -0
  185. letta/types/usage_message.py +31 -0
  186. letta/types/usage_statistics.py +21 -0
  187. letta/types/user.py +57 -0
  188. letta/types/user_create.py +27 -0
  189. letta/types/user_message_input.py +22 -0
  190. letta/types/user_message_input_content.py +5 -0
  191. letta/types/user_message_output.py +32 -0
  192. letta/types/user_update.py +32 -0
  193. letta/types/validation_error.py +22 -0
  194. letta/types/validation_error_loc_item.py +5 -0
  195. letta/version.py +3 -0
  196. letta_client-0.1.2.dist-info/METADATA +189 -0
  197. letta_client-0.1.2.dist-info/RECORD +199 -0
  198. {letta_client-0.1.0.dist-info → letta_client-0.1.2.dist-info}/WHEEL +1 -1
  199. letta_client-0.1.0.dist-info/METADATA +0 -15
  200. letta_client-0.1.0.dist-info/RECORD +0 -4
  201. /letta_client/__init__.py → /letta/py.typed +0 -0
@@ -0,0 +1,32 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ import typing
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+
8
+
9
+ class UserUpdate(UniversalBaseModel):
10
+ id: str = pydantic.Field()
11
+ """
12
+ The id of the user to update.
13
+ """
14
+
15
+ name: typing.Optional[str] = pydantic.Field(default=None)
16
+ """
17
+ The new name of the user.
18
+ """
19
+
20
+ organization_id: typing.Optional[str] = pydantic.Field(default=None)
21
+ """
22
+ The new organization id of the user.
23
+ """
24
+
25
+ if IS_PYDANTIC_V2:
26
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
27
+ else:
28
+
29
+ class Config:
30
+ frozen = True
31
+ smart_union = True
32
+ extra = pydantic.Extra.allow
@@ -0,0 +1,22 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ from .validation_error_loc_item import ValidationErrorLocItem
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+ import pydantic
8
+
9
+
10
+ class ValidationError(UniversalBaseModel):
11
+ loc: typing.List[ValidationErrorLocItem]
12
+ msg: str
13
+ type: str
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
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ ValidationErrorLocItem = typing.Union[str, int]
letta/version.py ADDED
@@ -0,0 +1,3 @@
1
+ from importlib import metadata
2
+
3
+ __version__ = metadata.version("letta-client")
@@ -0,0 +1,189 @@
1
+ Metadata-Version: 2.1
2
+ Name: letta-client
3
+ Version: 0.1.2
4
+ Summary:
5
+ Requires-Python: >=3.8,<4.0
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Operating System :: POSIX
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Dist: httpx (>=0.21.2)
22
+ Requires-Dist: httpx-sse (==0.4.0)
23
+ Requires-Dist: pydantic (>=1.9.2)
24
+ Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
25
+ Requires-Dist: typing_extensions (>=4.0.0)
26
+ Description-Content-Type: text/markdown
27
+
28
+ # Letta Python Library
29
+
30
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fletta-ai%2Fletta-python)
31
+ [![pypi](https://img.shields.io/pypi/v/letta-client)](https://pypi.python.org/pypi/letta-client)
32
+
33
+ The Letta Python library provides convenient access to the Letta API from Python.
34
+
35
+ ## Installation
36
+
37
+ ```sh
38
+ pip install letta-client
39
+ ```
40
+
41
+ ## Reference
42
+
43
+ A full reference for this library is available [here](./reference.md).
44
+
45
+ ## Usage
46
+
47
+ Instantiate and use the client with the following:
48
+
49
+ ```python
50
+ from letta import Letta
51
+
52
+ client = Letta(
53
+ token="YOUR_TOKEN",
54
+ )
55
+ client.tools.create(
56
+ source_code="source_code",
57
+ )
58
+ ```
59
+
60
+ ## Async Client
61
+
62
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API.
63
+
64
+ ```python
65
+ import asyncio
66
+
67
+ from letta import AsyncLetta
68
+
69
+ client = AsyncLetta(
70
+ token="YOUR_TOKEN",
71
+ )
72
+
73
+
74
+ async def main() -> None:
75
+ await client.tools.create(
76
+ source_code="source_code",
77
+ )
78
+
79
+
80
+ asyncio.run(main())
81
+ ```
82
+
83
+ ## Exception Handling
84
+
85
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
86
+ will be thrown.
87
+
88
+ ```python
89
+ from letta.core.api_error import ApiError
90
+
91
+ try:
92
+ client.tools.create(...)
93
+ except ApiError as e:
94
+ print(e.status_code)
95
+ print(e.body)
96
+ ```
97
+
98
+ ## Streaming
99
+
100
+ The SDK supports streaming responses, as well, the response will be a generator that you can loop over.
101
+
102
+ ```python
103
+ from letta import Letta, MessageCreate
104
+
105
+ client = Letta(
106
+ token="YOUR_TOKEN",
107
+ )
108
+ response = client.agents.messages.stream(
109
+ agent_id="agent_id",
110
+ messages=[
111
+ MessageCreate(
112
+ role="user",
113
+ text="text",
114
+ )
115
+ ],
116
+ )
117
+ for chunk in response:
118
+ yield chunk
119
+ ```
120
+
121
+ ## Advanced
122
+
123
+ ### Retries
124
+
125
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
126
+ as the request is deemed retriable and the number of retry attempts has not grown larger than the configured
127
+ retry limit (default: 2).
128
+
129
+ A request is deemed retriable when any of the following HTTP status codes is returned:
130
+
131
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
132
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
133
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
134
+
135
+ Use the `max_retries` request option to configure this behavior.
136
+
137
+ ```python
138
+ client.tools.create(..., request_options={
139
+ "max_retries": 1
140
+ })
141
+ ```
142
+
143
+ ### Timeouts
144
+
145
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
146
+
147
+ ```python
148
+
149
+ from letta import Letta
150
+
151
+ client = Letta(
152
+ ...,
153
+ timeout=20.0,
154
+ )
155
+
156
+
157
+ # Override timeout for a specific method
158
+ client.tools.create(..., request_options={
159
+ "timeout_in_seconds": 1
160
+ })
161
+ ```
162
+
163
+ ### Custom Client
164
+
165
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
166
+ and transports.
167
+ ```python
168
+ import httpx
169
+ from letta import Letta
170
+
171
+ client = Letta(
172
+ ...,
173
+ httpx_client=httpx.Client(
174
+ proxies="http://my.test.proxy.example.com",
175
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
176
+ ),
177
+ )
178
+ ```
179
+
180
+ ## Contributing
181
+
182
+ While we value open-source contributions to this SDK, this library is generated programmatically.
183
+ Additions made directly to this library would have to be moved over to our generation code,
184
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
185
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
186
+ an issue first to discuss with us!
187
+
188
+ On the other hand, contributions to the README are always very welcome!
189
+
@@ -0,0 +1,199 @@
1
+ letta/__init__.py,sha256=63TqVCq01i3bJG8Igb4oMgG5qI4T_EV3jU1aHhIqBuM,7980
2
+ letta/agents/__init__.py,sha256=vSxT3hKDFFddAdGQJvwQaqLe2X-sFwskLUhgoCvjnq4,789
3
+ letta/agents/archival_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
4
+ letta/agents/archival_memory/client.py,sha256=CsqziY9xSs4u9zXGsvCnp2gzf_OL-vtfzQZrzYOX7Fo,18797
5
+ letta/agents/client.py,sha256=7HkwJ5VAmbUgsqywep303uDwc7nJW2mf7DGyINt4t7M,75684
6
+ letta/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
7
+ letta/agents/context/client.py,sha256=qcqechypp6hJx7aPoubsfmaV7ZF8_i9o1ww0147iWTQ,4755
8
+ letta/agents/memory/__init__.py,sha256=wdNGGk2ylmOrNfsIGTiSbNJfFvEcRUuTNy-PmsiAzkk,112
9
+ letta/agents/memory/client.py,sha256=jZOMQsMrk5pPjl6ZvBgUsdVDzYOEkgO4JwPyAfoDEuM,5045
10
+ letta/agents/memory/messages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
11
+ letta/agents/memory/messages/client.py,sha256=49oT7rMhJY2bXBCQSjLEj25igoP4pfPcGzX7UOJRO5g,5033
12
+ letta/agents/memory_blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
13
+ letta/agents/memory_blocks/client.py,sha256=ReZVf_G3BfGicgrkSxlM1c4quPjDd_B4SxAL5JfWKS8,11370
14
+ letta/agents/messages/__init__.py,sha256=NOr_womVIaV3N6HuyZFlwoj95BEcSZA7vG64t52xsGU,245
15
+ letta/agents/messages/client.py,sha256=fQMr8fCZHQXPmlh6AhUoOqTBs5QQdQmpved_Ugij2dg,28285
16
+ letta/agents/messages/types/__init__.py,sha256=uQs9YhishiYPP6bOI7yxBRN-ZMeLWl3dzWUbuE2fEwc,339
17
+ letta/agents/messages/types/letta_streaming_response.py,sha256=deUF5LZKBR8xLB3iSmBNm5szksQka2HT-k6QkqEzOTY,722
18
+ letta/agents/messages/types/messages_list_response.py,sha256=QOQ-lDPwafhCjFbq-qz0hUrNw4vneGrqePY42-yiTW8,341
19
+ letta/agents/messages/types/messages_list_response_item.py,sha256=KU0ew6h2zpkUVkArFYoxUa-5Wotnurd24RyUgRwT6Ac,611
20
+ letta/agents/recall_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
21
+ letta/agents/recall_memory/client.py,sha256=3yGiP2vGdKDtAGJHDLMBl7I43YoQzAyifxJ7jDuawKQ,4843
22
+ letta/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
23
+ letta/agents/sources/client.py,sha256=h6kl5g9BOU47N3Q3SH0JdZdaqUL0UNBPyjtEoy90Jec,4693
24
+ letta/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
25
+ letta/agents/tools/client.py,sha256=kyWOuydUAJmhSczLZbut7SxdFAhdLfgJZuAvkN7g3Zs,12782
26
+ letta/agents/types/__init__.py,sha256=lYQ4RwyiZnUj4sx7rPg1XXap9um-285F3hB8jfrytOk,495
27
+ letta/agents/types/agents_create_version_response.py,sha256=ZFc_xqbTaX7daPOHr16n8XIU6A-Wd8xt_8hShDCyxg4,751
28
+ letta/agents/types/agents_migrate_response.py,sha256=7c3FRBCUwxqB5yj9eYIh4GA4nBs-J3ccus-o0WLu71U,570
29
+ letta/agents/types/create_agent_request_tool_rules_item.py,sha256=xSYFbxIAA6k-pZfVsCaTByE8nXRIqyKnfOm_IEjKfEM,415
30
+ letta/agents/types/update_agent_tool_rules_item.py,sha256=5pYbFgeqxmXUHUTZpEWlZ7ODc1G6CpFGWljz_iBpWVA,408
31
+ letta/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
32
+ letta/blocks/client.py,sha256=SuRoJKkDSpL0Gg6jCzuMagwSUTLFKZQBq9j1BXwP5Y8,32367
33
+ letta/client.py,sha256=HyLH1Hl6WzDOs2uiQR6-1q9ir5mRL-0gim7BoYqrnWA,6793
34
+ letta/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
35
+ letta/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
36
+ letta/core/client_wrapper.py,sha256=EgD4UFKzTMPUvJdKhgvDQXTLWgyK82xomAMhck0r0GE,2213
37
+ letta/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
38
+ letta/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
39
+ letta/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
40
+ letta/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
41
+ letta/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
42
+ letta/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
43
+ letta/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
44
+ letta/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
45
+ letta/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
46
+ letta/environment.py,sha256=opz-fB_AI3JOfZqKRt2kOJXm_1Hkl70vPpUlhAhpCf0,199
47
+ letta/errors/__init__.py,sha256=wqo3GnyT9iRy7zuPMs6TXOg9GMNfDp4fxq7M8lFFgK8,367
48
+ letta/errors/conflict_error.py,sha256=INHRMcX6i0ywcbZfw-vn3aBoVi06bDjev3p_O8U8IA4,296
49
+ letta/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
50
+ letta/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
51
+ letta/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
52
+ letta/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
53
+ letta/health/client.py,sha256=gDdU8-mvPlLsh0ZYN7WgArcETWTHPe_r6tSZWcu6wiU,3220
54
+ letta/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
55
+ letta/jobs/client.py,sha256=LoKtFPHf_TjVzN2W7gGAMbptZeuY4aVi3K5i9H8gkXA,15510
56
+ letta/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
57
+ letta/models/client.py,sha256=X7WXeuF4UGp7-cTGNC5iEFhFXtYgBQifFI48k8bJQQc,6266
58
+ letta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ letta/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
60
+ letta/sources/client.py,sha256=ZqbUXxrNksO6q9fNKAICHegJz8OuZ1HJ9V1vtClC_cE,36463
61
+ letta/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
62
+ letta/sources/files/client.py,sha256=N5hVKUUmhvzQJi6RjSlzCWpAb8-WDW9J39MGSKRYTnU,13231
63
+ letta/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
64
+ letta/sources/passages/client.py,sha256=BdemStVj4SAhVi5ZLGt7UB793OBFIQVTN7iuTpbe2oQ,4741
65
+ letta/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
66
+ letta/tools/client.py,sha256=7zqMFjg4WTd5fXHq6-uG5Bs0EvlqgQ6uEBGSqArSdYE,58410
67
+ letta/types/__init__.py,sha256=AHc7RVv4_GCH8Td1wmBlZ8JlI3DpuDe7AA52h_fq2hU,11229
68
+ letta/types/action_model.py,sha256=wpRKr5lwx--x1IULnWMX4-JEgeiLy1Rfgxcihz-z3UI,1204
69
+ letta/types/action_parameters_model.py,sha256=Attvw_SX5x8xJ8XJOib2ASpOX1ayCUqGxfyi6svTPHw,747
70
+ letta/types/action_response_model.py,sha256=jmtD85NYG5Jkf4ioLyYtHvdLFb92905Nq9mIPUa0yEQ,743
71
+ letta/types/agent_state.py,sha256=m33rF2oIwUf5SwLA3L_WXuOxH3L0p4nPSHIu5nxpfVU,4190
72
+ letta/types/agent_state_tool_rules_item.py,sha256=QVFCt60Ro3ZyyQtzA5Zn8Tq8t9osrpqchB08xzmdLs4,375
73
+ letta/types/agent_type.py,sha256=_-oGgLcf5PkLowj4BWvZ97nnjPWGztbAEGLsPu8sm3g,237
74
+ letta/types/app_auth_scheme.py,sha256=9OgqCmSYkFgWZNNFGhhBmCB808nzY01ilr74Ye6Q7hs,1240
75
+ letta/types/app_auth_scheme_auth_mode.py,sha256=Zafrac9piNVjCVppCv0CS34Yx4rFaFPieeNCrtaPSwk,225
76
+ letta/types/app_model.py,sha256=nXFCHttrO6DqY-GTYWuHQ2ClnGq7zTgH8q1KqJT76Io,1517
77
+ letta/types/archival_memory_summary.py,sha256=MURc1dD-9eAQiqEPIMeJzuEdjqHQXc9Bvff1sEuDdDc,637
78
+ letta/types/assistant_file.py,sha256=sbhfxKtQGBzgT2wwFwRBwMeDiz3nEZlnWjWN6imXnTo,879
79
+ letta/types/assistant_message_input.py,sha256=91Ltnd1UXVgP_rvWSP6joM7972vfzmVlKM-EfL13WbQ,884
80
+ letta/types/assistant_message_output.py,sha256=xE1ByV7nTVS4lfpPuhntFbM0zFpm7Fcb0ARESYbKztU,710
81
+ letta/types/auth_request.py,sha256=As9L-GYTzr39W6v7q-40UtxzW-tlKin9Ln9Gqxm4mDA,681
82
+ letta/types/auth_response.py,sha256=wYehJ6saW5e-JSlw70sORpZ8dnlQKPX6Gpw-YANOeMg,859
83
+ letta/types/auth_scheme_field.py,sha256=hrzhKhNOf4D0gvwq_3h1b4dTJEIjEpfXfxBrVIIEsfM,879
84
+ letta/types/block.py,sha256=ixjoFAVaH6geeM8RHoDV5sZmt2cfNwtMahTuWFOTJqQ,3175
85
+ letta/types/block_update.py,sha256=OGH9bdStMh_VL4VQ1jJ31aE9ufDspbMyo80mSRpqeSU,1643
86
+ letta/types/chat_completion_request.py,sha256=RkTlEcX5LGFu_pNmZzoXfiKuxUs5I2-HiOuYVx_ZP30,2099
87
+ letta/types/chat_completion_request_function_call.py,sha256=I3aPJPef1TfEM0qVuiJQHF9c-MJcQkq1QuSyXm0gR98,247
88
+ letta/types/chat_completion_request_messages_item.py,sha256=RaP8kpCRf0uc48TnzWNUn1Csl4snQeQrSEIPHWrgajQ,408
89
+ letta/types/chat_completion_request_stop.py,sha256=-znv6wKECPL0blRnNuqY89OPWu3CY-aCzLFCgUOZXiw,144
90
+ letta/types/chat_completion_request_tool_choice.py,sha256=17mDEt1B55OpvIKPtz_Jmzvc998zNRKbfawr4-J63t0,282
91
+ letta/types/chat_completion_response.py,sha256=VxTN8H6WBfF-4NpNZRKIqpAPhc1IYuEWbCe6T4-lcLg,984
92
+ letta/types/child_tool_rule.py,sha256=llamP1LSCkyBYEBbUsMLktfgdskhiMh-yOTYdfJ4Sfw,961
93
+ letta/types/choice.py,sha256=WmSYEDtFnMrmVA51vnwCsV8SvQW_Pu5XhrR2KM7yMFI,955
94
+ letta/types/conditional_tool_rule.py,sha256=PpxAL8w82NAOqePFOZj1dQzYHOFgxOgS7zfTl304GDI,1324
95
+ letta/types/conflict_error_body.py,sha256=1u_zziegl_-iXcZmgzabm3I7cY6sVPt8vL2Pshow3gk,785
96
+ letta/types/context_window_overview.py,sha256=QimBWemW_2GHR4_qK3rTJmy1TihSjZT6hvtKB3pm830,2830
97
+ letta/types/create_assistant_file_request.py,sha256=61aWsSfPV2YvxlFeWYyHhXrpChR6nqcwgq7K0Zfhgow,646
98
+ letta/types/create_assistant_request.py,sha256=rA2NPmpBSluVR4WlFvg6VgakEdfJgwC6oxQCVWa2shc,1521
99
+ letta/types/create_block.py,sha256=zfXSQGAiGNCjGbyPCH3a1N7MHvuPwRC-brMfIrPWwzc,1424
100
+ letta/types/delete_assistant_file_response.py,sha256=UN6ZQKycuvieoMllotukxnylz9by6hZZvx16IV8L9XQ,770
101
+ letta/types/delete_assistant_response.py,sha256=7i_LE58bsikpMY73DVINZVE7QIhZAvK4U4-SEe6frWw,768
102
+ letta/types/e_2_b_sandbox_config.py,sha256=uCzy5EJvno0oJGNlY-cajdLHMZ1lxh6J8lp4s_CyqLg,955
103
+ letta/types/embedding_config.py,sha256=RCir0_bUBlMt4CY2AUn-lvi8bqm2_PLSjWOeyBovpyQ,2357
104
+ letta/types/embedding_config_embedding_endpoint_type.py,sha256=Iw8W4h9bEYdTYYaU4__JUPKqS-zO9WpzIQKtihvJH8U,515
105
+ letta/types/file_metadata.py,sha256=IhvFUGtZ1OB5aaFThe69iju844C31HaozRiKSLkiQeM,2137
106
+ letta/types/function_call_input.py,sha256=iAQxp6wN59iB0LiNYDVBoMZXjBb6BnRgwcqWbHHYcg0,560
107
+ letta/types/function_call_output.py,sha256=Fe_65XeIQ4bl3LMCM9HmUWnycAb4OmAmDMDH89TtJqQ,580
108
+ letta/types/function_schema.py,sha256=f4qsSzD1gd8jaxxr6lkwA9JpDFsh0gepU-jryQct2y4,688
109
+ letta/types/health.py,sha256=JfUiE0dlUsBJzB_ivqbpLt-8pwhGIzigME-uRD0Z74U,616
110
+ letta/types/http_validation_error.py,sha256=w43naaw4VmntOBb3UC6zqGv6hnvUaMitJMFRK4i8vLc,659
111
+ letta/types/init_tool_rule.py,sha256=IDSFYgNeIPP55KT6cIBkYSSzi0HNxoi4d2fgR6MclN8,835
112
+ letta/types/internal_server_error_body.py,sha256=lin_dwKrW7kIRi6QR7evu9lLeU3aIEmMrtNGEImfe1c,621
113
+ letta/types/job.py,sha256=oE4L-fWN6RNkuaePWzEKBd2SNY5232yGcn_vcKhD40E,2451
114
+ letta/types/job_status.py,sha256=0Gu5Tku79SDVzCxnjVXQyDPNCizGWUP1ppohAck6a2U,189
115
+ letta/types/letta_request.py,sha256=ups_NcjFZe7E6WPU9CSnl5ncDQDKS-CqsQ9FjzvLJVU,1020
116
+ letta/types/letta_response.py,sha256=cTxEISkCgSXnfkyiVuYSIIa3GmuvGkiORMMzj745vIo,5396
117
+ letta/types/letta_response_assistant_message.py,sha256=BjWIT2hluKG2vQQNyj0FUoR9FlA7Vps4JVzj1YtcBxM,719
118
+ letta/types/letta_response_letta_usage_statistics.py,sha256=dpnNRVk7m8fXzmnq4VcXRapOkHUk9jzVNXdj7_w4MWE,1455
119
+ letta/types/letta_response_reasoning_message.py,sha256=SN0N2S9tke4XqYNj26V_mDtnoQOfZjZfFFglcYkMQV8,959
120
+ letta/types/letta_response_system_message.py,sha256=KnnX-ByODaNqzmTxN213QJxStP4h-lXddTWvXx60n3Q,998
121
+ letta/types/letta_response_tool_call.py,sha256=dz_kvqeTc_oD9-jgKLXhDlc9PqToX59TPP7P8PlG_9M,605
122
+ letta/types/letta_response_tool_call_delta.py,sha256=OY_cC8fttxSQMVCkrSTiaLgSDUavZqImx55Pfui6qyw,682
123
+ letta/types/letta_response_tool_call_message.py,sha256=Fko5hwnxAyd6ULwJ-GiQoiNcSi4Z3FwuOodFASUIim0,1138
124
+ letta/types/letta_response_tool_call_message_tool_call.py,sha256=-P-YI25YkKVNCwvu6cLMz1CHEpsYoal-frAgHkPUVhM,423
125
+ letta/types/letta_response_tool_call_message_tool_call_one.py,sha256=lwf0iFCR9WBsteroEEvNvpQMZmvWh9PVbNK4sB3M31Q,695
126
+ letta/types/letta_response_tool_call_message_tool_call_zero.py,sha256=fpqo5Jr25we5LyPwMhPsAlVe7TGFhzgL90Mfvww2Txg,624
127
+ letta/types/letta_response_tool_return_message.py,sha256=GBXOr7egjj9kCsYLa0a3o9xSyfLkBKtHzR46PBl34RE,1615
128
+ letta/types/letta_response_tool_return_message_status.py,sha256=Roz5I8v2RGTHYPqKUhEvDZzYWVITZBXbkKbpve6be8o,180
129
+ letta/types/letta_response_usage_message.py,sha256=BDji3y0pv26-aHWfx7b_BEmRVlmBz_I8D_7Ozb9FTiI,1368
130
+ letta/types/letta_response_usage_message_usage.py,sha256=VuW-gTm3dchIFJcSKRLGlkDwbESpVUyv7SghQzEP2ww,1452
131
+ letta/types/letta_response_user_message.py,sha256=AmndVoaMmDxsDcMEfwQ7tvXXGoV-5U2UqeZbNM61IkA,985
132
+ letta/types/letta_schemas_letta_message_tool_call.py,sha256=EU5fLZnSJfD0UcpCvNANoC9IC2PFe0TxV3X1Olep60I,616
133
+ letta/types/letta_schemas_message_message.py,sha256=nulBiONzy6hgAS8V2u4ksdpwX_MlQiGcqEJTCJxvGQ8,3092
134
+ letta/types/letta_schemas_openai_chat_completion_request_tool.py,sha256=BgV4h_mrqB2LEevFg3MTMpZyh70wJmMryLqcObqKqj8,706
135
+ letta/types/letta_schemas_openai_chat_completion_request_tool_call.py,sha256=vjVm-VNFtSft0Yjtweh46K4v6GqPjhtsgJqSxfcBK4M,861
136
+ letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py,sha256=gvpaJeRBaqQtV8JD4b8B_R4aC5kYBVefDIq_vzS-QUQ,617
137
+ letta/types/letta_schemas_openai_chat_completion_response_message.py,sha256=zZEXzwld_1zL5w12CJAKtBRXOg-RWE16YDq-NhWf1T8,966
138
+ letta/types/letta_schemas_openai_chat_completion_response_tool_call.py,sha256=21aDMg7b51ulIdqzsa45Hk_fYCvBJZYl7HaidvfyK48,736
139
+ letta/types/letta_schemas_openai_chat_completions_tool_call_function.py,sha256=WZLHTlq3UYO-8E_G-gTC59BTe4mGNsSW7exAI9qA0gU,773
140
+ letta/types/letta_schemas_openai_chat_completions_tool_call_input.py,sha256=QoP1zY0h-VbyHsgHVQmBmv87byZZ3c8Av9q9D8Lpo3U,952
141
+ letta/types/letta_schemas_openai_chat_completions_tool_call_output.py,sha256=10AzIa3b2u_C4x3JYPjlqvvUiwIUilpMyaPnPi2L8AU,868
142
+ letta/types/letta_schemas_tool_tool.py,sha256=nwTDwLqZ1C2CfyyNeYDS73qar6TChi-5FAQjMoNce_w,2428
143
+ letta/types/letta_usage_statistics.py,sha256=BI4lUzO6YIr0gChu5ysW0FzqqWW179m0xiuwbYzsMp0,1442
144
+ letta/types/llm_config.py,sha256=WnkLctI8y-ESTnxy1KPfTLooMUHFu73Hsdjx4isg2vs,2272
145
+ letta/types/llm_config_model_endpoint_type.py,sha256=rnDv3wDnngPT10CFw24C6kHo4swuLHxv46aLI9Hoosg,505
146
+ letta/types/local_sandbox_config.py,sha256=Tm3t50Dy_Z6tyRd7ZyFYmRFxUAtSjFAwouig_ulKGPA,1042
147
+ letta/types/log_prob_token.py,sha256=9vFvxXeV7atr9_J_hGTcKfBXglIcn0XTbamzRVS4a1w,627
148
+ letta/types/memory.py,sha256=vyY6UtEo_5cUf17rVQIJQQ5hO7ZTxyDx2kHqT3WPFCc,1033
149
+ letta/types/message_content_log_prob.py,sha256=a3ZGlb1FGPAf-qTs_Ec1fzrASZSUrUcaPjpxEUfrvWc,745
150
+ letta/types/message_create.py,sha256=dbmYNRp-R1Ih4kik1NdVaCI5IEaps_MWTtMjhX7ra3Y,929
151
+ letta/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
152
+ letta/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
153
+ letta/types/not_found_error_body.py,sha256=YvVmUM4elVMKr04oKUpw_MCBS71rUlIE8EpxTWz48qQ,651
154
+ letta/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
155
+ letta/types/open_ai_assistant.py,sha256=BJ7WWFxZvAGZm8BSp00pI4ABNxr6P6t2AeG7WAfUvRM,1708
156
+ letta/types/organization.py,sha256=qgsZr2LQk-j6VWhMC-PKjEz3goRh9VG34BgJ3tV-ix8,925
157
+ letta/types/organization_create.py,sha256=PztQCNUzr4Zv3C9z5N9SK0usxZxZ86VPRgR-UIUXSHE,659
158
+ letta/types/passage.py,sha256=sXn92NtoyTLVisy0E6df5xno5JnWLwTF__Mg_0fjIBs,3306
159
+ letta/types/reasoning_message.py,sha256=FGCMqOMPU585mag6BofcPdeg4Jv6S_aPqILkfLqneZU,944
160
+ letta/types/recall_memory_summary.py,sha256=SA40w3qLLV-kWddaQPSSzggRGrpbiFMrtc82PBJti3Y,633
161
+ letta/types/response_format.py,sha256=5d82oJYUODQxzIVtXdDnlZMcXRwvTPs6GR78d3zPmAQ,581
162
+ letta/types/sandbox_config.py,sha256=qGGMJk1d8qRmIuKr2VEJqe9qQfvNfLlKEPoNrIUVrLo,1713
163
+ letta/types/sandbox_config_create.py,sha256=Kdb2iYRQ2HGmUAWf1dkNKRP5ZNf0rlMBswKaX7c6D1M,728
164
+ letta/types/sandbox_config_create_config.py,sha256=EsSeN81_yPkorfQgOJmumdCWiUt8hk9HawSsRcCc5Hs,263
165
+ letta/types/sandbox_config_update.py,sha256=VPssSERarC2VejfQpRuA32GWTpWy9b1nP1Yva_nSuek,838
166
+ letta/types/sandbox_config_update_config.py,sha256=fGGmMuy43OnELj3qAj0rEcMro-cLD3ekeVpqJqqrs1M,263
167
+ letta/types/sandbox_environment_variable.py,sha256=1QSf2UlCBZqRgQispE7vS17ef7KOOWRt_f-nQMFjQQM,1877
168
+ letta/types/sandbox_environment_variable_create.py,sha256=TaF1qTlzoXu6SXD9lWsEXMUmQtnQBzz3IywVo59axLA,888
169
+ letta/types/sandbox_environment_variable_update.py,sha256=m6V6MWvIVAnZ5K34Fb8YzPxKzDBUwxYQq2BndL-fJ0Y,1030
170
+ letta/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_JheGm4,151
171
+ letta/types/source.py,sha256=aYs_4zmXZmXYD9KLKeeNQHviFxxCf2K_SE6O16CZiQM,2509
172
+ letta/types/system_message_input.py,sha256=w4mFYFIZWtvkil2NnEJPr4OHlPoHn1lonjo2Eo5DMgc,640
173
+ letta/types/system_message_output.py,sha256=y-5ghFnMg1LLYtdoviFefYbn4rKg7PHmczHYh2RVQRM,986
174
+ letta/types/terminal_tool_rule.py,sha256=SlRhVJhFgdN0dn18QHKrig-k4UhVsO9hOJU2dGJKoHI,897
175
+ letta/types/tool_call_delta.py,sha256=-6VrIxuY76eFeFjO6Rkh-xNOMDnRB24C0cFxuWPqaf4,669
176
+ letta/types/tool_call_function_output.py,sha256=VlYlZ0qsR6mozkOr5DThgJxAtzwWurKZR3CHUWiyivY,746
177
+ letta/types/tool_call_message.py,sha256=V9hE5UUzyP_9FVoH2Lt8DYc2-VWGOWWiGzcje17jeqA,1082
178
+ letta/types/tool_call_message_tool_call.py,sha256=574_EuZw2S1A1bGaAfg1KMmPoBggmLVKfsizOx82510,295
179
+ letta/types/tool_create.py,sha256=1a3ce-ZG2U6kwjMLcqpN0anRgiuwt3qUZSA9T25eM1c,1622
180
+ letta/types/tool_function_choice.py,sha256=Jug7RK0YLS0Pt3i-IiZOKBH4hbrVuEBEdG5dCSfccaA,691
181
+ letta/types/tool_input.py,sha256=9f97Jp3jm2mBesfAJ_Do5Sbha4uKcM01y332txiXJkw,672
182
+ letta/types/tool_message.py,sha256=zJTOLSH97oncrGPbqvI1RXI85HLT-cSJJuXrtO2vk9k,617
183
+ letta/types/tool_return_message.py,sha256=axAhNN7CHC2g4hPQtlXFd26Er3da2MU_LybHaKfrXVA,1561
184
+ letta/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
185
+ letta/types/tool_rule_type.py,sha256=W6lVaYVYzSzhFHgqitmw6XLtxgxBhINgHZJfSnxg6ts,265
186
+ letta/types/usage_message.py,sha256=x-O2o4293D23_rbLhd7Wck7JUHbbrPb3DTVXsJ115N8,947
187
+ letta/types/usage_statistics.py,sha256=EchBQ4u6l_5aFRfjWlTLVQ7DozwjhnOR3ePcllZSkPI,688
188
+ letta/types/user.py,sha256=PYqneg-Xh5iGUPShFQYXscjWxlGijoya8bGz7iONEcE,1461
189
+ letta/types/user_create.py,sha256=JHCSRbf4-N9fvHZJGaxmTEcuKtMuEPJcm9OAYG23Zdg,712
190
+ letta/types/user_message_input.py,sha256=GukptCjs38RyYTF5NeJ0BiAKsW4ugx-o8cc0rUWbKBM,722
191
+ letta/types/user_message_input_content.py,sha256=TEBnUQHz98kmY2cBPOdjOnl2MSUpslbukI8qEpM5FKg,142
192
+ letta/types/user_message_output.py,sha256=u8qcUopiMBGEJS8uxhlJZlkDkVw4Y-HYY6sflo7FCWY,971
193
+ letta/types/user_update.py,sha256=L5GRkGf23DNrcEYkceOSNf7EL47DORxUN36c72-ZKr0,860
194
+ letta/types/validation_error.py,sha256=qazGitGiLpbV14KUiLB7rKuc_yKWhlpC5Sap98tKYKg,678
195
+ letta/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
196
+ letta/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
197
+ letta_client-0.1.2.dist-info/METADATA,sha256=QhkO3crnOkh5BDyYg-kg1oEbzh7nCUyWgmCZlQn1gRc,4886
198
+ letta_client-0.1.2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
199
+ letta_client-0.1.2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.8.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,15 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: letta-client
3
- Version: 0.1.0
4
- Summary:
5
- Author: Sarah Wooders
6
- Author-email: sarahwooders@gmail.com
7
- Requires-Python: >=3.9,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.9
10
- Classifier: Programming Language :: Python :: 3.10
11
- Classifier: Programming Language :: Python :: 3.11
12
- Classifier: Programming Language :: Python :: 3.12
13
- Description-Content-Type: text/markdown
14
-
15
-
@@ -1,4 +0,0 @@
1
- letta_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- letta_client-0.1.0.dist-info/METADATA,sha256=g2PzFFlfGyTgJQgouQyD4RqI55pDVDqA5KfVpP2zRKU,446
3
- letta_client-0.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
4
- letta_client-0.1.0.dist-info/RECORD,,
File without changes