letta-client 0.1.232__py3-none-any.whl → 1.7.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 (757) hide show
  1. letta_client/__init__.py +91 -676
  2. letta_client/_base_client.py +2125 -0
  3. letta_client/_client.py +1136 -0
  4. letta_client/_compat.py +219 -0
  5. letta_client/_constants.py +14 -0
  6. letta_client/_exceptions.py +108 -0
  7. letta_client/_files.py +123 -0
  8. letta_client/_models.py +872 -0
  9. letta_client/_qs.py +150 -0
  10. letta_client/_resource.py +43 -0
  11. letta_client/_response.py +832 -0
  12. letta_client/_streaming.py +371 -0
  13. letta_client/_types.py +270 -0
  14. letta_client/_utils/__init__.py +64 -0
  15. letta_client/_utils/_compat.py +45 -0
  16. letta_client/_utils/_datetime_parse.py +136 -0
  17. letta_client/_utils/_logs.py +25 -0
  18. letta_client/_utils/_proxy.py +65 -0
  19. letta_client/_utils/_reflection.py +42 -0
  20. letta_client/_utils/_resources_proxy.py +24 -0
  21. letta_client/_utils/_streams.py +12 -0
  22. letta_client/_utils/_sync.py +58 -0
  23. letta_client/_utils/_transform.py +457 -0
  24. letta_client/_utils/_typing.py +156 -0
  25. letta_client/_utils/_utils.py +421 -0
  26. letta_client/_version.py +4 -0
  27. letta_client/lib/.keep +4 -0
  28. letta_client/pagination.py +280 -0
  29. letta_client/resources/__init__.py +215 -0
  30. letta_client/resources/access_tokens.py +396 -0
  31. letta_client/resources/agents/__init__.py +131 -0
  32. letta_client/resources/agents/agents.py +2148 -0
  33. letta_client/resources/agents/archives.py +260 -0
  34. letta_client/resources/agents/blocks.py +736 -0
  35. letta_client/resources/agents/files.py +541 -0
  36. letta_client/resources/agents/folders.py +422 -0
  37. letta_client/resources/agents/identities.py +260 -0
  38. letta_client/resources/agents/messages.py +1800 -0
  39. letta_client/resources/agents/passages.py +638 -0
  40. letta_client/resources/agents/tools.py +651 -0
  41. letta_client/resources/archives/__init__.py +33 -0
  42. letta_client/resources/archives/archives.py +650 -0
  43. letta_client/resources/archives/passages.py +309 -0
  44. letta_client/resources/blocks/__init__.py +33 -0
  45. letta_client/resources/blocks/agents.py +289 -0
  46. letta_client/resources/blocks/blocks.py +977 -0
  47. letta_client/resources/conversations/__init__.py +33 -0
  48. letta_client/resources/conversations/conversations.py +611 -0
  49. letta_client/resources/conversations/messages.py +650 -0
  50. letta_client/resources/folders/__init__.py +47 -0
  51. letta_client/resources/folders/agents.py +234 -0
  52. letta_client/resources/folders/files.py +581 -0
  53. letta_client/resources/folders/folders.py +734 -0
  54. letta_client/resources/mcp_servers/__init__.py +33 -0
  55. letta_client/resources/mcp_servers/mcp_servers.py +670 -0
  56. letta_client/resources/mcp_servers/tools.py +351 -0
  57. letta_client/resources/messages.py +455 -0
  58. letta_client/resources/models/__init__.py +33 -0
  59. letta_client/resources/models/embeddings.py +149 -0
  60. letta_client/resources/models/models.py +233 -0
  61. letta_client/resources/passages.py +259 -0
  62. letta_client/resources/runs/__init__.py +75 -0
  63. letta_client/resources/runs/messages.py +363 -0
  64. letta_client/resources/runs/runs.py +502 -0
  65. letta_client/resources/runs/steps.py +229 -0
  66. letta_client/resources/runs/trace.py +197 -0
  67. letta_client/resources/runs/usage.py +163 -0
  68. letta_client/resources/steps/__init__.py +75 -0
  69. letta_client/resources/steps/feedback.py +198 -0
  70. letta_client/resources/steps/messages.py +237 -0
  71. letta_client/resources/steps/metrics.py +167 -0
  72. letta_client/resources/steps/steps.py +505 -0
  73. letta_client/resources/steps/trace.py +169 -0
  74. letta_client/resources/tags.py +240 -0
  75. letta_client/resources/templates/__init__.py +33 -0
  76. letta_client/resources/templates/agents.py +229 -0
  77. letta_client/resources/templates/templates.py +540 -0
  78. letta_client/resources/tools.py +1721 -0
  79. letta_client/types/__init__.py +148 -534
  80. letta_client/types/access_token_create_params.py +32 -0
  81. letta_client/types/access_token_create_response.py +34 -0
  82. letta_client/types/access_token_delete_params.py +11 -0
  83. letta_client/types/access_token_list_params.py +23 -0
  84. letta_client/types/access_token_list_response.py +40 -0
  85. letta_client/types/agent_create_params.py +444 -0
  86. letta_client/types/agent_environment_variable.py +40 -63
  87. letta_client/types/agent_export_file_params.py +26 -0
  88. letta_client/types/agent_export_file_response.py +7 -0
  89. letta_client/types/agent_import_file_params.py +57 -0
  90. letta_client/types/agent_import_file_response.py +14 -0
  91. letta_client/types/agent_list_params.py +100 -0
  92. letta_client/types/agent_retrieve_params.py +37 -0
  93. letta_client/types/agent_state.py +651 -138
  94. letta_client/types/agent_type.py +14 -14
  95. letta_client/types/agent_update_params.py +386 -0
  96. letta_client/types/agents/__init__.py +76 -0
  97. letta_client/types/agents/approval_create_param.py +35 -0
  98. letta_client/types/agents/approval_request_message.py +57 -0
  99. letta_client/types/agents/approval_response_message.py +61 -0
  100. letta_client/types/agents/approval_return.py +22 -0
  101. letta_client/types/agents/approval_return_param.py +22 -0
  102. letta_client/types/agents/assistant_message.py +48 -0
  103. letta_client/types/agents/block.py +68 -0
  104. letta_client/types/agents/block_list_params.py +34 -0
  105. letta_client/types/agents/block_update_params.py +63 -0
  106. letta_client/types/agents/event_message.py +40 -0
  107. letta_client/types/agents/file_close_all_response.py +8 -0
  108. letta_client/types/agents/file_list_params.py +40 -0
  109. letta_client/types/agents/file_list_response.py +42 -0
  110. letta_client/types/agents/file_open_response.py +8 -0
  111. letta_client/types/agents/folder_list_params.py +34 -0
  112. letta_client/types/agents/folder_list_response.py +49 -0
  113. letta_client/types/agents/hidden_reasoning_message.py +49 -0
  114. letta_client/types/agents/image_content.py +67 -0
  115. letta_client/types/agents/image_content_param.py +64 -0
  116. letta_client/types/agents/internal_message.py +271 -0
  117. letta_client/types/agents/job_status.py +7 -0
  118. letta_client/types/agents/job_type.py +7 -0
  119. letta_client/types/agents/letta_assistant_message_content_union.py +19 -0
  120. letta_client/types/agents/letta_response.py +76 -0
  121. letta_client/types/agents/letta_streaming_response.py +155 -0
  122. letta_client/types/agents/letta_user_message_content_union.py +14 -0
  123. letta_client/types/agents/message.py +36 -0
  124. letta_client/types/agents/message_cancel_params.py +15 -0
  125. letta_client/types/agents/message_cancel_response.py +8 -0
  126. letta_client/types/agents/message_compact_params.py +145 -0
  127. letta_client/types/agents/message_compact_response.py +13 -0
  128. letta_client/types/agents/message_create_async_params.py +145 -0
  129. letta_client/types/agents/message_create_params.py +181 -0
  130. letta_client/types/agents/message_list_params.py +55 -0
  131. letta_client/types/agents/message_reset_params.py +12 -0
  132. letta_client/types/agents/message_role.py +7 -0
  133. letta_client/types/agents/message_stream_params.py +166 -0
  134. letta_client/types/agents/message_type.py +17 -0
  135. letta_client/types/agents/omitted_reasoning_content.py +20 -0
  136. letta_client/types/agents/omitted_reasoning_content_param.py +20 -0
  137. letta_client/types/agents/passage_create_params.py +23 -0
  138. letta_client/types/agents/passage_create_response.py +10 -0
  139. letta_client/types/agents/passage_list_params.py +28 -0
  140. letta_client/types/agents/passage_list_response.py +10 -0
  141. letta_client/types/agents/passage_search_params.py +35 -0
  142. letta_client/types/agents/passage_search_response.py +29 -0
  143. letta_client/types/agents/reasoning_content.py +27 -0
  144. letta_client/types/agents/reasoning_content_param.py +27 -0
  145. letta_client/types/agents/reasoning_message.py +50 -0
  146. letta_client/types/agents/redacted_reasoning_content.py +18 -0
  147. letta_client/types/agents/redacted_reasoning_content_param.py +17 -0
  148. letta_client/types/agents/run.py +91 -0
  149. letta_client/types/agents/summary_message.py +38 -0
  150. letta_client/types/agents/system_message.py +46 -0
  151. letta_client/types/agents/text_content.py +19 -0
  152. letta_client/types/agents/text_content_param.py +19 -0
  153. letta_client/types/agents/tool_call.py +13 -0
  154. letta_client/types/agents/tool_call_content.py +28 -0
  155. letta_client/types/agents/tool_call_content_param.py +28 -0
  156. letta_client/types/agents/tool_call_delta.py +15 -0
  157. letta_client/types/agents/tool_call_message.py +52 -0
  158. letta_client/types/agents/tool_execution_result.py +33 -0
  159. letta_client/types/agents/tool_list_params.py +34 -0
  160. letta_client/types/agents/tool_return.py +29 -0
  161. letta_client/types/agents/tool_return_content.py +22 -0
  162. letta_client/types/agents/tool_return_content_param.py +21 -0
  163. letta_client/types/agents/tool_return_param.py +30 -0
  164. letta_client/types/agents/tool_run_params.py +16 -0
  165. letta_client/types/agents/tool_update_approval_params.py +21 -0
  166. letta_client/types/agents/user_message.py +50 -0
  167. letta_client/types/anthropic_model_settings.py +62 -0
  168. letta_client/types/anthropic_model_settings_param.py +59 -0
  169. letta_client/types/archive.py +46 -0
  170. letta_client/types/archive_create_params.py +22 -0
  171. letta_client/types/archive_list_params.py +40 -0
  172. letta_client/types/archive_update_params.py +14 -0
  173. letta_client/types/archives/__init__.py +5 -0
  174. letta_client/types/archives/passage_create_params.py +21 -0
  175. letta_client/types/azure_model_settings.py +36 -0
  176. letta_client/types/azure_model_settings_param.py +33 -0
  177. letta_client/types/bedrock_model_settings.py +36 -0
  178. letta_client/types/bedrock_model_settings_param.py +33 -0
  179. letta_client/types/block_create_params.py +59 -0
  180. letta_client/types/block_list_params.py +102 -0
  181. letta_client/types/block_response.py +66 -0
  182. letta_client/types/block_update_params.py +60 -0
  183. letta_client/types/blocks/__init__.py +5 -0
  184. letta_client/types/blocks/agent_list_params.py +61 -0
  185. letta_client/types/child_tool_rule.py +37 -26
  186. letta_client/types/child_tool_rule_param.py +50 -0
  187. letta_client/types/conditional_tool_rule.py +19 -35
  188. letta_client/types/conditional_tool_rule_param.py +31 -0
  189. letta_client/types/continue_tool_rule.py +13 -23
  190. letta_client/types/continue_tool_rule_param.py +22 -0
  191. letta_client/types/conversation.py +42 -0
  192. letta_client/types/conversation_cancel_response.py +8 -0
  193. letta_client/types/conversation_create_params.py +25 -0
  194. letta_client/types/conversation_list_params.py +19 -0
  195. letta_client/types/conversation_list_response.py +10 -0
  196. letta_client/types/conversation_update_params.py +13 -0
  197. letta_client/types/conversations/__init__.py +7 -0
  198. letta_client/types/conversations/message_create_params.py +166 -0
  199. letta_client/types/conversations/message_list_params.py +43 -0
  200. letta_client/types/conversations/message_stream_params.py +28 -0
  201. letta_client/types/create_block_param.py +61 -0
  202. letta_client/types/create_sse_mcp_server_param.py +26 -0
  203. letta_client/types/create_stdio_mcp_server_param.py +25 -0
  204. letta_client/types/create_streamable_http_mcp_server_param.py +26 -0
  205. letta_client/types/deepseek_model_settings.py +36 -0
  206. letta_client/types/deepseek_model_settings_param.py +33 -0
  207. letta_client/types/embedding_config.py +47 -67
  208. letta_client/types/embedding_config_param.py +64 -0
  209. letta_client/types/embedding_model.py +81 -0
  210. letta_client/types/folder.py +28 -66
  211. letta_client/types/folder_create_params.py +33 -0
  212. letta_client/types/folder_list_params.py +37 -0
  213. letta_client/types/folder_update_params.py +27 -0
  214. letta_client/types/folders/__init__.py +12 -0
  215. letta_client/types/folders/agent_list_params.py +34 -0
  216. letta_client/types/folders/agent_list_response.py +8 -0
  217. letta_client/types/folders/file_list_params.py +37 -0
  218. letta_client/types/folders/file_list_response.py +70 -0
  219. letta_client/types/folders/file_retrieve_params.py +15 -0
  220. letta_client/types/folders/file_retrieve_response.py +70 -0
  221. letta_client/types/folders/file_upload_params.py +20 -0
  222. letta_client/types/folders/file_upload_response.py +70 -0
  223. letta_client/types/google_ai_model_settings.py +47 -0
  224. letta_client/types/google_ai_model_settings_param.py +44 -0
  225. letta_client/types/google_vertex_model_settings.py +47 -0
  226. letta_client/types/google_vertex_model_settings_param.py +44 -0
  227. letta_client/types/groq_model_settings.py +36 -0
  228. letta_client/types/groq_model_settings_param.py +33 -0
  229. letta_client/types/health_response.py +13 -0
  230. letta_client/types/init_tool_rule.py +24 -24
  231. letta_client/types/init_tool_rule_param.py +32 -0
  232. letta_client/types/json_object_response_format.py +9 -17
  233. letta_client/types/json_object_response_format_param.py +14 -0
  234. letta_client/types/json_schema_response_format.py +12 -21
  235. letta_client/types/json_schema_response_format_param.py +18 -0
  236. letta_client/types/letta_message_content_union_param.py +26 -0
  237. letta_client/types/llm_config.py +123 -80
  238. letta_client/types/llm_config_param.py +155 -0
  239. letta_client/types/max_count_per_step_tool_rule.py +16 -25
  240. letta_client/types/max_count_per_step_tool_rule_param.py +28 -0
  241. letta_client/types/mcp_server_create_params.py +23 -0
  242. letta_client/types/mcp_server_create_response.py +12 -0
  243. letta_client/types/mcp_server_list_response.py +14 -0
  244. letta_client/types/mcp_server_refresh_params.py +12 -0
  245. letta_client/types/mcp_server_retrieve_response.py +12 -0
  246. letta_client/types/mcp_server_update_params.py +23 -0
  247. letta_client/types/mcp_server_update_response.py +12 -0
  248. letta_client/types/mcp_servers/__init__.py +6 -0
  249. letta_client/types/mcp_servers/tool_list_response.py +10 -0
  250. letta_client/types/mcp_servers/tool_run_params.py +15 -0
  251. letta_client/types/message_create_param.py +38 -0
  252. letta_client/types/message_list_params.py +34 -0
  253. letta_client/types/message_list_response.py +10 -0
  254. letta_client/types/message_retrieve_response.py +10 -0
  255. letta_client/types/message_search_params.py +34 -0
  256. letta_client/types/message_search_response.py +124 -0
  257. letta_client/types/model.py +148 -0
  258. letta_client/types/model_list_params.py +19 -0
  259. letta_client/types/model_list_response.py +10 -0
  260. letta_client/types/models/__init__.py +5 -0
  261. letta_client/types/models/embedding_list_response.py +10 -0
  262. letta_client/types/npm_requirement.py +15 -0
  263. letta_client/types/npm_requirement_param.py +16 -0
  264. letta_client/types/openai_model_settings.py +51 -0
  265. letta_client/types/openai_model_settings_param.py +48 -0
  266. letta_client/types/parent_tool_rule.py +15 -27
  267. letta_client/types/parent_tool_rule_param.py +27 -0
  268. letta_client/types/passage.py +56 -101
  269. letta_client/types/passage_search_params.py +41 -0
  270. letta_client/types/passage_search_response.py +25 -0
  271. letta_client/types/pip_requirement.py +9 -21
  272. letta_client/types/pip_requirement_param.py +16 -0
  273. letta_client/types/provider_category.py +5 -3
  274. letta_client/types/provider_trace.py +43 -48
  275. letta_client/types/provider_type.py +25 -23
  276. letta_client/types/required_before_exit_tool_rule.py +13 -23
  277. letta_client/types/required_before_exit_tool_rule_param.py +22 -0
  278. letta_client/types/requires_approval_tool_rule.py +25 -0
  279. letta_client/types/requires_approval_tool_rule_param.py +25 -0
  280. letta_client/types/run_list_params.py +67 -0
  281. letta_client/types/runs/__init__.py +10 -0
  282. letta_client/types/runs/message_list_params.py +34 -0
  283. letta_client/types/runs/message_stream_params.py +28 -0
  284. letta_client/types/runs/step_list_params.py +28 -0
  285. letta_client/types/runs/trace_retrieve_params.py +12 -0
  286. letta_client/types/runs/trace_retrieve_response.py +8 -0
  287. letta_client/types/runs/usage_retrieve_response.py +31 -0
  288. letta_client/types/sse_mcp_server.py +32 -0
  289. letta_client/types/stdio_mcp_server.py +29 -0
  290. letta_client/types/step.py +71 -97
  291. letta_client/types/step_list_params.py +57 -0
  292. letta_client/types/steps/__init__.py +8 -0
  293. letta_client/types/steps/feedback_create_params.py +18 -0
  294. letta_client/types/steps/message_list_params.py +34 -0
  295. letta_client/types/steps/message_list_response.py +36 -0
  296. letta_client/types/steps/metric_retrieve_response.py +45 -0
  297. letta_client/types/stop_reason_type.py +17 -5
  298. letta_client/types/streamable_http_mcp_server.py +32 -0
  299. letta_client/types/tag_list_params.py +40 -0
  300. letta_client/types/tag_list_response.py +8 -0
  301. letta_client/types/template_create_params.py +46 -0
  302. letta_client/types/template_create_response.py +29 -0
  303. letta_client/types/template_delete_response.py +9 -0
  304. letta_client/types/template_update_params.py +25 -0
  305. letta_client/types/template_update_response.py +13 -0
  306. letta_client/types/templates/__init__.py +6 -0
  307. letta_client/types/templates/agent_create_params.py +50 -0
  308. letta_client/types/templates/agent_create_response.py +20 -0
  309. letta_client/types/terminal_tool_rule.py +13 -23
  310. letta_client/types/terminal_tool_rule_param.py +22 -0
  311. letta_client/types/text_response_format.py +9 -17
  312. letta_client/types/text_response_format_param.py +14 -0
  313. letta_client/types/together_model_settings.py +36 -0
  314. letta_client/types/together_model_settings_param.py +33 -0
  315. letta_client/types/tool.py +154 -81
  316. letta_client/types/tool_create_params.py +53 -0
  317. letta_client/types/tool_list_params.py +57 -0
  318. letta_client/types/tool_return_message.py +44 -31
  319. letta_client/types/tool_search_params.py +27 -0
  320. letta_client/types/tool_search_response.py +10 -0
  321. letta_client/types/tool_search_result.py +27 -0
  322. letta_client/types/tool_type.py +16 -17
  323. letta_client/types/tool_update_params.py +57 -0
  324. letta_client/types/tool_upsert_params.py +53 -0
  325. letta_client/types/update_sse_mcp_server_param.py +26 -0
  326. letta_client/types/update_stdio_mcp_server_param.py +25 -0
  327. letta_client/types/update_streamable_http_mcp_server_param.py +26 -0
  328. letta_client/types/vector_db_provider.py +7 -0
  329. letta_client/types/xai_model_settings.py +36 -0
  330. letta_client/types/xai_model_settings_param.py +33 -0
  331. letta_client-1.7.2.dist-info/METADATA +436 -0
  332. letta_client-1.7.2.dist-info/RECORD +335 -0
  333. {letta_client-0.1.232.dist-info → letta_client-1.7.2.dist-info}/WHEEL +1 -1
  334. letta_client-1.7.2.dist-info/licenses/LICENSE +201 -0
  335. letta_client/agents/__init__.py +0 -77
  336. letta_client/agents/blocks/__init__.py +0 -2
  337. letta_client/agents/blocks/client.py +0 -793
  338. letta_client/agents/client.py +0 -2371
  339. letta_client/agents/context/__init__.py +0 -2
  340. letta_client/agents/context/client.py +0 -149
  341. letta_client/agents/core_memory/__init__.py +0 -2
  342. letta_client/agents/core_memory/client.py +0 -147
  343. letta_client/agents/files/__init__.py +0 -2
  344. letta_client/agents/files/client.py +0 -430
  345. letta_client/agents/folders/__init__.py +0 -2
  346. letta_client/agents/folders/client.py +0 -412
  347. letta_client/agents/groups/__init__.py +0 -2
  348. letta_client/agents/groups/client.py +0 -169
  349. letta_client/agents/memory_variables/__init__.py +0 -5
  350. letta_client/agents/memory_variables/client.py +0 -152
  351. letta_client/agents/memory_variables/types/__init__.py +0 -5
  352. letta_client/agents/memory_variables/types/memory_variables_list_response.py +0 -19
  353. letta_client/agents/messages/__init__.py +0 -15
  354. letta_client/agents/messages/client.py +0 -1638
  355. letta_client/agents/messages/types/__init__.py +0 -13
  356. letta_client/agents/messages/types/letta_streaming_response.py +0 -24
  357. letta_client/agents/messages/types/messages_modify_request.py +0 -11
  358. letta_client/agents/messages/types/messages_modify_response.py +0 -20
  359. letta_client/agents/messages/types/messages_preview_raw_payload_request.py +0 -7
  360. letta_client/agents/passages/__init__.py +0 -2
  361. letta_client/agents/passages/client.py +0 -793
  362. letta_client/agents/sources/__init__.py +0 -2
  363. letta_client/agents/sources/client.py +0 -412
  364. letta_client/agents/templates/__init__.py +0 -5
  365. letta_client/agents/templates/client.py +0 -588
  366. letta_client/agents/templates/types/__init__.py +0 -7
  367. letta_client/agents/templates/types/templates_create_response.py +0 -22
  368. letta_client/agents/templates/types/templates_create_version_request_return_agent_state.py +0 -5
  369. letta_client/agents/templates/types/templates_migrate_response.py +0 -19
  370. letta_client/agents/tools/__init__.py +0 -2
  371. letta_client/agents/tools/client.py +0 -412
  372. letta_client/agents/types/__init__.py +0 -33
  373. letta_client/agents/types/agents_search_request_search_item.py +0 -16
  374. letta_client/agents/types/agents_search_request_search_item_field.py +0 -22
  375. letta_client/agents/types/agents_search_request_search_item_field_operator.py +0 -5
  376. letta_client/agents/types/agents_search_request_search_item_one.py +0 -22
  377. letta_client/agents/types/agents_search_request_search_item_one_operator.py +0 -5
  378. letta_client/agents/types/agents_search_request_search_item_three.py +0 -21
  379. letta_client/agents/types/agents_search_request_search_item_two.py +0 -21
  380. letta_client/agents/types/agents_search_request_search_item_zero.py +0 -20
  381. letta_client/agents/types/agents_search_request_sort_by.py +0 -5
  382. letta_client/agents/types/agents_search_response.py +0 -23
  383. letta_client/agents/types/create_agent_request_response_format.py +0 -8
  384. letta_client/agents/types/create_agent_request_tool_rules_item.py +0 -22
  385. letta_client/agents/types/update_agent_response_format.py +0 -8
  386. letta_client/agents/types/update_agent_tool_rules_item.py +0 -22
  387. letta_client/base_client.py +0 -232
  388. letta_client/batches/__init__.py +0 -2
  389. letta_client/batches/client.py +0 -587
  390. letta_client/blocks/__init__.py +0 -5
  391. letta_client/blocks/agents/__init__.py +0 -2
  392. letta_client/blocks/agents/client.py +0 -171
  393. letta_client/blocks/client.py +0 -1118
  394. letta_client/client.py +0 -661
  395. letta_client/client_side_access_tokens/__init__.py +0 -29
  396. letta_client/client_side_access_tokens/client.py +0 -524
  397. letta_client/client_side_access_tokens/types/__init__.py +0 -43
  398. letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item.py +0 -24
  399. letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item_access_item.py +0 -7
  400. letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response.py +0 -25
  401. letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy.py +0 -23
  402. letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item.py +0 -24
  403. letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py +0 -7
  404. letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response.py +0 -25
  405. letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item.py +0 -27
  406. letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy.py +0 -23
  407. letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item.py +0 -24
  408. letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item_access_item.py +0 -7
  409. letta_client/core/__init__.py +0 -51
  410. letta_client/core/api_error.py +0 -15
  411. letta_client/core/client_wrapper.py +0 -77
  412. letta_client/core/datetime_utils.py +0 -28
  413. letta_client/core/file.py +0 -67
  414. letta_client/core/http_client.py +0 -499
  415. letta_client/core/jsonable_encoder.py +0 -101
  416. letta_client/core/pydantic_utilities.py +0 -296
  417. letta_client/core/query_encoder.py +0 -58
  418. letta_client/core/remove_none_from_dict.py +0 -11
  419. letta_client/core/request_options.py +0 -35
  420. letta_client/core/serialization.py +0 -272
  421. letta_client/core/unchecked_base_model.py +0 -305
  422. letta_client/embedding_models/__init__.py +0 -2
  423. letta_client/embedding_models/client.py +0 -136
  424. letta_client/environment.py +0 -8
  425. letta_client/errors/__init__.py +0 -17
  426. letta_client/errors/bad_request_error.py +0 -9
  427. letta_client/errors/conflict_error.py +0 -9
  428. letta_client/errors/internal_server_error.py +0 -9
  429. letta_client/errors/not_found_error.py +0 -9
  430. letta_client/errors/payment_required_error.py +0 -9
  431. letta_client/errors/unprocessable_entity_error.py +0 -9
  432. letta_client/folders/__init__.py +0 -5
  433. letta_client/folders/client.py +0 -1307
  434. letta_client/folders/files/__init__.py +0 -2
  435. letta_client/folders/files/client.py +0 -474
  436. letta_client/folders/passages/__init__.py +0 -2
  437. letta_client/folders/passages/client.py +0 -189
  438. letta_client/groups/__init__.py +0 -14
  439. letta_client/groups/client.py +0 -964
  440. letta_client/groups/messages/__init__.py +0 -5
  441. letta_client/groups/messages/client.py +0 -1015
  442. letta_client/groups/messages/types/__init__.py +0 -7
  443. letta_client/groups/messages/types/letta_streaming_response.py +0 -20
  444. letta_client/groups/messages/types/messages_modify_request.py +0 -11
  445. letta_client/groups/messages/types/messages_modify_response.py +0 -20
  446. letta_client/groups/types/__init__.py +0 -6
  447. letta_client/groups/types/group_create_manager_config.py +0 -12
  448. letta_client/groups/types/group_update_manager_config.py +0 -16
  449. letta_client/health/__init__.py +0 -2
  450. letta_client/health/client.py +0 -110
  451. letta_client/identities/__init__.py +0 -5
  452. letta_client/identities/client.py +0 -1201
  453. letta_client/identities/properties/__init__.py +0 -2
  454. letta_client/identities/properties/client.py +0 -183
  455. letta_client/jobs/__init__.py +0 -2
  456. letta_client/jobs/client.py +0 -749
  457. letta_client/messages/__init__.py +0 -2
  458. letta_client/messages/client.py +0 -213
  459. letta_client/models/__init__.py +0 -2
  460. letta_client/models/client.py +0 -174
  461. letta_client/projects/__init__.py +0 -5
  462. letta_client/projects/client.py +0 -150
  463. letta_client/projects/types/__init__.py +0 -6
  464. letta_client/projects/types/projects_list_response.py +0 -23
  465. letta_client/projects/types/projects_list_response_projects_item.py +0 -21
  466. letta_client/providers/__init__.py +0 -2
  467. letta_client/providers/client.py +0 -789
  468. letta_client/runs/__init__.py +0 -5
  469. letta_client/runs/client.py +0 -551
  470. letta_client/runs/messages/__init__.py +0 -2
  471. letta_client/runs/messages/client.py +0 -236
  472. letta_client/runs/steps/__init__.py +0 -2
  473. letta_client/runs/steps/client.py +0 -219
  474. letta_client/runs/usage/__init__.py +0 -2
  475. letta_client/runs/usage/client.py +0 -147
  476. letta_client/sources/__init__.py +0 -5
  477. letta_client/sources/client.py +0 -1462
  478. letta_client/sources/files/__init__.py +0 -2
  479. letta_client/sources/files/client.py +0 -474
  480. letta_client/sources/passages/__init__.py +0 -2
  481. letta_client/sources/passages/client.py +0 -189
  482. letta_client/steps/__init__.py +0 -6
  483. letta_client/steps/client.py +0 -408
  484. letta_client/steps/feedback/__init__.py +0 -2
  485. letta_client/steps/feedback/client.py +0 -168
  486. letta_client/steps/types/__init__.py +0 -5
  487. letta_client/steps/types/steps_list_request_feedback.py +0 -5
  488. letta_client/tags/__init__.py +0 -2
  489. letta_client/tags/client.py +0 -171
  490. letta_client/telemetry/__init__.py +0 -2
  491. letta_client/telemetry/client.py +0 -145
  492. letta_client/templates/__init__.py +0 -18
  493. letta_client/templates/agents/__init__.py +0 -13
  494. letta_client/templates/agents/client.py +0 -256
  495. letta_client/templates/agents/types/__init__.py +0 -11
  496. letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item.py +0 -26
  497. letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item_role.py +0 -7
  498. letta_client/templates/agents/types/agents_create_response.py +0 -20
  499. letta_client/templates/client.py +0 -162
  500. letta_client/templates/types/__init__.py +0 -6
  501. letta_client/templates/types/templates_list_response.py +0 -23
  502. letta_client/templates/types/templates_list_response_templates_item.py +0 -20
  503. letta_client/tools/__init__.py +0 -27
  504. letta_client/tools/client.py +0 -3063
  505. letta_client/tools/types/__init__.py +0 -25
  506. letta_client/tools/types/add_mcp_server_request.py +0 -8
  507. letta_client/tools/types/add_mcp_server_response_item.py +0 -8
  508. letta_client/tools/types/connect_mcp_server_request.py +0 -8
  509. letta_client/tools/types/connect_mcp_server_response_event.py +0 -8
  510. letta_client/tools/types/delete_mcp_server_response_item.py +0 -8
  511. letta_client/tools/types/list_mcp_servers_response_value.py +0 -8
  512. letta_client/tools/types/streaming_response.py +0 -23
  513. letta_client/tools/types/test_mcp_server_request.py +0 -8
  514. letta_client/tools/types/update_mcp_server_request.py +0 -8
  515. letta_client/tools/types/update_mcp_server_response.py +0 -8
  516. letta_client/types/action_model.py +0 -38
  517. letta_client/types/action_parameters_model.py +0 -27
  518. letta_client/types/action_response_model.py +0 -27
  519. letta_client/types/agent_schema.py +0 -49
  520. letta_client/types/agent_schema_tool_rules_item.py +0 -11
  521. letta_client/types/agent_state_response_format.py +0 -8
  522. letta_client/types/agent_state_tool_rules_item.py +0 -22
  523. letta_client/types/app_auth_scheme.py +0 -34
  524. letta_client/types/app_auth_scheme_auth_mode.py +0 -19
  525. letta_client/types/app_model.py +0 -44
  526. letta_client/types/assistant_message.py +0 -42
  527. letta_client/types/assistant_message_content.py +0 -6
  528. letta_client/types/audio.py +0 -19
  529. letta_client/types/auth_request.py +0 -22
  530. letta_client/types/auth_response.py +0 -29
  531. letta_client/types/auth_scheme_field.py +0 -30
  532. letta_client/types/bad_request_error_body.py +0 -19
  533. letta_client/types/base_64_image.py +0 -33
  534. letta_client/types/base_tool_rule_schema.py +0 -20
  535. letta_client/types/batch_job.py +0 -81
  536. letta_client/types/block.py +0 -97
  537. letta_client/types/block_update.py +0 -71
  538. letta_client/types/chat_completion_assistant_message_param.py +0 -29
  539. letta_client/types/chat_completion_assistant_message_param_content.py +0 -8
  540. letta_client/types/chat_completion_assistant_message_param_content_item.py +0 -9
  541. letta_client/types/chat_completion_audio_param.py +0 -22
  542. letta_client/types/chat_completion_audio_param_format.py +0 -5
  543. letta_client/types/chat_completion_audio_param_voice.py +0 -15
  544. letta_client/types/chat_completion_content_part_image_param.py +0 -21
  545. letta_client/types/chat_completion_content_part_input_audio_param.py +0 -21
  546. letta_client/types/chat_completion_content_part_refusal_param.py +0 -20
  547. letta_client/types/chat_completion_content_part_text_param.py +0 -20
  548. letta_client/types/chat_completion_developer_message_param.py +0 -22
  549. letta_client/types/chat_completion_developer_message_param_content.py +0 -6
  550. letta_client/types/chat_completion_function_call_option_param.py +0 -19
  551. letta_client/types/chat_completion_function_message_param.py +0 -21
  552. letta_client/types/chat_completion_message_tool_call.py +0 -22
  553. letta_client/types/chat_completion_message_tool_call_param.py +0 -24
  554. letta_client/types/chat_completion_named_tool_choice_param.py +0 -23
  555. letta_client/types/chat_completion_prediction_content_param.py +0 -21
  556. letta_client/types/chat_completion_prediction_content_param_content.py +0 -6
  557. letta_client/types/chat_completion_stream_options_param.py +0 -19
  558. letta_client/types/chat_completion_system_message_param.py +0 -22
  559. letta_client/types/chat_completion_system_message_param_content.py +0 -6
  560. letta_client/types/chat_completion_tool_message_param.py +0 -22
  561. letta_client/types/chat_completion_tool_message_param_content.py +0 -6
  562. letta_client/types/chat_completion_tool_param.py +0 -21
  563. letta_client/types/chat_completion_user_message_param.py +0 -22
  564. letta_client/types/chat_completion_user_message_param_content.py +0 -6
  565. letta_client/types/chat_completion_user_message_param_content_item.py +0 -14
  566. letta_client/types/child_tool_rule_schema.py +0 -21
  567. letta_client/types/code_input.py +0 -22
  568. letta_client/types/completion_create_params_non_streaming.py +0 -64
  569. letta_client/types/completion_create_params_non_streaming_function_call.py +0 -8
  570. letta_client/types/completion_create_params_non_streaming_messages_item.py +0 -18
  571. letta_client/types/completion_create_params_non_streaming_modalities_item.py +0 -5
  572. letta_client/types/completion_create_params_non_streaming_model.py +0 -62
  573. letta_client/types/completion_create_params_non_streaming_reasoning_effort.py +0 -5
  574. letta_client/types/completion_create_params_non_streaming_response_format.py +0 -10
  575. letta_client/types/completion_create_params_non_streaming_service_tier.py +0 -7
  576. letta_client/types/completion_create_params_non_streaming_stop.py +0 -5
  577. letta_client/types/completion_create_params_non_streaming_tool_choice.py +0 -8
  578. letta_client/types/completion_create_params_streaming.py +0 -64
  579. letta_client/types/completion_create_params_streaming_function_call.py +0 -8
  580. letta_client/types/completion_create_params_streaming_messages_item.py +0 -18
  581. letta_client/types/completion_create_params_streaming_modalities_item.py +0 -5
  582. letta_client/types/completion_create_params_streaming_model.py +0 -62
  583. letta_client/types/completion_create_params_streaming_reasoning_effort.py +0 -5
  584. letta_client/types/completion_create_params_streaming_response_format.py +0 -10
  585. letta_client/types/completion_create_params_streaming_service_tier.py +0 -7
  586. letta_client/types/completion_create_params_streaming_stop.py +0 -5
  587. letta_client/types/completion_create_params_streaming_tool_choice.py +0 -8
  588. letta_client/types/components_schemas_text_content.py +0 -5
  589. letta_client/types/conditional_tool_rule_schema.py +0 -23
  590. letta_client/types/conflict_error_body.py +0 -21
  591. letta_client/types/context_window_overview.py +0 -108
  592. letta_client/types/core_memory_block_schema.py +0 -31
  593. letta_client/types/create_block.py +0 -67
  594. letta_client/types/duplicate_file_handling.py +0 -5
  595. letta_client/types/dynamic_manager.py +0 -33
  596. letta_client/types/dynamic_manager_update.py +0 -33
  597. letta_client/types/e_2_b_sandbox_config.py +0 -32
  598. letta_client/types/embedding_config_embedding_endpoint_type.py +0 -29
  599. letta_client/types/feedback_type.py +0 -5
  600. letta_client/types/file.py +0 -21
  601. letta_client/types/file_block.py +0 -103
  602. letta_client/types/file_file.py +0 -21
  603. letta_client/types/file_metadata.py +0 -103
  604. letta_client/types/file_processing_status.py +0 -5
  605. letta_client/types/file_stats.py +0 -36
  606. letta_client/types/function_call.py +0 -20
  607. letta_client/types/function_definition_input.py +0 -22
  608. letta_client/types/function_definition_output.py +0 -22
  609. letta_client/types/function_output.py +0 -20
  610. letta_client/types/function_tool.py +0 -21
  611. letta_client/types/generate_tool_input.py +0 -42
  612. letta_client/types/generate_tool_output.py +0 -33
  613. letta_client/types/group.py +0 -88
  614. letta_client/types/health.py +0 -24
  615. letta_client/types/hidden_reasoning_message.py +0 -43
  616. letta_client/types/hidden_reasoning_message_state.py +0 -5
  617. letta_client/types/http_validation_error.py +0 -20
  618. letta_client/types/identity.py +0 -59
  619. letta_client/types/identity_property.py +0 -38
  620. letta_client/types/identity_property_type.py +0 -5
  621. letta_client/types/identity_property_value.py +0 -5
  622. letta_client/types/identity_type.py +0 -5
  623. letta_client/types/image_content.py +0 -24
  624. letta_client/types/image_content_source.py +0 -8
  625. letta_client/types/image_url.py +0 -21
  626. letta_client/types/image_url_detail.py +0 -5
  627. letta_client/types/input_audio.py +0 -21
  628. letta_client/types/input_audio_format.py +0 -5
  629. letta_client/types/internal_server_error_body.py +0 -19
  630. letta_client/types/job.py +0 -96
  631. letta_client/types/job_status.py +0 -7
  632. letta_client/types/job_type.py +0 -5
  633. letta_client/types/json_schema.py +0 -26
  634. letta_client/types/letta_batch_messages.py +0 -20
  635. letta_client/types/letta_batch_request.py +0 -59
  636. letta_client/types/letta_image.py +0 -38
  637. letta_client/types/letta_message_content_union.py +0 -13
  638. letta_client/types/letta_message_union.py +0 -20
  639. letta_client/types/letta_ping.py +0 -26
  640. letta_client/types/letta_request.py +0 -54
  641. letta_client/types/letta_request_config.py +0 -38
  642. letta_client/types/letta_response.py +0 -40
  643. letta_client/types/letta_stop_reason.py +0 -32
  644. letta_client/types/letta_streaming_request.py +0 -59
  645. letta_client/types/letta_usage_statistics.py +0 -59
  646. letta_client/types/letta_user_message_content_union.py +0 -7
  647. letta_client/types/llm_config_compatibility_type.py +0 -5
  648. letta_client/types/llm_config_model_endpoint_type.py +0 -31
  649. letta_client/types/llm_config_reasoning_effort.py +0 -5
  650. letta_client/types/local_sandbox_config.py +0 -38
  651. letta_client/types/manager_type.py +0 -7
  652. letta_client/types/max_count_per_step_tool_rule_schema.py +0 -21
  653. letta_client/types/mcp_server_type.py +0 -5
  654. letta_client/types/mcp_tool.py +0 -38
  655. letta_client/types/memory.py +0 -38
  656. letta_client/types/message.py +0 -139
  657. letta_client/types/message_content_item.py +0 -20
  658. letta_client/types/message_create.py +0 -58
  659. letta_client/types/message_create_content.py +0 -6
  660. letta_client/types/message_create_role.py +0 -5
  661. letta_client/types/message_role.py +0 -5
  662. letta_client/types/message_schema.py +0 -29
  663. letta_client/types/message_type.py +0 -16
  664. letta_client/types/not_found_error_body.py +0 -19
  665. letta_client/types/not_found_error_body_message.py +0 -11
  666. letta_client/types/omitted_reasoning_content.py +0 -19
  667. letta_client/types/openai_types_chat_chat_completion_message_tool_call_param_function.py +0 -20
  668. letta_client/types/openai_types_chat_chat_completion_named_tool_choice_param_function.py +0 -19
  669. letta_client/types/openai_types_chat_completion_create_params_function.py +0 -21
  670. letta_client/types/organization.py +0 -38
  671. letta_client/types/organization_create.py +0 -27
  672. letta_client/types/organization_sources_stats.py +0 -42
  673. letta_client/types/organization_update.py +0 -27
  674. letta_client/types/parameter_properties.py +0 -20
  675. letta_client/types/parameters_schema.py +0 -22
  676. letta_client/types/payment_required_error_body.py +0 -20
  677. letta_client/types/provider.py +0 -65
  678. letta_client/types/provider_check.py +0 -38
  679. letta_client/types/reasoning_content.py +0 -33
  680. letta_client/types/reasoning_message.py +0 -44
  681. letta_client/types/reasoning_message_source.py +0 -5
  682. letta_client/types/redacted_reasoning_content.py +0 -23
  683. letta_client/types/response_format_json_object.py +0 -19
  684. letta_client/types/response_format_json_schema.py +0 -21
  685. letta_client/types/response_format_text.py +0 -19
  686. letta_client/types/round_robin_manager.py +0 -23
  687. letta_client/types/round_robin_manager_update.py +0 -23
  688. letta_client/types/run.py +0 -99
  689. letta_client/types/sandbox_config.py +0 -54
  690. letta_client/types/sandbox_config_create.py +0 -23
  691. letta_client/types/sandbox_config_create_config.py +0 -7
  692. letta_client/types/sandbox_config_update.py +0 -27
  693. letta_client/types/sandbox_config_update_config.py +0 -7
  694. letta_client/types/sandbox_environment_variable.py +0 -63
  695. letta_client/types/sandbox_environment_variable_create.py +0 -32
  696. letta_client/types/sandbox_environment_variable_update.py +0 -32
  697. letta_client/types/sandbox_type.py +0 -5
  698. letta_client/types/sleeptime_manager.py +0 -28
  699. letta_client/types/sleeptime_manager_update.py +0 -28
  700. letta_client/types/source.py +0 -81
  701. letta_client/types/source_create.py +0 -57
  702. letta_client/types/source_stats.py +0 -47
  703. letta_client/types/source_update.py +0 -47
  704. letta_client/types/sse_server_config.py +0 -55
  705. letta_client/types/stdio_server_config.py +0 -39
  706. letta_client/types/step_feedback.py +0 -5
  707. letta_client/types/streamable_http_server_config.py +0 -55
  708. letta_client/types/supervisor_manager.py +0 -23
  709. letta_client/types/supervisor_manager_update.py +0 -23
  710. letta_client/types/system_message.py +0 -41
  711. letta_client/types/tag_schema.py +0 -19
  712. letta_client/types/text_content.py +0 -23
  713. letta_client/types/tool_annotations.py +0 -36
  714. letta_client/types/tool_call.py +0 -21
  715. letta_client/types/tool_call_content.py +0 -33
  716. letta_client/types/tool_call_delta.py +0 -21
  717. letta_client/types/tool_call_message.py +0 -39
  718. letta_client/types/tool_call_message_tool_call.py +0 -7
  719. letta_client/types/tool_create.py +0 -58
  720. letta_client/types/tool_env_var_schema.py +0 -23
  721. letta_client/types/tool_json_schema.py +0 -24
  722. letta_client/types/tool_return.py +0 -33
  723. letta_client/types/tool_return_content.py +0 -33
  724. letta_client/types/tool_return_message_status.py +0 -5
  725. letta_client/types/tool_return_status.py +0 -5
  726. letta_client/types/tool_schema.py +0 -35
  727. letta_client/types/update_assistant_message.py +0 -24
  728. letta_client/types/update_assistant_message_content.py +0 -6
  729. letta_client/types/update_reasoning_message.py +0 -20
  730. letta_client/types/update_ssemcp_server.py +0 -41
  731. letta_client/types/update_stdio_mcp_server.py +0 -32
  732. letta_client/types/update_streamable_httpmcp_server.py +0 -46
  733. letta_client/types/update_system_message.py +0 -23
  734. letta_client/types/update_user_message.py +0 -24
  735. letta_client/types/update_user_message_content.py +0 -6
  736. letta_client/types/url_image.py +0 -23
  737. letta_client/types/usage_statistics.py +0 -25
  738. letta_client/types/usage_statistics_completion_token_details.py +0 -19
  739. letta_client/types/usage_statistics_prompt_token_details.py +0 -19
  740. letta_client/types/user.py +0 -52
  741. letta_client/types/user_create.py +0 -22
  742. letta_client/types/user_message.py +0 -42
  743. letta_client/types/user_message_content.py +0 -6
  744. letta_client/types/user_update.py +0 -27
  745. letta_client/types/validation_error.py +0 -22
  746. letta_client/types/validation_error_loc_item.py +0 -5
  747. letta_client/types/voice_sleeptime_manager.py +0 -33
  748. letta_client/types/voice_sleeptime_manager_update.py +0 -33
  749. letta_client/types/web_search_options.py +0 -22
  750. letta_client/types/web_search_options_search_context_size.py +0 -5
  751. letta_client/types/web_search_options_user_location.py +0 -21
  752. letta_client/types/web_search_options_user_location_approximate.py +0 -22
  753. letta_client/version.py +0 -3
  754. letta_client/voice/__init__.py +0 -2
  755. letta_client/voice/client.py +0 -177
  756. letta_client-0.1.232.dist-info/METADATA +0 -190
  757. letta_client-0.1.232.dist-info/RECORD +0 -454
