letta-client 0.1.0__py3-none-any.whl → 0.1.4__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 (193) hide show
  1. letta/__init__.py +277 -0
  2. letta/agents/__init__.py +44 -0
  3. letta/agents/archival_memory/__init__.py +2 -0
  4. letta/agents/archival_memory/client.py +591 -0
  5. letta/agents/client.py +2604 -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 +39 -0
  27. letta/agents/types/agents_get_agent_variables_response.py +19 -0
  28. letta/agents/types/agents_migrate_response.py +19 -0
  29. letta/agents/types/agents_search_deployed_agents_request_combinator.py +5 -0
  30. letta/agents/types/agents_search_deployed_agents_request_search_item.py +16 -0
  31. letta/agents/types/agents_search_deployed_agents_request_search_item_direction.py +27 -0
  32. letta/agents/types/agents_search_deployed_agents_request_search_item_direction_direction.py +5 -0
  33. letta/agents/types/agents_search_deployed_agents_request_search_item_direction_value.py +7 -0
  34. letta/agents/types/agents_search_deployed_agents_request_search_item_operator.py +24 -0
  35. letta/agents/types/agents_search_deployed_agents_request_search_item_operator_operator.py +7 -0
  36. letta/agents/types/agents_search_deployed_agents_request_search_item_zero.py +20 -0
  37. letta/agents/types/create_agent_request_tool_rules_item.py +9 -0
  38. letta/agents/types/update_agent_tool_rules_item.py +9 -0
  39. letta/blocks/__init__.py +2 -0
  40. letta/blocks/client.py +1054 -0
  41. letta/client.py +164 -0
  42. letta/core/__init__.py +47 -0
  43. letta/core/api_error.py +15 -0
  44. letta/core/client_wrapper.py +76 -0
  45. letta/core/datetime_utils.py +28 -0
  46. letta/core/file.py +67 -0
  47. letta/core/http_client.py +499 -0
  48. letta/core/jsonable_encoder.py +101 -0
  49. letta/core/pydantic_utilities.py +296 -0
  50. letta/core/query_encoder.py +58 -0
  51. letta/core/remove_none_from_dict.py +11 -0
  52. letta/core/request_options.py +35 -0
  53. letta/core/serialization.py +272 -0
  54. letta/environment.py +8 -0
  55. letta/errors/__init__.py +8 -0
  56. letta/errors/conflict_error.py +9 -0
  57. letta/errors/internal_server_error.py +9 -0
  58. letta/errors/not_found_error.py +9 -0
  59. letta/errors/unprocessable_entity_error.py +9 -0
  60. letta/health/__init__.py +2 -0
  61. letta/health/client.py +108 -0
  62. letta/jobs/__init__.py +2 -0
  63. letta/jobs/client.py +503 -0
  64. letta/models/__init__.py +2 -0
  65. letta/models/client.py +201 -0
  66. letta/sources/__init__.py +5 -0
  67. letta/sources/client.py +1154 -0
  68. letta/sources/files/__init__.py +2 -0
  69. letta/sources/files/client.py +436 -0
  70. letta/sources/passages/__init__.py +2 -0
  71. letta/sources/passages/client.py +145 -0
  72. letta/tools/__init__.py +2 -0
  73. letta/tools/client.py +1823 -0
  74. letta/types/__init__.py +231 -0
  75. letta/types/action_model.py +36 -0
  76. letta/types/action_parameters_model.py +26 -0
  77. letta/types/action_response_model.py +26 -0
  78. letta/types/agent_state.py +139 -0
  79. letta/types/agent_state_tool_rules_item.py +9 -0
  80. letta/types/agent_type.py +8 -0
  81. letta/types/app_auth_scheme.py +34 -0
  82. letta/types/app_auth_scheme_auth_mode.py +7 -0
  83. letta/types/app_model.py +44 -0
  84. letta/types/archival_memory_summary.py +22 -0
  85. letta/types/assistant_file.py +33 -0
  86. letta/types/assistant_message_input.py +23 -0
  87. letta/types/assistant_message_output.py +23 -0
  88. letta/types/auth_request.py +22 -0
  89. letta/types/auth_response.py +29 -0
  90. letta/types/auth_scheme_field.py +30 -0
  91. letta/types/block.py +91 -0
  92. letta/types/block_update.py +60 -0
  93. letta/types/chat_completion_request.py +49 -0
  94. letta/types/chat_completion_request_function_call.py +6 -0
  95. letta/types/chat_completion_request_messages_item.py +11 -0
  96. letta/types/chat_completion_request_stop.py +5 -0
  97. letta/types/chat_completion_request_tool_choice.py +8 -0
  98. letta/types/chat_completion_response.py +32 -0
  99. letta/types/child_tool_rule.py +33 -0
  100. letta/types/choice.py +25 -0
  101. letta/types/conditional_tool_rule.py +43 -0
  102. letta/types/conflict_error_body.py +21 -0
  103. letta/types/context_window_overview.py +105 -0
  104. letta/types/create_assistant_file_request.py +22 -0
  105. letta/types/create_assistant_request.py +57 -0
  106. letta/types/create_block.py +56 -0
  107. letta/types/delete_assistant_file_response.py +28 -0
  108. letta/types/delete_assistant_response.py +28 -0
  109. letta/types/e_2_b_sandbox_config.py +32 -0
  110. letta/types/embedding_config.py +77 -0
  111. letta/types/embedding_config_embedding_endpoint_type.py +26 -0
  112. letta/types/file_metadata.py +82 -0
  113. letta/types/function_call_input.py +19 -0
  114. letta/types/function_call_output.py +20 -0
  115. letta/types/function_schema.py +21 -0
  116. letta/types/health.py +24 -0
  117. letta/types/http_validation_error.py +20 -0
  118. letta/types/init_tool_rule.py +29 -0
  119. letta/types/internal_server_error_body.py +19 -0
  120. letta/types/job.py +79 -0
  121. letta/types/job_status.py +5 -0
  122. letta/types/letta_request.py +33 -0
  123. letta/types/letta_response.py +37 -0
  124. letta/types/letta_schemas_letta_message_tool_call.py +21 -0
  125. letta/types/letta_schemas_message_message.py +103 -0
  126. letta/types/letta_schemas_openai_chat_completion_request_tool.py +21 -0
  127. letta/types/letta_schemas_openai_chat_completion_request_tool_call.py +24 -0
  128. letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py +20 -0
  129. letta/types/letta_schemas_openai_chat_completion_response_message.py +24 -0
  130. letta/types/letta_schemas_openai_chat_completion_response_tool_call.py +22 -0
  131. letta/types/letta_schemas_openai_chat_completions_tool_call_function.py +27 -0
  132. letta/types/letta_schemas_openai_chat_completions_tool_call_input.py +29 -0
  133. letta/types/letta_schemas_openai_chat_completions_tool_call_output.py +29 -0
  134. letta/types/letta_schemas_tool_tool.py +88 -0
  135. letta/types/letta_usage_statistics.py +48 -0
  136. letta/types/llm_config.py +65 -0
  137. letta/types/llm_config_model_endpoint_type.py +26 -0
  138. letta/types/local_sandbox_config.py +32 -0
  139. letta/types/log_prob_token.py +21 -0
  140. letta/types/memory.py +32 -0
  141. letta/types/message_content_log_prob.py +23 -0
  142. letta/types/message_create.py +37 -0
  143. letta/types/message_create_role.py +5 -0
  144. letta/types/message_role.py +5 -0
  145. letta/types/not_found_error_body.py +19 -0
  146. letta/types/not_found_error_body_message.py +11 -0
  147. letta/types/open_ai_assistant.py +67 -0
  148. letta/types/organization.py +33 -0
  149. letta/types/organization_create.py +22 -0
  150. letta/types/passage.py +107 -0
  151. letta/types/reasoning_message.py +32 -0
  152. letta/types/recall_memory_summary.py +22 -0
  153. letta/types/response_format.py +19 -0
  154. letta/types/sandbox_config.py +59 -0
  155. letta/types/sandbox_config_create.py +23 -0
  156. letta/types/sandbox_config_create_config.py +7 -0
  157. letta/types/sandbox_config_update.py +27 -0
  158. letta/types/sandbox_config_update_config.py +7 -0
  159. letta/types/sandbox_environment_variable.py +68 -0
  160. letta/types/sandbox_environment_variable_create.py +32 -0
  161. letta/types/sandbox_environment_variable_update.py +36 -0
  162. letta/types/sandbox_type.py +5 -0
  163. letta/types/source.py +85 -0
  164. letta/types/system_message_input.py +21 -0
  165. letta/types/system_message_output.py +32 -0
  166. letta/types/terminal_tool_rule.py +29 -0
  167. letta/types/tool_call_delta.py +21 -0
  168. letta/types/tool_call_function_output.py +27 -0
  169. letta/types/tool_call_message.py +33 -0
  170. letta/types/tool_call_message_tool_call.py +7 -0
  171. letta/types/tool_create.py +57 -0
  172. letta/types/tool_function_choice.py +21 -0
  173. letta/types/tool_input.py +21 -0
  174. letta/types/tool_message.py +21 -0
  175. letta/types/tool_return_message.py +41 -0
  176. letta/types/tool_return_message_status.py +5 -0
  177. letta/types/tool_rule_type.py +10 -0
  178. letta/types/usage_statistics.py +21 -0
  179. letta/types/user.py +57 -0
  180. letta/types/user_create.py +27 -0
  181. letta/types/user_message_input.py +22 -0
  182. letta/types/user_message_input_content.py +5 -0
  183. letta/types/user_message_output.py +32 -0
  184. letta/types/user_update.py +32 -0
  185. letta/types/validation_error.py +22 -0
  186. letta/types/validation_error_loc_item.py +5 -0
  187. letta/version.py +3 -0
  188. letta_client-0.1.4.dist-info/METADATA +189 -0
  189. letta_client-0.1.4.dist-info/RECORD +191 -0
  190. {letta_client-0.1.0.dist-info → letta_client-0.1.4.dist-info}/WHEEL +1 -1
  191. letta_client-0.1.0.dist-info/METADATA +0 -15
  192. letta_client-0.1.0.dist-info/RECORD +0 -4
  193. /letta_client/__init__.py → /letta/py.typed +0 -0