@@ -0,0 +1,335 @@
1
+ letta_client/__init__.py,sha256=qGnQpgLF2IeCkTBNc7P5VwhcqjKS_Gs90jsb2et5a-w,2715
2
+ letta_client/_base_client.py,sha256=wmZm93SF5bTiYHulhK3z-3oABtrNB9uIyENVxPfjTGU,73461
3
+ letta_client/_client.py,sha256=9YGc4bkQtOQ-oJQOpWLb8maLvIQJlYJ4STDFc2PA24o,41767
4
+ letta_client/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ letta_client/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ letta_client/_exceptions.py,sha256=30Z6OdknKex-stJOwtC_5naV8ozjHcX7-IIAqvKB0xY,3218
7
+ letta_client/_files.py,sha256=9e0XpXnDrkvAPo3MR-Ur00wDc33TNZTuSzRyHEI3jWs,3613
8
+ letta_client/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
+ letta_client/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ letta_client/_resource.py,sha256=usdu71d9SVBhsKu3-JpcwE4ZYyIZJTEIFhNNUR2i-qI,1094
11
+ letta_client/_response.py,sha256=BKfNWi9r9l3FTwBirPt64_mnVss9gK8OYZkHb0MLL1A,28840
12
+ letta_client/_streaming.py,sha256=COplp0gN24Z93YF8b21UKo8D5_sp5fhNKu06F2YeLNk,11475
13
+ letta_client/_types.py,sha256=YFypndniR5xPd3rEG8THF8UgwdVK3LAMFuujjUdLIT8,7600
14
+ letta_client/_version.py,sha256=LU7SUsm7xesv1dVhayv0Z7g_a27JWV1q76VdWdeOPIA,164
15
+ letta_client/pagination.py,sha256=UGlH6YPy6FPl7N1IEk33HkVB-2l0YvR74SFO_kyyogo,7886
16
+ letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ letta_client/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
18
+ letta_client/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
19
+ letta_client/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
20
+ letta_client/_utils/_logs.py,sha256=bGHXUjNkEux7Tn6ywtjFJQmdMSxNRXVBg8Dujfmn4xE,785
21
+ letta_client/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
22
+ letta_client/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
23
+ letta_client/_utils/_resources_proxy.py,sha256=T-4dOVrN1Mi-harwbbOlFn94IpyvsVmIqy47Cd-bmhk,619
24
+ letta_client/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
25
+ letta_client/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
26
+ letta_client/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
27
+ letta_client/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
28
+ letta_client/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
29
+ letta_client/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
+ letta_client/resources/__init__.py,sha256=-XIxDJ_AYVRVwZzM6Zhv9RIcEbWowVJlYywJk-7t2Rk,7127
31
+ letta_client/resources/access_tokens.py,sha256=PAtuqEO_yUM5BMvnwF_M1JCgMlKNA-kabtsVTHogLc4,15051
32
+ letta_client/resources/messages.py,sha256=EKjS-RxywBgBGPE9Jj7RvlGOt0i4XICz2_GeGOJGrDM,16922
33
+ letta_client/resources/passages.py,sha256=GaIqUg-L8S5XFYqyMKoy6cpLFR2jd3mZNOTXz1rGV68,9799
34
+ letta_client/resources/tags.py,sha256=RHXUU68zsJamLmVV-te1jQZI6Scw2PN-N3t8RZAGz6Y,8496
35
+ letta_client/resources/tools.py,sha256=rMq0_mTFkiOhdK47VSUXpkI91iW3Nm8mI-nsUiM5TkE,66853
36
+ letta_client/resources/agents/__init__.py,sha256=dzZCSqGRDHTwtnbBkgqjsJachFpkUze68Ic2CiPxSM0,4269
37
+ letta_client/resources/agents/agents.py,sha256=o0vJKSrGKcWR5luFOh1HdDEac8175M8aUuV3LpZE0Cs,91352
38
+ letta_client/resources/agents/archives.py,sha256=VPTKaQcY7KVx4swjArFNA-upU9AiwZbENKh7JWFCB6Q,9740
39
+ letta_client/resources/agents/blocks.py,sha256=bdUpLNjJju0BvjCxlyUSLAvhq1GwlnphnNj17U-sXZA,28256
40
+ letta_client/resources/agents/files.py,sha256=zUFsoI7d0OlFKJ3QhdJ2HwkGUfVnQ8U3DuzNvOgQ2R4,20905
41
+ letta_client/resources/agents/folders.py,sha256=W0DbmhzA-LTBdZ7e6aQ3xPH-WeFfKl6cTSmwW2GAfvk,15978
42
+ letta_client/resources/agents/identities.py,sha256=8xIYqzU6V7WLjFZB0rCWqShHt-qkUp10-d7dUXQVjB8,9852
43
+ letta_client/resources/agents/messages.py,sha256=YMKFYOlL5XFICO-pmQIEyVyxVKVKiNvuwW0HCBktZKw,81975
44
+ letta_client/resources/agents/passages.py,sha256=lBt68wfMcY_PwayKvvP_qBzl8kYgOEbodUcqaC8sDcM,25272
45
+ letta_client/resources/agents/tools.py,sha256=lvmj6wf2nlu-SgfHiZRQuGnh0K13X7fW7-FzmlkpDHM,25166
46
+ letta_client/resources/archives/__init__.py,sha256=9Bjx1h88tYQKjWamW_M2w8D5nZRkXzzF9qc8EXxtUXU,1054
47
+ letta_client/resources/archives/archives.py,sha256=ryiIk-ivZksRtCZQ5CfZJBwMYhg178QDic2r5hzO4-A,24277
48
+ letta_client/resources/archives/passages.py,sha256=nP4Q4HS8fheOxmh1eIw6vhNe8khSaiXNGiFT5_hI5RE,11499
49
+ letta_client/resources/blocks/__init__.py,sha256=bdVcjGQZ2G8IPxXUtEIHRfJA0gopCS-rQGrxxjZY8L8,1002
50
+ letta_client/resources/blocks/agents.py,sha256=OW3NQFuwGKVU5AtYeCbpAt4j_ffam03IIjb4M8ky2UA,10901
51
+ letta_client/resources/blocks/blocks.py,sha256=sHu4VZh5gdNpJfoZPfvs8L0tlOLZIxTkwUPmXfrWpNk,37747
52
+ letta_client/resources/conversations/__init__.py,sha256=65zVyuKLNI3ZElUcjb-KSiq0038Sk_tvTAJ7iMoVX_w,1119
53
+ letta_client/resources/conversations/conversations.py,sha256=Q4x1mg032GD_M_ffDx9wgpO9j5hanvN5lNex0YMM2ww,23388
54
+ letta_client/resources/conversations/messages.py,sha256=x9jUwUNBAqhMzqWk-ysdnWTliTXtaZMVtQ06LK7EzVM,27977
55
+ letta_client/resources/folders/__init__.py,sha256=ANqxbwoospe99HnVPeeDt2lDyxG5m60_9QPTbehdRjs,1452
56
+ letta_client/resources/folders/agents.py,sha256=0qd5nMcNqVQMNNGMfQLAdKm01BpXVdoXSRcTPQRjZL8,8524
57
+ letta_client/resources/folders/files.py,sha256=UIkpEuGRY9kJ99_LDCNE33500If_pux08X1K0JdgDdE,22520
58
+ letta_client/resources/folders/folders.py,sha256=nSVQ4X53tV-ioeegK2mBsb7i45Imtz8bFRwJ4p2sH4w,27057
59
+ letta_client/resources/mcp_servers/__init__.py,sha256=_wl2wJzdJXWettJ9W_i8Zjb3QdtK-gOMmRWUDXuPJVI,1042
60
+ letta_client/resources/mcp_servers/mcp_servers.py,sha256=DZwlFt-GSQLKpOpgxXLEPrLWlPcf6H1bYT8sqIL1tzI,25780
61
+ letta_client/resources/mcp_servers/tools.py,sha256=lZ64ZsPwICpbbANHIR6Mrw8YeqWM55zsFSwpG1LMt-k,13299
62
+ letta_client/resources/models/__init__.py,sha256=Tvswac6gTvPG6C45MOrEYYjWY6dEdWagxey_P6fgYkU,1054
63
+ letta_client/resources/models/embeddings.py,sha256=2FlLoovnSuExxyi4qlfJ4lYr-W4MsKLHHAfxYHdvJuM,5682
64
+ letta_client/resources/models/models.py,sha256=5sKwp8C1aSHUD1MHQEKpBudLMp6bMQ4QcbdelPS3e4I,8619
65
+ letta_client/resources/runs/__init__.py,sha256=zhuqehGyLZodOdjCND1ziQ00NQLJ9kWqRdp2tKv-P6w,2313
66
+ letta_client/resources/runs/messages.py,sha256=H4g-vRLHLXcEkdIRNf38cXDtue1_aiYDUEHzh7ncyQc,13929
67
+ letta_client/resources/runs/runs.py,sha256=cPsZpLxvJXFgHECcj8akMs01cKGOcU9Ego37p1sMoHc,18057
68
+ letta_client/resources/runs/steps.py,sha256=hR33PtnoHUFrxLSj8-Rb3kAMRebyzlYjaSxqn8vyEXc,7981
69
+ letta_client/resources/runs/trace.py,sha256=b9bzq5rpoCDG1EbSVY-ScP6fbN1qx-UNkLdKOV1o_r4,7105
70
+ letta_client/resources/runs/usage.py,sha256=rsarShRjn8sylRDfsO2BcM25dk2xGr0Njal9CKbeDgs,5824
71
+ letta_client/resources/steps/__init__.py,sha256=OV3vMIlQtZsrqFyxxdFcdAy4CZHlf2p1ce7F7cncolk,2391
72
+ letta_client/resources/steps/feedback.py,sha256=c6Ph3zVOVQduy4pjuHQWmTOtEITsESmBg6dJ4dP2kt4,7131
73
+ letta_client/resources/steps/messages.py,sha256=rd5ATYa8q40jrGEP908jXZf8jdpVMD_4ACN_JpJj4yo,8935
74
+ letta_client/resources/steps/metrics.py,sha256=_oFTnx8VS1-H4TkBaqWcxuxjjO_SuAdshoUC-PRvJy8,6049
75
+ letta_client/resources/steps/steps.py,sha256=6rNNRNgp0bQYie-FUfQ9hs82tCL_tcj7aHW7p2K9yMk,18204
76
+ letta_client/resources/steps/trace.py,sha256=Q11XSAoMKkEnePvm4eIUZ-UZeMu6QxmQedgH4TI8swQ,5951
77
+ letta_client/resources/templates/__init__.py,sha256=4wWq5EBTkiBFzEIzLMP5rkzQ94peMZkl1roLp8iPK_g,1041
78
+ letta_client/resources/templates/agents.py,sha256=sJaa9zM9R9LTbBeqtExdBTGt9gvpsARPgPCT_MH2lVs,8992
79
+ letta_client/resources/templates/templates.py,sha256=KQVf-JAxJzdyn8-JO5wfip2d2rGDc6pXb5qisRfbwjg,21131
80
+ letta_client/types/__init__.py,sha256=j-JeJPaMIy5sh2Vj8aZnFDmM_-Yz-upRj4KXV--tAPI,11412
81
+ letta_client/types/access_token_create_params.py,sha256=tZKWIFyjrsENjtsHsyQKgEPFACabqqu1HKcRzsrSDjc,851
82
+ letta_client/types/access_token_create_response.py,sha256=b6sM0S9llpGHkOXFPLYIoJNmuluzOs1MM-y3MSPJMv8,683
83
+ letta_client/types/access_token_delete_params.py,sha256=S6wkhM2so6dOwCimL9TJtlE9cbY0dr4YUcgDjN1I6g0,276
84
+ letta_client/types/access_token_list_params.py,sha256=-L729lgYOA7HY322YkBF_JqxBVqpCn_8AhNENpXi0Sw,629
85
+ letta_client/types/access_token_list_response.py,sha256=A-ypfoLcwNpKAcQnca1-HbmLZSGIOE2sf-YvRG0eonk,826
86
+ letta_client/types/agent_create_params.py,sha256=yOwCMIf8FargAermyl5w6U768CyFcgtV_FWuuXyEJrA,15215
87
+ letta_client/types/agent_environment_variable.py,sha256=CDCeL5bHPsx9A_3SE3dPB5x8ceT2JB8FlQRwd1lVlbY,1144
88
+ letta_client/types/agent_export_file_params.py,sha256=infrIuxlgUlvGwlxIULDwPtQguDKCV0J6j1-rJEKxi4,735
89
+ letta_client/types/agent_export_file_response.py,sha256=c5eYslclKaFVoEBzrROlKbvKCTvJO7KJ5PBAgFLqJyk,208
90
+ letta_client/types/agent_import_file_params.py,sha256=FomdXulHV18ZOZg1ekwtf6cHfSnfn32Ao0yIBMUDVvo,1744
91
+ letta_client/types/agent_import_file_response.py,sha256=XMRrkFByrriQ4XkU-xqP8jInTd_wSKO2eNlPAxQN0uQ,343
92
+ letta_client/types/agent_list_params.py,sha256=7TGHUHXGHF9HirM_yJIXrSE3_CtrWqXIEniGeix_W8g,2732
93
+ letta_client/types/agent_retrieve_params.py,sha256=UuLS7mp7N3E1jyjbsGliNxeBqLDKvJ7nQv5BJTf5g3I,1138
94
+ letta_client/types/agent_state.py,sha256=ZwqALDM-YsvWw5oK89ugUVE5yvToiC8s0ZTccwt-8FE,22926
95
+ letta_client/types/agent_type.py,sha256=s3xTJnio45wTIYkWNJotfD2X57Ad-26kQvIEAPtfBW0,405
96
+ letta_client/types/agent_update_params.py,sha256=dVjRuulIVc3ZPtcf8D2p0e9Pq66fLH6XYPPIN4B9O24,13473
97
+ letta_client/types/anthropic_model_settings.py,sha256=8ZwBQNsNJSn2v9LC0WhGM2Dmmx21SwEnj3SOqz1BkGk,2095
98
+ letta_client/types/anthropic_model_settings_param.py,sha256=J6mV_rLPjtGxNmBKsscsxhAW5g375LC-8ToVn-TtdZ4,1928
99
+ letta_client/types/archive.py,sha256=PqvIXmzGQdgzbS24nCJsvioJ_ZvnCWJB5uQhVlN4bog,1311
100
+ letta_client/types/archive_create_params.py,sha256=eH8LVG671ZOlkaCvcKPAxBRrSJ5cDMUDE-95p7Fflcs,618
101
+ letta_client/types/archive_list_params.py,sha256=UapyvrrCC6WtuCEgDvWGNzYAlF8a38YD2qYP0ANMeNY,1032
102
+ letta_client/types/archive_update_params.py,sha256=d9TShnWLYQzm-NyhHVgcz2r8uXC4eRJXbfqFzIEwg9M,335
103
+ letta_client/types/azure_model_settings.py,sha256=jRt_1Mvcpoaz1dUeqLm0fSDee0-svgTRWXQNWraYfm4,1237
104
+ letta_client/types/azure_model_settings_param.py,sha256=E2t0aOWJKlNUOqUkOGEUUSXLHYvTkr1ChxKuqe6z8Zo,1139
105
+ letta_client/types/bedrock_model_settings.py,sha256=nE-uwBbJKTjLGtDo5U_XDUDQAVocCaxmBB2P6uEAxJI,1222
106
+ letta_client/types/bedrock_model_settings_param.py,sha256=PC3j8ocQIyrIf9zrjrNbACNFPKWYQ4swBKeNR5C7Jc4,1124
107
+ letta_client/types/block_create_params.py,sha256=tBCIV3J1x642HRak-haWybB3R-QD8APxMjb4X2Um1Ak,1461
108
+ letta_client/types/block_list_params.py,sha256=8x1y7jy-4tzhDdaPBr3Zj6TJ0IiDgoc261iCg-L0o6Q,2887
109
+ letta_client/types/block_response.py,sha256=c8Y_bSgI-_hfarWQaFAHMjAoIMZ6zaeDMWkI3bk2KJA,1955
110
+ letta_client/types/block_update_params.py,sha256=SaDI_OOPDDabxBt5znoGlMxSA4XVEMOgPe4vZp_QvKE,1587
111
+ letta_client/types/child_tool_rule.py,sha256=pUM0YuvO_vah0virH_9pBmwRmnPs35OovnNW4qxw2Wk,1478
112
+ letta_client/types/child_tool_rule_param.py,sha256=z6WJLoCgIgoGcyV125FFj-GOPP8K3oj7pwTvqi9lMJE,1585
113
+ letta_client/types/conditional_tool_rule.py,sha256=WLwlQD6ohUsunEXDpbSdlskEztosSUXQKDkPw_2zF64,948
114
+ letta_client/types/conditional_tool_rule_param.py,sha256=dT4SiyWi40dOg8WiPGrnMECJEBNXn76Em_cNoVB-OWU,967
115
+ letta_client/types/continue_tool_rule.py,sha256=6zbNPOMTdZxLdORoMajEWTTxHO9sSBIdahu3PTML8mw,627
116
+ letta_client/types/continue_tool_rule_param.py,sha256=AqKnWP_WrtINiWylo3TspUMUCLeikYEsyCmjkOW3rVQ,660
117
+ letta_client/types/conversation.py,sha256=b2vAr5_9jZ88WBhRlHReKtVnFZnhFQsnhY65Xk0gxDY,1215
118
+ letta_client/types/conversation_cancel_response.py,sha256=UwAhN9BwYmluEeegV5e0PvkpTDjtdILqefuMkFFQsxE,252
119
+ letta_client/types/conversation_create_params.py,sha256=hVvCJXRPCiPkar6WK2nHSObcRAl_dd0IJgJPQUf9U5M,759
120
+ letta_client/types/conversation_list_params.py,sha256=zLYkoPUqvl0iULEhfzTnxAKglota7pfAyki5YHEFCek,516
121
+ letta_client/types/conversation_list_response.py,sha256=vX59boT9SZIkQ9kkNyxNQEcwKQAH5Ny1fHii14terG0,289
122
+ letta_client/types/conversation_update_params.py,sha256=ICv7ZlFp2Kcg2A-t32pgNutsAz_6N4vRLRaKVV-pU7U,357
123
+ letta_client/types/create_block_param.py,sha256=-kRVnLG5T90V-mkl71KCcEkZQZRtU1ubthyWBtZx0SQ,1485
124
+ letta_client/types/create_sse_mcp_server_param.py,sha256=RgWS4ekHRCTbe3OANri0g9RIfPuu3hqm2Eu1rK5yGCQ,738
125
+ letta_client/types/create_stdio_mcp_server_param.py,sha256=vrbJOysKyB0FEZSTMlwcHkW9MPLduJSo5JJ3nXHVFhA,694
126
+ letta_client/types/create_streamable_http_mcp_server_param.py,sha256=EBeb5coowLl1fTE2oHGmpYhOP7LsnIVVgT0H5KPNtpU,784
127
+ letta_client/types/deepseek_model_settings.py,sha256=qzIB4Zh6NLS4TAApfIXX9qVrAU5uZg69uOcuKdvmrno,1242
128
+ letta_client/types/deepseek_model_settings_param.py,sha256=96cQzEz78Ev5oSmYSHJ3QBGqNMEzMJttk-FFLktIW5o,1144
129
+ letta_client/types/embedding_config.py,sha256=-u6MzPKJw9k29AKIDcADsNLu_8l4eBZOtKLQ88baNYc,1595
130
+ letta_client/types/embedding_config_param.py,sha256=A3sNhE3ZHu-QJL2u-wuxwGX7DyRBHz6CCWRXbmU4Bs8,1707
131
+ letta_client/types/embedding_model.py,sha256=Ny19HDrW2ihPZh-7ig_rVKRm5xlofdbRxyz3-VToPqI,2150
132
+ letta_client/types/folder.py,sha256=5CpvuCEhKgJPv701qeGRkJH1BYiSD0TOtm4Zbi34u8k,1218
133
+ letta_client/types/folder_create_params.py,sha256=sJ3iSSQclEQHmwESkpSVhZyEY0ekn99Urk2RIlQoi4I,971
134
+ letta_client/types/folder_list_params.py,sha256=oXb8k3fJywQXnjW_9DE2vKHbVQ3VDuJTa6-fUwLgAgk,931
135
+ letta_client/types/folder_update_params.py,sha256=GQXYIQJRs-a8CuPQtSRWvdAQAhL-rk3ZTNOJsD9xIIs,781
136
+ letta_client/types/google_ai_model_settings.py,sha256=RYB8crnMEcphAgITmJcAmP_Zv9gbEvp1HjMgjU7JQWk,1589
137
+ letta_client/types/google_ai_model_settings_param.py,sha256=sBoUN7oP_2GgCTacQONgpKio2IcVJIh9VENqn2lBmeo,1453
138
+ letta_client/types/google_vertex_model_settings.py,sha256=4gJRz8G6bYkvkerdkLHlJGJycQ42DXqj_Pg9QNmwwog,1601
139
+ letta_client/types/google_vertex_model_settings_param.py,sha256=g7XrQXkr3aXbdCqbC1THLnWofPZgn_5Ew-SGKQxeYQE,1465
140
+ letta_client/types/groq_model_settings.py,sha256=u1-zEZ_kKsOppzp-wvijakG0nWfKR7i3TJQyUn2Zauw,1226
141
+ letta_client/types/groq_model_settings_param.py,sha256=bGwDXuYaAoDSOXwi06Ssn3FmvdnApoaGEgj1G78Ddk8,1128
142
+ letta_client/types/health_response.py,sha256=CBajgMNAyOLck2QK-BCWWL7M4M4MC_S3rgv18JnDkEI,256
143
+ letta_client/types/init_tool_rule.py,sha256=Lc7F3QrdAOhXzkPLHnROuZSDVKyTDgekJR6cYG2VwIM,1019
144
+ letta_client/types/init_tool_rule_param.py,sha256=eLFelEJWqcMnGUJmyglX4k2xhu3CNtGDbOxAz3f_HgQ,1045
145
+ letta_client/types/json_object_response_format.py,sha256=PMHwTKuc1neqI_FYO7N90p8a0Yg4oYwxw19p2m6QGug,418
146
+ letta_client/types/json_object_response_format_param.py,sha256=fStmvcLMQRaCp81ejv51rwQVZcyUEdY8vqa41GE96EU,410
147
+ letta_client/types/json_schema_response_format.py,sha256=kyk6awUiXDPuu7v6GNc9vqmac0F-hjiBK6m4eZFhFVo,509
148
+ letta_client/types/json_schema_response_format_param.py,sha256=IlAZkuaadYcx8Ew4scL4J6WaB78PsCOB3vN8TjKOASA,539
149
+ letta_client/types/letta_message_content_union_param.py,sha256=I_eCNfpOH-r_XS_K1JCK6pqaNteVFm1koaInY-KNzVU,960
150
+ letta_client/types/llm_config.py,sha256=9FeiNL7JQ9sydHslANil63iy5bQ0VQB9lRuofKIQuZg,5179
151
+ letta_client/types/llm_config_param.py,sha256=KZnMV0KnfiLGiQEWAL9sihMXcXsjuqUHCWKh8TRhTiA,4947
152
+ letta_client/types/max_count_per_step_tool_rule.py,sha256=AlwKa7ZxNsefbo-vlmeFpvykfoEjFbYltEH6XtoSY9g,804
153
+ letta_client/types/max_count_per_step_tool_rule_param.py,sha256=F68sekaEH_YyFBzZb0BqFkkEII23qQXR1f7Xb4Y4cT8,847
154
+ letta_client/types/mcp_server_create_params.py,sha256=ce_LqyM-2yvJbduvABWkioULFcG7huT5NgCtuj28muk,820
155
+ letta_client/types/mcp_server_create_response.py,sha256=AGVvnHMnc6KoErky5I02ZYXcixeHa3HStO1goG3OKYY,441
156
+ letta_client/types/mcp_server_list_response.py,sha256=yEvTjLTIgrO0npcADyVn6En1h7jMoPY3oQQgPqqhqQg,544
157
+ letta_client/types/mcp_server_refresh_params.py,sha256=CkalQLrjJdxd15Pw5NPFIkqaclq5KbCsWjVj0PHLVFY,313
158
+ letta_client/types/mcp_server_retrieve_response.py,sha256=yYkJaxLFORR3ryF8MicWwvHXV4itUrvkdIxN3AA31xE,445
159
+ letta_client/types/mcp_server_update_params.py,sha256=58ZJxJ8mn04v1TrxOTfKrsZn6al2bGyzo6Pp3kJ_PkI,838
160
+ letta_client/types/mcp_server_update_response.py,sha256=T6AoXsTMHyN5hwTaQ-uveM5KdlxybzZv8JjYF5le_qE,441
161
+ letta_client/types/message_create_param.py,sha256=wMmPE6KlOMoMS_h-0BhsS3fq-xmAkM5gu0d34REJCw4,1186
162
+ letta_client/types/message_list_params.py,sha256=WwUyPb-kCng-T8fdKxQYLvv5HF-lWxF6pKsBhJc6eRM,901
163
+ letta_client/types/message_list_response.py,sha256=iq-0Y13RgtKG4qGoXfTodJsD_7AhejPkgGyUXusVrHA,271
164
+ letta_client/types/message_retrieve_response.py,sha256=U61WA1w6AJnwXfWqIjjwGRig9SxYLUrFXWhW3Nj1OhY,279
165
+ letta_client/types/message_search_params.py,sha256=1o-cM03aHgSevmdjt_vq5VxJCZT80IRW9Fr2FCDf5UI,1019
166
+ letta_client/types/message_search_response.py,sha256=M1rUBVFs5pM-X1xNiZ_vlgaAB3CchJQnrzmJZ_GLxs8,3908
167
+ letta_client/types/model.py,sha256=urEvDPEIYtAOG4VKg-WEzDXTF88-5sMBAwmoKfh7yjc,4845
168
+ letta_client/types/model_list_params.py,sha256=gIwbmlVRsz-PmI18eqj9VDKsQGS6cujNL-LHeTvw1q8,499
169
+ letta_client/types/model_list_response.py,sha256=ppV9qvoUjfcBGM9YMn8axW-Df3KJNufjhwG-kjimTpM,254
170
+ letta_client/types/npm_requirement.py,sha256=kn4uFWY51kgeFPPS4LHwQF3K3K4UBt6h2j0JRdzrzgU,371
171
+ letta_client/types/npm_requirement_param.py,sha256=jM9ddadcO4vxKnt1jxLsv2eV9LCJib01C26MMM3JIug,450
172
+ letta_client/types/openai_model_settings.py,sha256=9kJ86Jwb2WKBK_mzAnIQJgY5QxV-3TucHXGUEmHqtV0,1699
173
+ letta_client/types/openai_model_settings_param.py,sha256=-lP5ze14KZ9HTkFCKhy479HBKQB0jti_R_gqzIJs5Cs,1563
174
+ letta_client/types/parent_tool_rule.py,sha256=cckolcwdPlmeisM2JotwZR8NPhKZ9pOVd5AE4KZ5m2s,690
175
+ letta_client/types/parent_tool_rule_param.py,sha256=darGPaqTbJw4UOmTrtniRvhTOBzhD_pQ9TEDmAYMdBU,774
176
+ letta_client/types/passage.py,sha256=NI2MWfkMetiXwD-7i9UGPbdawW5LR6O9wQmIfi1T4Qo,1788
177
+ letta_client/types/passage_search_params.py,sha256=Oo_2WtYGw3NJ3FTv0aCsNuBKNtpcUECxD6J_SLfbDDA,1260
178
+ letta_client/types/passage_search_response.py,sha256=I_D3AILRJmhFpkhCOSmzx6gf560XMLRnTl-J5XddlgE,680
179
+ letta_client/types/pip_requirement.py,sha256=vCgHwTURjLVuds02ppNLO0LSDm1AVFcD0porDnJtvLQ,371
180
+ letta_client/types/pip_requirement_param.py,sha256=0NRSI3eTTyuV7rJiuhhZMGqd77JxKcSlDQTpw_enkD8,450
181
+ letta_client/types/provider_category.py,sha256=PxA2eudu2VwUKpUJSAs9cCxe9HiBvrCzFmlWY-gnp9Y,223
182
+ letta_client/types/provider_trace.py,sha256=R0MrvSF-Fl2jCvhWDXPRx6c0KaOdEJyIUM3CfhFts3o,2375
183
+ letta_client/types/provider_type.py,sha256=pKl9JGwjxKSkS0_rgfyY4GEn8I-3EgI2GbMCGWS7c5M,513
184
+ letta_client/types/required_before_exit_tool_rule.py,sha256=3MvG1Qh0OtKYyeb6nIK1dpb24AwvDPMso-uWAIypLQo,652
185
+ letta_client/types/required_before_exit_tool_rule_param.py,sha256=i2HTPOxO-4lgUaZA8tF9yoS661FLdTU_jGSzIQJMUKA,685
186
+ letta_client/types/requires_approval_tool_rule.py,sha256=OQ5wA2M0JPNBFg0VD3xCg6jQqueOF9pyscqIyWHwTJI,705
187
+ letta_client/types/requires_approval_tool_rule_param.py,sha256=pF82OommG_NxtTeAUy6YhibvoGLDTCErQx5Ae7eCdEM,738
188
+ letta_client/types/run_list_params.py,sha256=Pmwj77S9HbwJhnvFMAiQGvXgz65Jfo2NxG4Gu6POYRE,1781
189
+ letta_client/types/sse_mcp_server.py,sha256=LtnW5o8EWRRRNUAoy87cG-zWTv33OmkTrHu8WekFVcE,836
190
+ letta_client/types/stdio_mcp_server.py,sha256=7vBmyQKcwUzh0xKh6eQZbGLrpLc0UVDrOjrPbNrzzXY,726
191
+ letta_client/types/step.py,sha256=1LSzi9DrIPp0zPbKx1um4gXjFZjgzXjHL-K0NvklotI,3369
192
+ letta_client/types/step_list_params.py,sha256=zyloM3DqBGTmDo1qDuu6rEzyI71o3hbXwiJF6hg-gvk,1600
193
+ letta_client/types/stop_reason_type.py,sha256=l5mdwHmTl5lgo73BAWBLly6Abrmm0uDsCloz-SlVq20,480
194
+ letta_client/types/streamable_http_mcp_server.py,sha256=WPnfz-0tyKmHST8Q04tDgzJUjRRtQgU9DMUshg9hLMA,881
195
+ letta_client/types/tag_list_params.py,sha256=_RnY8jTjiAnm7vYTXgjyo6LeVMcvVzsQkHycgQOiM40,992
196
+ letta_client/types/tag_list_response.py,sha256=UsubWqLCh_o_HGo7FWwLdrpHSAhioVAf-xGNBM8yMbE,222
197
+ letta_client/types/template_create_params.py,sha256=oAj3qKWGsX5ocXp9_ZzEusGrcYeQb07seDRNQWpMn2U,1197
198
+ letta_client/types/template_create_response.py,sha256=3lOpFORjHSYJPtTIpyGPVSbM9cqGxoSUzy3CawySz6Q,627
199
+ letta_client/types/template_delete_response.py,sha256=IQwn7DLPosNlDu_sMqj7qhM7b5yJLjAG7ygjEWQgvOM,218
200
+ letta_client/types/template_update_params.py,sha256=d-f46Fqo8INVlGRknoKMmOh2ySXiH-qEn7BjeLXS7rc,730
201
+ letta_client/types/template_update_response.py,sha256=f1AAKTUFlpHbDax88V6WYcQrttfFDWFJ455HjfgqFpE,282
202
+ letta_client/types/terminal_tool_rule.py,sha256=gHR6NMv4dCoTsyhl4nVrdz3RqPE8pT7liV6a_7im9B0,627
203
+ letta_client/types/terminal_tool_rule_param.py,sha256=VBqGhQkkHej5MjIL4xpaa3eXqJwf24rYkYsr94ebwNY,660
204
+ letta_client/types/text_response_format.py,sha256=G2TVMptFQebwrEYmrMemRR3MnyvCO6rIHt00pE7I5KM,398
205
+ letta_client/types/text_response_format_param.py,sha256=lFFAoNIUYwjLm2O1ZZq-1vB5-JttQxM4ceM4Y-7P0e8,390
206
+ letta_client/types/together_model_settings.py,sha256=x8sWbo9QhLC719Hi-GEr8TPWH8zzLFtXAYNVxd5oNk4,1245
207
+ letta_client/types/together_model_settings_param.py,sha256=2X8XjSFFb9pOhCtoj8H2ux3vKXvjrwouZVcf9j1KhsA,1147
208
+ letta_client/types/tool.py,sha256=v3iHTu9LRjO5RRgvsjqTvRFOaPG846JKJ7fImPetCUs,6194
209
+ letta_client/types/tool_create_params.py,sha256=ourfiChPPF2YoNxmpHmIXq89EPevrTetZtYWwKCZX3s,1610
210
+ letta_client/types/tool_list_params.py,sha256=oSwepX0mdUw07skdN6ULZbX2bxhLHbIVusuNsXQZsMQ,1639
211
+ letta_client/types/tool_return_message.py,sha256=wygXjKrwSE7lnkW0lp8xlodeB9vdc1GN4k9dwa-cQ28,1898
212
+ letta_client/types/tool_search_params.py,sha256=AIA9AuqhYoQDOIpBPMrsTxsfZw-QOqBcJbNSzbDIBfU,738
213
+ letta_client/types/tool_search_response.py,sha256=dSu5axnUdCbYeDjre3crSGhZ65KcTiA2J1rq56BVRoA,291
214
+ letta_client/types/tool_search_result.py,sha256=0JpQnmCefwD7x4JJbPsTTCicdICizSpLWkWHLHZsgaw,668
215
+ letta_client/types/tool_type.py,sha256=bCnBz4HnX_v2a-1KoE5n3IS-tbadrkLvK3VTyvJRx2M,459
216
+ letta_client/types/tool_update_params.py,sha256=sLLst0Dk69UuVotbHvpIPETpqVJ_VfUIKld8QsrLe6Q,1808
217
+ letta_client/types/tool_upsert_params.py,sha256=mZW3jsUXSCIJWTHzyfbxlZwtw7ue2K1oKllK9onPOik,1610
218
+ letta_client/types/update_sse_mcp_server_param.py,sha256=SmGOEuujcObmxAcwU1hQLp9uEPcNR85sIQqcDeHWCaQ,775
219
+ letta_client/types/update_stdio_mcp_server_param.py,sha256=sxZ5pyxfS9ncOqkrs54vOQgMWWBh9YBiRYSR4O9fRCQ,741
220
+ letta_client/types/update_streamable_http_mcp_server_param.py,sha256=AmfpLsR5Qt2TPy43QVlhErTpbJ4MrCewbqSwszgG_Ec,821
221
+ letta_client/types/vector_db_provider.py,sha256=qBKOulAcpdAgPJxRBU_bwNyK3LDRRDc23ZWHwOG10kU,237
222
+ letta_client/types/xai_model_settings.py,sha256=kxW-_TczptV3ThtavK9TeLjDBkYQH_bHNXdnIPzNhpc,1222
223
+ letta_client/types/xai_model_settings_param.py,sha256=EgvskcI1Ws9Zsyx_brznd6zXDGqb71-uthD39Ylusm4,1124
224
+ letta_client/types/agents/__init__.py,sha256=0fHFnmzwJMerDZLJDe9TXsjWrp7XXfgeoSUrXwu-WJ4,5171
225
+ letta_client/types/agents/approval_create_param.py,sha256=9h1XPFRGRoKiKIUIqYJvs9pbvqLRhfgig5LRRD3RaWw,1059
226
+ letta_client/types/agents/approval_request_message.py,sha256=Q4HmeU58c5fi6KOZqEr_zQ5YM9luu7UtOAmrCzBpoG8,1545
227
+ letta_client/types/agents/approval_response_message.py,sha256=mw1z-tibJBLriu5sOP03qYtyzPtffsp9i05r8Y2RZiQ,1832
228
+ letta_client/types/agents/approval_return.py,sha256=6nuEuTTjP9uHEHQD1oZDGZ58kIpnKlb1AHdaasA8SZ4,597
229
+ letta_client/types/agents/approval_return_param.py,sha256=XNROyvvvW732nlXKcKtrifBabAl9xVLCa9o7OeT-718,639
230
+ letta_client/types/agents/assistant_message.py,sha256=rHMIbUojFKj9rd3FyP6moECw3zwRFpe1Q1ZVnqPffZo,1371
231
+ letta_client/types/agents/block.py,sha256=avZETFVGLH0RAO7II0yNeiATq62VH0rxNKSNZPGQipo,1930
232
+ letta_client/types/agents/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
233
+ letta_client/types/agents/block_update_params.py,sha256=bvR2Dng5L80RtDxS-Ckm4_KKgENgYreZPjwNgx4JLoc,1687
234
+ letta_client/types/agents/event_message.py,sha256=TZTKJ4o797UxA8CX62_Or0T5gA7PspieuTsqNbMW07k,836
235
+ letta_client/types/agents/file_close_all_response.py,sha256=yq3AN8M749mivM6T7WS6iNKCrBRANafXXHsB3NuQRsc,232
236
+ letta_client/types/agents/file_list_params.py,sha256=ltjR-n7z_ZiOCO_nNPmSyH7DQUxdUB_jEuSXnnLWMmE,1067
237
+ letta_client/types/agents/file_list_response.py,sha256=Ic6VRWAH7NcQQ3TbUgOZ_l_2KtqvE3s-CUdDHvpC9Uw,1131
238
+ letta_client/types/agents/file_open_response.py,sha256=QnOUmArtPRRFAlSqfCzcQX_Mj9J7_YfSSCdjOdA7dhk,224
239
+ letta_client/types/agents/folder_list_params.py,sha256=ch6sBSUu88lyAm7RWAaHjVKOJ5gmH4sJh_d6q6RZ46E,871
240
+ letta_client/types/agents/folder_list_response.py,sha256=UO5IHGwQDMYjAJEPpFVcr4K33KaIAr3pqMu34Nb7liM,1459
241
+ letta_client/types/agents/hidden_reasoning_message.py,sha256=NERtBZGpTEMpNknAxfcbK86a1uvEYToe9-omSk_64cM,1312
242
+ letta_client/types/agents/image_content.py,sha256=xsOD6ryt99gbOv5nvGTHOWqVMgK7cE3V7FJD6bHApsM,1767
243
+ letta_client/types/agents/image_content_param.py,sha256=O5olgayrddnQPRktITgGj6aHFeEEOSEc4qXzhxOlkTA,1707
244
+ letta_client/types/agents/internal_message.py,sha256=luVQHHhmONJ_M91X02xf8oPYv2fx6giyR1HgS22vE48,9203
245
+ letta_client/types/agents/job_status.py,sha256=6sv0_-oPTgYMKrVJjtY-TzQOiEnmhw_SpRvvTTE8xo4,273
246
+ letta_client/types/agents/job_type.py,sha256=hwEdpoIs2f9y6qABN9CmCM2AnnAIClyEebJirZiBoso,212
247
+ letta_client/types/agents/letta_assistant_message_content_union.py,sha256=fh_0Gx-1OBvH2IoZFB33IoG1fyHgQE6kNDSZZvl2QW4,553
248
+ letta_client/types/agents/letta_response.py,sha256=4_su4cMDonSvqOlFIFw8awyr5wEXn5zcAe1OTgMjk7Q,2398
249
+ letta_client/types/agents/letta_streaming_response.py,sha256=7v6RQ2tIKpnz4UaXBCjSE2738MwAEiX0bG-Xlt_P_ck,4699
250
+ letta_client/types/agents/letta_user_message_content_union.py,sha256=u6fbFbrTu3wLMIEe72UqBWOTrVDQqBMaq9VT3thXTow,450
251
+ letta_client/types/agents/message.py,sha256=iLqhnYka6mJvygTUNAQeWnVadGLBP0fkkJDVHwMDSPU,1158
252
+ letta_client/types/agents/message_cancel_params.py,sha256=BPgIzthxeMYYIP-Gjab8iwicmLZWLdNMqXDvdVgDcZw,405
253
+ letta_client/types/agents/message_cancel_response.py,sha256=vTd3EpaL-xN1zG6BgiOYhFxUkqbqFM0AJiFPRV2vB28,242
254
+ letta_client/types/agents/message_compact_params.py,sha256=0LJlAbe1HzDsgds8m7YPotWV6CQMsoyPIQN8sNaRO6M,5333
255
+ letta_client/types/agents/message_compact_response.py,sha256=LzU2GvImkSNk7IMAHQWn2-9Tyx4WlVbBH-CuMGrYSjU,277
256
+ letta_client/types/agents/message_create_async_params.py,sha256=2GqcgS3Fz8FsFFTYyEoUCBzdBYWO9uVJdrh9rDNsYUQ,4695
257
+ letta_client/types/agents/message_create_params.py,sha256=J2faS_dxT6ny0aYL7nzi9G-7ckBiMvwyC1ZNMXtBESI,5710
258
+ letta_client/types/agents/message_list_params.py,sha256=b6133AbysWEEll5C8IfugJmJzpWRhpw79AU-On_TuPo,1422
259
+ letta_client/types/agents/message_reset_params.py,sha256=fdhNm-jWov0vO21yxzybEXK_y9ursZKsFcvhdD_uavE,358
260
+ letta_client/types/agents/message_role.py,sha256=eAvdKVpQSHXw37kexvCvW7FmhYBZunHjLCgHEcHxVAY,260
261
+ letta_client/types/agents/message_stream_params.py,sha256=G-SzcApMLNMcE0pRU5ifArU4Kncv5Ev2wwqZik8vmNA,5215
262
+ letta_client/types/agents/message_type.py,sha256=89E2AtHyPVha9f7MbIO2kU3d_fOeLXjMjobIrBtpT0E,441
263
+ letta_client/types/agents/omitted_reasoning_content.py,sha256=fcq-ue-41u5KpsEchT5Yk_u572qALxq-nWMEPW4rzT0,624
264
+ letta_client/types/agents/omitted_reasoning_content_param.py,sha256=KoJUo17czSXmM4VL4aMliSKiQS72OlkqwOvWAKugCbQ,636
265
+ letta_client/types/agents/passage_create_params.py,sha256=4qezp8WC5Pjah3wx2FMbe15v0CbT8OPefcKXrcn3GAA,739
266
+ letta_client/types/agents/passage_create_response.py,sha256=wRNuKwbU7CaMQkyxQYY622x5tE56rDntG5efuvTNals,269
267
+ letta_client/types/agents/passage_list_params.py,sha256=QyFn-CVGj5Cj_iJDSXjGmy2iVeIJ4VueB8n96AJdc70,734
268
+ letta_client/types/agents/passage_list_response.py,sha256=3sloZxS8gAYARRM638_IWioDJmW2Wdv-meS7cDoWoKQ,265
269
+ letta_client/types/agents/passage_search_params.py,sha256=jmX8PZhp0V2T2iKTayqadk61l0LJvloEmFq90eS7U_w,1196
270
+ letta_client/types/agents/passage_search_response.py,sha256=RfRjZDKCO0aAhrmFmdXbHstjHe8637H7FIog_-H5q6A,742
271
+ letta_client/types/agents/reasoning_content.py,sha256=LUI9l7heB_hrB3g3lNqr-6sQ_lXTRAhGy5rtvzdE_CQ,722
272
+ letta_client/types/agents/reasoning_content_param.py,sha256=TGNFY-rSVUz0Gk27UDZNIgx0xAIIysNszz7S2Yy8MYY,764
273
+ letta_client/types/agents/reasoning_message.py,sha256=lS-gQWceJNHWAvP1OCcWgYR49BIxhztB-Indm6q92SA,1372
274
+ letta_client/types/agents/redacted_reasoning_content.py,sha256=3iDk2YFaLeFVFKGW0Ei_LVKya516E2aucS8ZwmIx5s4,512
275
+ letta_client/types/agents/redacted_reasoning_content_param.py,sha256=2h3WMXPBV9lGQkvbyIgGm5VtLnRLFg18gwCCofOZvdQ,523
276
+ letta_client/types/agents/run.py,sha256=LFwq9HaluIQ8Rve9qYZBMygvX-Vi2dOHbFLVeDOg2A0,2969
277
+ letta_client/types/agents/summary_message.py,sha256=PTFlP2rVKDZs-cczsaZHT9P1IEJDoLHYwcNrTiyF9lc,772
278
+ letta_client/types/agents/system_message.py,sha256=1awd8FF5lI4Emt3Mkxj4-3vDr5cmDz44aiC9oqw77L8,1092
279
+ letta_client/types/agents/text_content.py,sha256=4uTYeAEXqkz9bQ5SqRHRw5lOcJvGLIqha2G7cAvuV4o,509
280
+ letta_client/types/agents/text_content_param.py,sha256=s7btBv3sPQgK-QIPkSxnwMSHYH1bXTPzoRjVcq--9y8,541
281
+ letta_client/types/agents/tool_call.py,sha256=5hgY_3qFNbi6enawWx40AJkA8i1JG97iAWnAaDtVAVA,230
282
+ letta_client/types/agents/tool_call_content.py,sha256=B8D1AK4Ts4ZOsfZRNBIz_GOhkufBvEx4lIlFqmN3r1M,788
283
+ letta_client/types/agents/tool_call_content_param.py,sha256=6emc1rsT2umsH6gSvVZXZhAr2vc9rdDqmeTCMVbSrB0,840
284
+ letta_client/types/agents/tool_call_delta.py,sha256=7THqtblAJMt4e_tjMJr92ajlF641rDaJVsQ2RtuoGDM,320
285
+ letta_client/types/agents/tool_call_message.py,sha256=phkI1DRidodVDnlBM9Wg39aqupEIHn13MZG8pCuaw_k,1357
286
+ letta_client/types/agents/tool_execution_result.py,sha256=jL95_vjs5zQ23APi3xsnwvAAsOOV7OveBMyqGUjgkjU,1058
287
+ letta_client/types/agents/tool_list_params.py,sha256=fmhOBx016k5FFLKHk187w7Om1HRWkUNEzBPI4MVrbXM,851
288
+ letta_client/types/agents/tool_return.py,sha256=t8ErPUtHPFclwUSEY006KezXHSjUqWh-4BQqMjyNKFc,911
289
+ letta_client/types/agents/tool_return_content.py,sha256=BSOvlAuJPL_xcsrQmiCPHOIxweSrq3EZMT1GHBquLi4,639
290
+ letta_client/types/agents/tool_return_content_param.py,sha256=LZTL1w0MNgZH69Yc-z0BgC0We5ChGM6XYfaAICEwXfc,670
291
+ letta_client/types/agents/tool_return_param.py,sha256=wQ6LySO0f4KETVxA71XazqZhFr3HbQ39ylNyUEsu7XE,961
292
+ letta_client/types/agents/tool_run_params.py,sha256=IiHXX-nB5yJib3RXge2jyNgVJ33sbUHXzhArsz9FZFM,430
293
+ letta_client/types/agents/tool_update_approval_params.py,sha256=QmvhF9tG8UcEMel226iISNNTCtYvbftbjklMxnHNfVM,751
294
+ letta_client/types/agents/user_message.py,sha256=Jto9eqhlKlYWEVM1ojEoo-SDTzox0feD0TafCHXrvT4,1381
295
+ letta_client/types/archives/__init__.py,sha256=ZLUOmvug19FJX3bsqWrdlkQpfe_7fBj_GQxYHZROq2o,201
296
+ letta_client/types/archives/passage_create_params.py,sha256=hZOmXqFxiDLEBDTB4vpUYBhDcmS0FZ2D6R4L6ohwUhA,580
297
+ letta_client/types/blocks/__init__.py,sha256=hiSa_DsUrxaUdZf6f03IP9pqSbKVcadjiYcctRlUIU0,189
298
+ letta_client/types/blocks/agent_list_params.py,sha256=5ClogbmPdy0A-8UlIdb6gDiw-xivnNoEPQlHsAbiweE,1713
299
+ letta_client/types/conversations/__init__.py,sha256=5ERr5O2PdGsjJuRXdtTqWpXE5HJyr8uZrZVM6u62Ikw,351
300
+ letta_client/types/conversations/message_create_params.py,sha256=Bd9DH0OANrZ0uNFHkGfP-bH9I3ZAgJ35gmvLYMOO2Zc,5287
301
+ letta_client/types/conversations/message_list_params.py,sha256=IQMsM6-nVGpXDGY-ytU5B5L1dEZXK5w1HNh-og849-U,1088
302
+ letta_client/types/conversations/message_stream_params.py,sha256=931Vo_wgFLcWT10V9A6Umg2cDyGwr3WZlF1X4MuDpas,758
303
+ letta_client/types/folders/__init__.py,sha256=vcWU-iAmSOuWh1Qq2bYgRcL7RuB-GrCOIMQrDEJU2pA,693
304
+ letta_client/types/folders/agent_list_params.py,sha256=oUexDxrOm9Zec1zoU2acoqLaNMcUuXUdD_qzrc_D1v8,861
305
+ letta_client/types/folders/agent_list_response.py,sha256=yvPSQSxwYbR_i9sV1YgGCiLMXREjmiAxkZvhRWkEbx4,226
306
+ letta_client/types/folders/file_list_params.py,sha256=eXpJfwqdeIzVgqdBittXz8KFfO1jbqfGptrbgX9-4fc,925
307
+ letta_client/types/folders/file_list_response.py,sha256=lGkylyCteCJTQfCrzkt9Aepmu_wVnNQj9A4cJ2TKG4Y,1938
308
+ letta_client/types/folders/file_retrieve_params.py,sha256=DRXNutuiOTH3ttv2DL-B4PWnJmVR7Zv4CacfF1bXNE8,424
309
+ letta_client/types/folders/file_retrieve_response.py,sha256=xYJeiaGh-V_OVxu05Zj7crUwc9uupxecOU9K_AJJ4TE,1946
310
+ letta_client/types/folders/file_upload_params.py,sha256=QTwtUEVP3lnvb3cz0KSUV9ZZMq3h-a-sO-HBJhtMVk0,563
311
+ letta_client/types/folders/file_upload_response.py,sha256=Ftg3bFf4nEMi-7Xr98sJUZWGdSZWq9_CjrTTZEowYvQ,1942
312
+ letta_client/types/mcp_servers/__init__.py,sha256=Az0xxcM_skh8G-30BXPbG-4-3KNa5h8QZKFfsbcfi9s,252
313
+ letta_client/types/mcp_servers/tool_list_response.py,sha256=ZcDgozkPHhscFNdPkdSW3J3ZL6NjmCA0EY33EqCoge0,250
314
+ letta_client/types/mcp_servers/tool_run_params.py,sha256=PHptQxm3cV7Pa-HNFN3ljfBhpiCMmn734etUZpAmhVE,375
315
+ letta_client/types/models/__init__.py,sha256=ldgePtY0WELsx-lMqSQk1640HoGRcSqS0E7pMa38D_g,207
316
+ letta_client/types/models/embedding_list_response.py,sha256=55U31h1vz2LjGkO0-dOJhcyYRmKj6uhcrDgqttHfvJ0,291
317
+ letta_client/types/runs/__init__.py,sha256=io7y_Mo_WLZiMVhJxzDR0cSLpyIPDNO5K6V4YhzEgoo,582
318
+ letta_client/types/runs/message_list_params.py,sha256=MkOUr9b_J1tWqC4ACYBs_aOiTBgDkNRtxyU3jMfi_1A,881
319
+ letta_client/types/runs/message_stream_params.py,sha256=931Vo_wgFLcWT10V9A6Umg2cDyGwr3WZlF1X4MuDpas,758
320
+ letta_client/types/runs/step_list_params.py,sha256=JKd1EUaMTqsqaCzCNitlN7qpADrbVpZEDmF3otX7siQ,673
321
+ letta_client/types/runs/trace_retrieve_params.py,sha256=fvdNDah94aGFqXaHownUCXq0Oyk7aYL6NDMKDnmWWAs,310
322
+ letta_client/types/runs/trace_retrieve_response.py,sha256=cKD8jq11crDnDXtsCAd_51E3_SyzQFj9WEpfsKvEFrc,254
323
+ letta_client/types/runs/usage_retrieve_response.py,sha256=-gp12phF1DGn6hB5BSM6o41yLkU29O-n2VgF9bzIIxw,802
324
+ letta_client/types/steps/__init__.py,sha256=SeQhiJbf4neZiYeTeYjfVTFVCcqBW6_BJja15SPRsp0,441
325
+ letta_client/types/steps/feedback_create_params.py,sha256=aIWbtnuU2LOHcpQAxroTVgcWOineMjE9iLTCcgi2-dk,524
326
+ letta_client/types/steps/message_list_params.py,sha256=YOM_88-fm54HosPI3lITS4ejBXrZbnzDV7_bAnOoOgA,878
327
+ letta_client/types/steps/message_list_response.py,sha256=sLYILRoBZ-uQbXQJiMfJcqUHnt4gsKVuffRkIpTkBQU,1262
328
+ letta_client/types/steps/metric_retrieve_response.py,sha256=2rqlYkeGpwu4JYBPg9PszUKbT63x4AEDfo8wAJSdoew,1385
329
+ letta_client/types/templates/__init__.py,sha256=aQ37X1zGiLY_AlzPt_HHU4q72oZ1EyMIE5dO6DZlRFA,273
330
+ letta_client/types/templates/agent_create_params.py,sha256=Rie9Auiaf1gLw4EpXkko_BFAIqKhqGJRbfMJa2yoIaM,1375
331
+ letta_client/types/templates/agent_create_response.py,sha256=VRC08qbsRz_4rqqvu_DvFAP5EoHbFgE0tFKVY_EQyaY,538
332
+ letta_client-1.7.2.dist-info/METADATA,sha256=XN2RKYxcQPB8OjELnSOM7TmcOI20y2S3y1RKnY4MzFE,13129
333
+ letta_client-1.7.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
334
+ letta_client-1.7.2.dist-info/licenses/LICENSE,sha256=Oqxt0Zo8Hm0xuB_HzZiZJjFyWODgjbZpPbtbSgrpsJY,11335
335
+ letta_client-1.7.2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.6.1
2
+ Generator: hatchling 1.26.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 Letta
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,77 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from .types import (
4
- AgentsSearchRequestSearchItem,
5
- AgentsSearchRequestSearchItemField,
6
- AgentsSearchRequestSearchItemFieldOperator,
7
- AgentsSearchRequestSearchItemOne,
8
- AgentsSearchRequestSearchItemOneOperator,
9
- AgentsSearchRequestSearchItemThree,
10
- AgentsSearchRequestSearchItemTwo,
11
- AgentsSearchRequestSearchItemZero,
12
- AgentsSearchRequestSortBy,
13
- AgentsSearchResponse,
14
- CreateAgentRequestResponseFormat,
15
- CreateAgentRequestToolRulesItem,
16
- UpdateAgentResponseFormat,
17
- UpdateAgentToolRulesItem,
18
- )
19
- from . import (
20
- blocks,
21
- context,
22
- core_memory,
23
- files,
24
- folders,
25
- groups,
26
- memory_variables,
27
- messages,
28
- passages,
29
- sources,
30
- templates,
31
- tools,
32
- )
33
- from .memory_variables import MemoryVariablesListResponse
34
- from .messages import (
35
- LettaStreamingResponse,
36
- MessagesModifyRequest,
37
- MessagesModifyResponse,
38
- MessagesPreviewRawPayloadRequest,
39
- )
40
- from .templates import TemplatesCreateResponse, TemplatesCreateVersionRequestReturnAgentState, TemplatesMigrateResponse
41
-
42
- __all__ = [
43
- "AgentsSearchRequestSearchItem",
44
- "AgentsSearchRequestSearchItemField",
45
- "AgentsSearchRequestSearchItemFieldOperator",
46
- "AgentsSearchRequestSearchItemOne",
47
- "AgentsSearchRequestSearchItemOneOperator",
48
- "AgentsSearchRequestSearchItemThree",
49
- "AgentsSearchRequestSearchItemTwo",
50
- "AgentsSearchRequestSearchItemZero",
51
- "AgentsSearchRequestSortBy",
52
- "AgentsSearchResponse",
53
- "CreateAgentRequestResponseFormat",
54
- "CreateAgentRequestToolRulesItem",
55
- "LettaStreamingResponse",
56
- "MemoryVariablesListResponse",
57
- "MessagesModifyRequest",
58
- "MessagesModifyResponse",
59
- "MessagesPreviewRawPayloadRequest",
60
- "TemplatesCreateResponse",
61
- "TemplatesCreateVersionRequestReturnAgentState",
62
- "TemplatesMigrateResponse",
63
- "UpdateAgentResponseFormat",
64
- "UpdateAgentToolRulesItem",
65
- "blocks",
66
- "context",
67
- "core_memory",
68
- "files",
69
- "folders",
70
- "groups",
71
- "memory_variables",
72
- "messages",
73
- "passages",
74
- "sources",
75
- "templates",
76
- "tools",
77
- ]
@@ -1,2 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-