@@ -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.4
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,191 @@
1
+ letta/__init__.py,sha256=DZTQcXu5Lt673oIhEKXBTGLB6Ivvb9OwnLtVsjRdga0,7774
2
+ letta/agents/__init__.py,sha256=0U-cSD6b_LY0z-an5JowMyhfNnXkSxQwijsQYHlZZ0E,1735
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=-w9V9cyc0XobxH250HwZKbdj5pe_ufEPOeud6ABEvPM,89564
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=7GanilB-3i0yKJ3WcsTdNFkYUb7cwVjl5ZR7OBSjkOY,2032
27
+ letta/agents/types/agents_get_agent_variables_response.py,sha256=1Yda8P45XECyQOIrmm1n3-tvv-4aSsEV6F5ZtNefLJM,599
28
+ letta/agents/types/agents_migrate_response.py,sha256=7c3FRBCUwxqB5yj9eYIh4GA4nBs-J3ccus-o0WLu71U,570
29
+ letta/agents/types/agents_search_deployed_agents_request_combinator.py,sha256=SQCYb6uH3FJF2eFWd4bZBbAiTlLwsAnOsnUkyKXcYfQ,180
30
+ letta/agents/types/agents_search_deployed_agents_request_search_item.py,sha256=6qrFyIQ69UW1IFIRgjxXHLJ0WQYx-Vwy8HtRy9II7iU,694
31
+ letta/agents/types/agents_search_deployed_agents_request_search_item_direction.py,sha256=-o7tFzOGeOwJrFe2w0lT7m5mPEgCfgoj9xQQDaA3Mhc,1080
32
+ letta/agents/types/agents_search_deployed_agents_request_search_item_direction_direction.py,sha256=-iH8kfo7SGFrHlnwwEbBZb32ZniKQh1ibCuOAi-x-4k,200
33
+ letta/agents/types/agents_search_deployed_agents_request_search_item_direction_value.py,sha256=0d36TLtCECwaFkz0wE86Xe0YfI4NT1ava_Ae30GS01A,215
34
+ letta/agents/types/agents_search_deployed_agents_request_search_item_operator.py,sha256=H9q76zCWNh6s05WnDr_3YzPyDRfVVlpGu6Sw7vt1N_c,864
35
+ letta/agents/types/agents_search_deployed_agents_request_search_item_operator_operator.py,sha256=pnupn_zPJEjTvGHtNGQ5VhsrHwm1cdUWzI9gOHcPlyY,214
36
+ letta/agents/types/agents_search_deployed_agents_request_search_item_zero.py,sha256=ITNfVHpBcOE3liV9ZzT5HMeqP7qdXgtJAmjozJJ3psI,642
37
+ letta/agents/types/create_agent_request_tool_rules_item.py,sha256=xSYFbxIAA6k-pZfVsCaTByE8nXRIqyKnfOm_IEjKfEM,415
38
+ letta/agents/types/update_agent_tool_rules_item.py,sha256=5pYbFgeqxmXUHUTZpEWlZ7ODc1G6CpFGWljz_iBpWVA,408
39
+ letta/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
40
+ letta/blocks/client.py,sha256=SuRoJKkDSpL0Gg6jCzuMagwSUTLFKZQBq9j1BXwP5Y8,32367
41
+ letta/client.py,sha256=3PhYFtmBjhyNgcYRpNI6SDl-AcF7_itAHnYk5R9Uv-M,6789
42
+ letta/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
43
+ letta/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
44
+ letta/core/client_wrapper.py,sha256=vUYT8XQeWZ1eMHkfAbwte2XIfINR1H-5Fym08heD62M,2213
45
+ letta/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
46
+ letta/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
47
+ letta/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
48
+ letta/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
49
+ letta/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
50
+ letta/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
51
+ letta/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
52
+ letta/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
53
+ letta/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
54
+ letta/environment.py,sha256=7ou6ZwDZLBOdYQrHv-1lUk5a1q-HgEwzGlFITiRZ0XU,198
55
+ letta/errors/__init__.py,sha256=wqo3GnyT9iRy7zuPMs6TXOg9GMNfDp4fxq7M8lFFgK8,367
56
+ letta/errors/conflict_error.py,sha256=INHRMcX6i0ywcbZfw-vn3aBoVi06bDjev3p_O8U8IA4,296
57
+ letta/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
58
+ letta/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
59
+ letta/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
60
+ letta/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
61
+ letta/health/client.py,sha256=gDdU8-mvPlLsh0ZYN7WgArcETWTHPe_r6tSZWcu6wiU,3220
62
+ letta/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
63
+ letta/jobs/client.py,sha256=LoKtFPHf_TjVzN2W7gGAMbptZeuY4aVi3K5i9H8gkXA,15510
64
+ letta/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
65
+ letta/models/client.py,sha256=X7WXeuF4UGp7-cTGNC5iEFhFXtYgBQifFI48k8bJQQc,6266
66
+ letta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ letta/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
68
+ letta/sources/client.py,sha256=ZqbUXxrNksO6q9fNKAICHegJz8OuZ1HJ9V1vtClC_cE,36463
69
+ letta/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
70
+ letta/sources/files/client.py,sha256=N5hVKUUmhvzQJi6RjSlzCWpAb8-WDW9J39MGSKRYTnU,13231
71
+ letta/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
72
+ letta/sources/passages/client.py,sha256=BdemStVj4SAhVi5ZLGt7UB793OBFIQVTN7iuTpbe2oQ,4741
73
+ letta/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
74
+ letta/tools/client.py,sha256=7zqMFjg4WTd5fXHq6-uG5Bs0EvlqgQ6uEBGSqArSdYE,58410
75
+ letta/types/__init__.py,sha256=qbQEEFt8eyEP5MM8-kcPlIR30IqNUTh1gX6Fj2IhHPY,9405
76
+ letta/types/action_model.py,sha256=wpRKr5lwx--x1IULnWMX4-JEgeiLy1Rfgxcihz-z3UI,1204
77
+ letta/types/action_parameters_model.py,sha256=Attvw_SX5x8xJ8XJOib2ASpOX1ayCUqGxfyi6svTPHw,747
78
+ letta/types/action_response_model.py,sha256=jmtD85NYG5Jkf4ioLyYtHvdLFb92905Nq9mIPUa0yEQ,743
79
+ letta/types/agent_state.py,sha256=m33rF2oIwUf5SwLA3L_WXuOxH3L0p4nPSHIu5nxpfVU,4190
80
+ letta/types/agent_state_tool_rules_item.py,sha256=QVFCt60Ro3ZyyQtzA5Zn8Tq8t9osrpqchB08xzmdLs4,375
81
+ letta/types/agent_type.py,sha256=_-oGgLcf5PkLowj4BWvZ97nnjPWGztbAEGLsPu8sm3g,237
82
+ letta/types/app_auth_scheme.py,sha256=9OgqCmSYkFgWZNNFGhhBmCB808nzY01ilr74Ye6Q7hs,1240
83
+ letta/types/app_auth_scheme_auth_mode.py,sha256=Zafrac9piNVjCVppCv0CS34Yx4rFaFPieeNCrtaPSwk,225
84
+ letta/types/app_model.py,sha256=nXFCHttrO6DqY-GTYWuHQ2ClnGq7zTgH8q1KqJT76Io,1517
85
+ letta/types/archival_memory_summary.py,sha256=MURc1dD-9eAQiqEPIMeJzuEdjqHQXc9Bvff1sEuDdDc,637
86
+ letta/types/assistant_file.py,sha256=sbhfxKtQGBzgT2wwFwRBwMeDiz3nEZlnWjWN6imXnTo,879
87
+ letta/types/assistant_message_input.py,sha256=91Ltnd1UXVgP_rvWSP6joM7972vfzmVlKM-EfL13WbQ,884
88
+ letta/types/assistant_message_output.py,sha256=xE1ByV7nTVS4lfpPuhntFbM0zFpm7Fcb0ARESYbKztU,710
89
+ letta/types/auth_request.py,sha256=As9L-GYTzr39W6v7q-40UtxzW-tlKin9Ln9Gqxm4mDA,681
90
+ letta/types/auth_response.py,sha256=wYehJ6saW5e-JSlw70sORpZ8dnlQKPX6Gpw-YANOeMg,859
91
+ letta/types/auth_scheme_field.py,sha256=hrzhKhNOf4D0gvwq_3h1b4dTJEIjEpfXfxBrVIIEsfM,879
92
+ letta/types/block.py,sha256=ixjoFAVaH6geeM8RHoDV5sZmt2cfNwtMahTuWFOTJqQ,3175
93
+ letta/types/block_update.py,sha256=OGH9bdStMh_VL4VQ1jJ31aE9ufDspbMyo80mSRpqeSU,1643
94
+ letta/types/chat_completion_request.py,sha256=RkTlEcX5LGFu_pNmZzoXfiKuxUs5I2-HiOuYVx_ZP30,2099
95
+ letta/types/chat_completion_request_function_call.py,sha256=I3aPJPef1TfEM0qVuiJQHF9c-MJcQkq1QuSyXm0gR98,247
96
+ letta/types/chat_completion_request_messages_item.py,sha256=RaP8kpCRf0uc48TnzWNUn1Csl4snQeQrSEIPHWrgajQ,408
97
+ letta/types/chat_completion_request_stop.py,sha256=-znv6wKECPL0blRnNuqY89OPWu3CY-aCzLFCgUOZXiw,144
98
+ letta/types/chat_completion_request_tool_choice.py,sha256=17mDEt1B55OpvIKPtz_Jmzvc998zNRKbfawr4-J63t0,282
99
+ letta/types/chat_completion_response.py,sha256=VxTN8H6WBfF-4NpNZRKIqpAPhc1IYuEWbCe6T4-lcLg,984
100
+ letta/types/child_tool_rule.py,sha256=llamP1LSCkyBYEBbUsMLktfgdskhiMh-yOTYdfJ4Sfw,961
101
+ letta/types/choice.py,sha256=WmSYEDtFnMrmVA51vnwCsV8SvQW_Pu5XhrR2KM7yMFI,955
102
+ letta/types/conditional_tool_rule.py,sha256=PpxAL8w82NAOqePFOZj1dQzYHOFgxOgS7zfTl304GDI,1324
103
+ letta/types/conflict_error_body.py,sha256=1u_zziegl_-iXcZmgzabm3I7cY6sVPt8vL2Pshow3gk,785
104
+ letta/types/context_window_overview.py,sha256=QimBWemW_2GHR4_qK3rTJmy1TihSjZT6hvtKB3pm830,2830
105
+ letta/types/create_assistant_file_request.py,sha256=61aWsSfPV2YvxlFeWYyHhXrpChR6nqcwgq7K0Zfhgow,646
106
+ letta/types/create_assistant_request.py,sha256=rA2NPmpBSluVR4WlFvg6VgakEdfJgwC6oxQCVWa2shc,1521
107
+ letta/types/create_block.py,sha256=zfXSQGAiGNCjGbyPCH3a1N7MHvuPwRC-brMfIrPWwzc,1424
108
+ letta/types/delete_assistant_file_response.py,sha256=UN6ZQKycuvieoMllotukxnylz9by6hZZvx16IV8L9XQ,770
109
+ letta/types/delete_assistant_response.py,sha256=7i_LE58bsikpMY73DVINZVE7QIhZAvK4U4-SEe6frWw,768
110
+ letta/types/e_2_b_sandbox_config.py,sha256=uCzy5EJvno0oJGNlY-cajdLHMZ1lxh6J8lp4s_CyqLg,955
111
+ letta/types/embedding_config.py,sha256=L7RgZOS4ND53_tMZNWcVS-i8udSN5kjjvY8DDWnJ-Wk,2505
112
+ letta/types/embedding_config_embedding_endpoint_type.py,sha256=Iw8W4h9bEYdTYYaU4__JUPKqS-zO9WpzIQKtihvJH8U,515
113
+ letta/types/file_metadata.py,sha256=IhvFUGtZ1OB5aaFThe69iju844C31HaozRiKSLkiQeM,2137
114
+ letta/types/function_call_input.py,sha256=iAQxp6wN59iB0LiNYDVBoMZXjBb6BnRgwcqWbHHYcg0,560
115
+ letta/types/function_call_output.py,sha256=Fe_65XeIQ4bl3LMCM9HmUWnycAb4OmAmDMDH89TtJqQ,580
116
+ letta/types/function_schema.py,sha256=f4qsSzD1gd8jaxxr6lkwA9JpDFsh0gepU-jryQct2y4,688
117
+ letta/types/health.py,sha256=JfUiE0dlUsBJzB_ivqbpLt-8pwhGIzigME-uRD0Z74U,616
118
+ letta/types/http_validation_error.py,sha256=w43naaw4VmntOBb3UC6zqGv6hnvUaMitJMFRK4i8vLc,659
119
+ letta/types/init_tool_rule.py,sha256=IDSFYgNeIPP55KT6cIBkYSSzi0HNxoi4d2fgR6MclN8,835
120
+ letta/types/internal_server_error_body.py,sha256=i4vsXy_WRq2vmh76HB4IUQsyMeWmbNBxAQlW6iASNaE,651
121
+ letta/types/job.py,sha256=oE4L-fWN6RNkuaePWzEKBd2SNY5232yGcn_vcKhD40E,2451
122
+ letta/types/job_status.py,sha256=0Gu5Tku79SDVzCxnjVXQyDPNCizGWUP1ppohAck6a2U,189
123
+ letta/types/letta_request.py,sha256=ups_NcjFZe7E6WPU9CSnl5ncDQDKS-CqsQ9FjzvLJVU,1020
124
+ letta/types/letta_response.py,sha256=Hm48tIefiLZ3CuNvmZ-Q3-0e9H5OSsoQmLCYvgOGpkQ,1264
125
+ letta/types/letta_schemas_letta_message_tool_call.py,sha256=EU5fLZnSJfD0UcpCvNANoC9IC2PFe0TxV3X1Olep60I,616
126
+ letta/types/letta_schemas_message_message.py,sha256=nulBiONzy6hgAS8V2u4ksdpwX_MlQiGcqEJTCJxvGQ8,3092
127
+ letta/types/letta_schemas_openai_chat_completion_request_tool.py,sha256=BgV4h_mrqB2LEevFg3MTMpZyh70wJmMryLqcObqKqj8,706
128
+ letta/types/letta_schemas_openai_chat_completion_request_tool_call.py,sha256=vjVm-VNFtSft0Yjtweh46K4v6GqPjhtsgJqSxfcBK4M,861
129
+ letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py,sha256=gvpaJeRBaqQtV8JD4b8B_R4aC5kYBVefDIq_vzS-QUQ,617
130
+ letta/types/letta_schemas_openai_chat_completion_response_message.py,sha256=zZEXzwld_1zL5w12CJAKtBRXOg-RWE16YDq-NhWf1T8,966
131
+ letta/types/letta_schemas_openai_chat_completion_response_tool_call.py,sha256=21aDMg7b51ulIdqzsa45Hk_fYCvBJZYl7HaidvfyK48,736
132
+ letta/types/letta_schemas_openai_chat_completions_tool_call_function.py,sha256=WZLHTlq3UYO-8E_G-gTC59BTe4mGNsSW7exAI9qA0gU,773
133
+ letta/types/letta_schemas_openai_chat_completions_tool_call_input.py,sha256=QoP1zY0h-VbyHsgHVQmBmv87byZZ3c8Av9q9D8Lpo3U,952
134
+ letta/types/letta_schemas_openai_chat_completions_tool_call_output.py,sha256=10AzIa3b2u_C4x3JYPjlqvvUiwIUilpMyaPnPi2L8AU,868
135
+ letta/types/letta_schemas_tool_tool.py,sha256=nwTDwLqZ1C2CfyyNeYDS73qar6TChi-5FAQjMoNce_w,2428
136
+ letta/types/letta_usage_statistics.py,sha256=4g0IO58t2it-ZpuczoJ-iT_FY2-CZ6Fr2HYSTgXENAc,1519
137
+ letta/types/llm_config.py,sha256=etVkrCTWkoFefY5TXKUswNiO8Kt8T_gdAJD0T0L3_j8,2420
138
+ letta/types/llm_config_model_endpoint_type.py,sha256=rnDv3wDnngPT10CFw24C6kHo4swuLHxv46aLI9Hoosg,505
139
+ letta/types/local_sandbox_config.py,sha256=Tm3t50Dy_Z6tyRd7ZyFYmRFxUAtSjFAwouig_ulKGPA,1042
140
+ letta/types/log_prob_token.py,sha256=9vFvxXeV7atr9_J_hGTcKfBXglIcn0XTbamzRVS4a1w,627
141
+ letta/types/memory.py,sha256=vyY6UtEo_5cUf17rVQIJQQ5hO7ZTxyDx2kHqT3WPFCc,1033
142
+ letta/types/message_content_log_prob.py,sha256=a3ZGlb1FGPAf-qTs_Ec1fzrASZSUrUcaPjpxEUfrvWc,745
143
+ letta/types/message_create.py,sha256=dbmYNRp-R1Ih4kik1NdVaCI5IEaps_MWTtMjhX7ra3Y,929
144
+ letta/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
145
+ letta/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
146
+ letta/types/not_found_error_body.py,sha256=64k_hvsBsOnZOsj6e3JyYSKVQb8cXiArerjt946jnfk,613
147
+ letta/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
148
+ letta/types/open_ai_assistant.py,sha256=BJ7WWFxZvAGZm8BSp00pI4ABNxr6P6t2AeG7WAfUvRM,1708
149
+ letta/types/organization.py,sha256=qgsZr2LQk-j6VWhMC-PKjEz3goRh9VG34BgJ3tV-ix8,925
150
+ letta/types/organization_create.py,sha256=PztQCNUzr4Zv3C9z5N9SK0usxZxZ86VPRgR-UIUXSHE,659
151
+ letta/types/passage.py,sha256=sXn92NtoyTLVisy0E6df5xno5JnWLwTF__Mg_0fjIBs,3306
152
+ letta/types/reasoning_message.py,sha256=FGCMqOMPU585mag6BofcPdeg4Jv6S_aPqILkfLqneZU,944
153
+ letta/types/recall_memory_summary.py,sha256=SA40w3qLLV-kWddaQPSSzggRGrpbiFMrtc82PBJti3Y,633
154
+ letta/types/response_format.py,sha256=5d82oJYUODQxzIVtXdDnlZMcXRwvTPs6GR78d3zPmAQ,581
155
+ letta/types/sandbox_config.py,sha256=qGGMJk1d8qRmIuKr2VEJqe9qQfvNfLlKEPoNrIUVrLo,1713
156
+ letta/types/sandbox_config_create.py,sha256=Kdb2iYRQ2HGmUAWf1dkNKRP5ZNf0rlMBswKaX7c6D1M,728
157
+ letta/types/sandbox_config_create_config.py,sha256=EsSeN81_yPkorfQgOJmumdCWiUt8hk9HawSsRcCc5Hs,263
158
+ letta/types/sandbox_config_update.py,sha256=VPssSERarC2VejfQpRuA32GWTpWy9b1nP1Yva_nSuek,838
159
+ letta/types/sandbox_config_update_config.py,sha256=fGGmMuy43OnELj3qAj0rEcMro-cLD3ekeVpqJqqrs1M,263
160
+ letta/types/sandbox_environment_variable.py,sha256=1QSf2UlCBZqRgQispE7vS17ef7KOOWRt_f-nQMFjQQM,1877
161
+ letta/types/sandbox_environment_variable_create.py,sha256=TaF1qTlzoXu6SXD9lWsEXMUmQtnQBzz3IywVo59axLA,888
162
+ letta/types/sandbox_environment_variable_update.py,sha256=m6V6MWvIVAnZ5K34Fb8YzPxKzDBUwxYQq2BndL-fJ0Y,1030
163
+ letta/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_JheGm4,151
164
+ letta/types/source.py,sha256=aYs_4zmXZmXYD9KLKeeNQHviFxxCf2K_SE6O16CZiQM,2509
165
+ letta/types/system_message_input.py,sha256=w4mFYFIZWtvkil2NnEJPr4OHlPoHn1lonjo2Eo5DMgc,640
166
+ letta/types/system_message_output.py,sha256=y-5ghFnMg1LLYtdoviFefYbn4rKg7PHmczHYh2RVQRM,986
167
+ letta/types/terminal_tool_rule.py,sha256=SlRhVJhFgdN0dn18QHKrig-k4UhVsO9hOJU2dGJKoHI,897
168
+ letta/types/tool_call_delta.py,sha256=-6VrIxuY76eFeFjO6Rkh-xNOMDnRB24C0cFxuWPqaf4,669
169
+ letta/types/tool_call_function_output.py,sha256=VlYlZ0qsR6mozkOr5DThgJxAtzwWurKZR3CHUWiyivY,746
170
+ letta/types/tool_call_message.py,sha256=V9hE5UUzyP_9FVoH2Lt8DYc2-VWGOWWiGzcje17jeqA,1082
171
+ letta/types/tool_call_message_tool_call.py,sha256=574_EuZw2S1A1bGaAfg1KMmPoBggmLVKfsizOx82510,295
172
+ letta/types/tool_create.py,sha256=1a3ce-ZG2U6kwjMLcqpN0anRgiuwt3qUZSA9T25eM1c,1622
173
+ letta/types/tool_function_choice.py,sha256=Jug7RK0YLS0Pt3i-IiZOKBH4hbrVuEBEdG5dCSfccaA,691
174
+ letta/types/tool_input.py,sha256=9f97Jp3jm2mBesfAJ_Do5Sbha4uKcM01y332txiXJkw,672
175
+ letta/types/tool_message.py,sha256=zJTOLSH97oncrGPbqvI1RXI85HLT-cSJJuXrtO2vk9k,617
176
+ letta/types/tool_return_message.py,sha256=axAhNN7CHC2g4hPQtlXFd26Er3da2MU_LybHaKfrXVA,1561
177
+ letta/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
178
+ letta/types/tool_rule_type.py,sha256=W6lVaYVYzSzhFHgqitmw6XLtxgxBhINgHZJfSnxg6ts,265
179
+ letta/types/usage_statistics.py,sha256=EchBQ4u6l_5aFRfjWlTLVQ7DozwjhnOR3ePcllZSkPI,688
180
+ letta/types/user.py,sha256=PYqneg-Xh5iGUPShFQYXscjWxlGijoya8bGz7iONEcE,1461
181
+ letta/types/user_create.py,sha256=JHCSRbf4-N9fvHZJGaxmTEcuKtMuEPJcm9OAYG23Zdg,712
182
+ letta/types/user_message_input.py,sha256=GukptCjs38RyYTF5NeJ0BiAKsW4ugx-o8cc0rUWbKBM,722
183
+ letta/types/user_message_input_content.py,sha256=TEBnUQHz98kmY2cBPOdjOnl2MSUpslbukI8qEpM5FKg,142
184
+ letta/types/user_message_output.py,sha256=u8qcUopiMBGEJS8uxhlJZlkDkVw4Y-HYY6sflo7FCWY,971
185
+ letta/types/user_update.py,sha256=L5GRkGf23DNrcEYkceOSNf7EL47DORxUN36c72-ZKr0,860
186
+ letta/types/validation_error.py,sha256=qazGitGiLpbV14KUiLB7rKuc_yKWhlpC5Sap98tKYKg,678
187
+ letta/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
188
+ letta/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
189
+ letta_client-0.1.4.dist-info/METADATA,sha256=Xpgg2tsd-vo7v1sJ4np_V9eVbTf7lA9EgnXPpfzfEUs,4886
190
+ letta_client-0.1.4.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
191
+ letta_client-0.1.4.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.6.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