letta-client 0.1.324__py3-none-any.whl → 1.0.0a2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of letta-client might be problematic. Click here for more details.

Files changed (251) hide show
  1. letta_client/__init__.py +229 -59
  2. letta_client/agents/__init__.py +15 -17
  3. letta_client/agents/blocks/__init__.py +3 -0
  4. letta_client/agents/blocks/client.py +77 -4
  5. letta_client/agents/blocks/raw_client.py +63 -2
  6. letta_client/agents/blocks/types/__init__.py +7 -0
  7. letta_client/agents/blocks/types/blocks_list_request_order.py +5 -0
  8. letta_client/agents/client.py +46 -13
  9. letta_client/agents/files/__init__.py +3 -0
  10. letta_client/agents/files/client.py +71 -10
  11. letta_client/agents/files/raw_client.py +51 -10
  12. letta_client/agents/files/types/__init__.py +7 -0
  13. letta_client/{types/tool_return_status.py → agents/files/types/files_list_request_order.py} +1 -1
  14. letta_client/agents/folders/__init__.py +3 -0
  15. letta_client/agents/folders/client.py +77 -4
  16. letta_client/agents/folders/raw_client.py +63 -2
  17. letta_client/agents/folders/types/__init__.py +7 -0
  18. letta_client/agents/folders/types/folders_list_request_order.py +5 -0
  19. letta_client/agents/groups/__init__.py +3 -0
  20. letta_client/agents/groups/client.py +71 -2
  21. letta_client/agents/groups/raw_client.py +51 -0
  22. letta_client/agents/groups/types/__init__.py +7 -0
  23. letta_client/agents/groups/types/groups_list_request_order.py +5 -0
  24. letta_client/agents/messages/__init__.py +2 -0
  25. letta_client/agents/messages/client.py +57 -18
  26. letta_client/agents/messages/raw_client.py +37 -18
  27. letta_client/agents/messages/types/__init__.py +2 -0
  28. letta_client/agents/messages/types/messages_list_request_order.py +5 -0
  29. letta_client/agents/passages/client.py +29 -0
  30. letta_client/agents/raw_client.py +4 -4
  31. letta_client/agents/sources/__init__.py +3 -0
  32. letta_client/agents/sources/client.py +77 -4
  33. letta_client/agents/sources/raw_client.py +63 -2
  34. letta_client/agents/sources/types/__init__.py +7 -0
  35. letta_client/agents/sources/types/sources_list_request_order.py +5 -0
  36. letta_client/agents/tools/__init__.py +3 -0
  37. letta_client/agents/tools/client.py +77 -4
  38. letta_client/agents/tools/raw_client.py +63 -2
  39. letta_client/agents/tools/types/__init__.py +7 -0
  40. letta_client/agents/tools/types/tools_list_request_order.py +5 -0
  41. letta_client/archives/client.py +16 -2
  42. letta_client/base_client.py +3 -0
  43. letta_client/batches/client.py +12 -2
  44. letta_client/batches/messages/client.py +10 -0
  45. letta_client/blocks/agents/client.py +8 -0
  46. letta_client/blocks/client.py +32 -2
  47. letta_client/chat/__init__.py +7 -0
  48. letta_client/chat/client.py +255 -0
  49. letta_client/chat/raw_client.py +269 -0
  50. letta_client/chat/types/__init__.py +8 -0
  51. letta_client/chat/types/chat_completion_request_messages_item.py +19 -0
  52. letta_client/chat/types/chat_completion_request_stop.py +5 -0
  53. letta_client/client_side_access_tokens/client.py +10 -2
  54. letta_client/core/client_wrapper.py +2 -2
  55. letta_client/errors/__init__.py +2 -0
  56. letta_client/errors/gone_error.py +10 -0
  57. letta_client/folders/agents/client.py +8 -0
  58. letta_client/folders/client.py +20 -4
  59. letta_client/folders/files/client.py +14 -0
  60. letta_client/folders/passages/client.py +8 -0
  61. letta_client/groups/client.py +16 -2
  62. letta_client/groups/messages/client.py +14 -0
  63. letta_client/identities/agents/client.py +8 -0
  64. letta_client/identities/blocks/client.py +8 -0
  65. letta_client/identities/client.py +20 -2
  66. letta_client/jobs/__init__.py +3 -0
  67. letta_client/jobs/client.py +61 -12
  68. letta_client/jobs/raw_client.py +29 -8
  69. letta_client/jobs/types/__init__.py +7 -0
  70. letta_client/jobs/types/jobs_list_request_order.py +5 -0
  71. letta_client/models/client.py +8 -2
  72. letta_client/projects/client.py +10 -2
  73. letta_client/providers/client.py +90 -2
  74. letta_client/providers/raw_client.py +102 -0
  75. letta_client/runs/__init__.py +11 -2
  76. letta_client/runs/client.py +152 -20
  77. letta_client/runs/messages/client.py +30 -2
  78. letta_client/runs/messages/raw_client.py +10 -0
  79. letta_client/runs/raw_client.py +146 -16
  80. letta_client/runs/steps/__init__.py +3 -0
  81. letta_client/runs/steps/client.py +39 -30
  82. letta_client/runs/steps/raw_client.py +19 -28
  83. letta_client/runs/steps/types/__init__.py +7 -0
  84. letta_client/runs/steps/types/steps_list_request_order.py +5 -0
  85. letta_client/runs/types/__init__.py +2 -1
  86. letta_client/runs/types/runs_list_request_order.py +5 -0
  87. letta_client/sources/client.py +8 -2
  88. letta_client/sources/files/client.py +12 -0
  89. letta_client/sources/passages/client.py +6 -0
  90. letta_client/steps/client.py +26 -2
  91. letta_client/steps/messages/client.py +8 -0
  92. letta_client/tags/client.py +16 -2
  93. letta_client/templates/__init__.py +88 -36
  94. letta_client/templates/client.py +165 -4
  95. letta_client/templates/raw_client.py +205 -2
  96. letta_client/templates/types/__init__.py +176 -72
  97. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py +4 -0
  98. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name.py +14 -0
  99. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name_item.py +5 -0
  100. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item.py +4 -0
  101. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_value_enc.py +14 -0
  102. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_value_enc_item.py +5 -0
  103. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item.py +6 -0
  104. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_value_enc.py +16 -0
  105. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_value_enc_item.py +7 -0
  106. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_args.py} +11 -7
  107. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_one_prompt_template.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_args_args.py} +4 -5
  108. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args_args_item.py +7 -0
  109. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_zero_prompt_template.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_args_prompt_template.py} +4 -4
  110. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_one_prompt_template_item.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_args_prompt_template_item.py} +1 -1
  111. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_zero_type.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_args_type.py} +1 -1
  112. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_zero.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes.py} +13 -7
  113. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes.py +16 -0
  114. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item.py +12 -0
  115. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_args.py +17 -0
  116. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_args_item.py +7 -0
  117. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_one.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_item.py} +8 -10
  118. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_item_args.py +17 -0
  119. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_item_args_item.py +7 -0
  120. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero_prompt_template.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_prompt_template.py} +4 -4
  121. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one_prompt_template_item.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_prompt_template_item.py} +1 -1
  122. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero_type.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_type.py} +1 -1
  123. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item.py +8 -8
  124. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args.py} +11 -8
  125. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_args.py +13 -0
  126. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_args_item.py +7 -0
  127. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one_prompt_template.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_prompt_template.py} +4 -4
  128. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero_prompt_template_item.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_prompt_template_item.py} +1 -1
  129. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one_type.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_type.py} +1 -1
  130. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes.py +37 -0
  131. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes.py +18 -0
  132. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item.py +12 -0
  133. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_args.py +17 -0
  134. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_args_item.py +7 -0
  135. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_item.py +28 -0
  136. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_item_args.py +17 -0
  137. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_item_args_item.py +7 -0
  138. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_prompt_template.py +18 -0
  139. letta_client/templates/types/{templates_create_agents_from_template_response_agents_item_tool_rules_item_zero_prompt_template_item.py → templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_prompt_template_item.py} +1 -1
  140. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_type.py +7 -0
  141. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_tool_type.py +1 -1
  142. letta_client/templates/types/templates_create_template_request_agent_file.py +5 -0
  143. letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py +8 -8
  144. letta_client/templates/types/{templates_get_template_snapshot_response_agents_item_tool_rules_item_one.py → templates_get_template_snapshot_response_agents_item_tool_rules_item_args.py} +2 -1
  145. letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_arg_nodes.py +29 -0
  146. letta_client/templates/types/{templates_get_template_snapshot_response_agents_item_tool_rules_item_zero.py → templates_get_template_snapshot_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item.py} +3 -5
  147. letta_client/templates/types/templates_update_current_template_from_agent_file_response.py +21 -0
  148. letta_client/tools/client.py +30 -220
  149. letta_client/tools/raw_client.py +0 -292
  150. letta_client/types/__init__.py +134 -22
  151. letta_client/types/agent_environment_variable.py +5 -0
  152. letta_client/types/{action_parameters_model.py → annotation.py} +4 -10
  153. letta_client/types/{action_response_model.py → annotation_url_citation.py} +4 -9
  154. letta_client/types/approval_create.py +8 -2
  155. letta_client/types/approval_create_approvals_item.py +8 -0
  156. letta_client/types/approval_response_message.py +8 -2
  157. letta_client/types/approval_response_message_approvals_item.py +8 -0
  158. letta_client/types/approval_return.py +34 -0
  159. letta_client/{agents/templates/types/templates_migrate_response.py → types/audio.py} +4 -4
  160. letta_client/types/chat_completion.py +30 -0
  161. letta_client/types/chat_completion_assistant_message_param.py +30 -0
  162. letta_client/types/chat_completion_assistant_message_param_content.py +9 -0
  163. letta_client/types/chat_completion_assistant_message_param_content_item.py +10 -0
  164. letta_client/types/chat_completion_assistant_message_param_tool_calls_item.py +10 -0
  165. letta_client/types/chat_completion_audio.py +23 -0
  166. letta_client/types/chat_completion_content_part_image_param.py +22 -0
  167. letta_client/types/chat_completion_content_part_input_audio_param.py +22 -0
  168. letta_client/types/chat_completion_content_part_refusal_param.py +21 -0
  169. letta_client/types/chat_completion_content_part_text_param.py +21 -0
  170. letta_client/types/chat_completion_developer_message_param.py +23 -0
  171. letta_client/types/chat_completion_developer_message_param_content.py +7 -0
  172. letta_client/types/chat_completion_function_message_param.py +22 -0
  173. letta_client/types/chat_completion_message.py +30 -0
  174. letta_client/types/chat_completion_message_custom_tool_call.py +23 -0
  175. letta_client/types/chat_completion_message_custom_tool_call_param.py +23 -0
  176. letta_client/types/chat_completion_message_function_tool_call_input.py +25 -0
  177. letta_client/types/{chat_completion_message_function_tool_call.py → chat_completion_message_function_tool_call_output.py} +3 -3
  178. letta_client/types/chat_completion_message_function_tool_call_param.py +25 -0
  179. letta_client/types/chat_completion_message_tool_calls_item.py +10 -0
  180. letta_client/types/chat_completion_service_tier.py +5 -0
  181. letta_client/types/chat_completion_system_message_param.py +23 -0
  182. letta_client/types/chat_completion_system_message_param_content.py +7 -0
  183. letta_client/types/chat_completion_token_logprob.py +24 -0
  184. letta_client/types/chat_completion_tool_message_param.py +23 -0
  185. letta_client/types/chat_completion_tool_message_param_content.py +7 -0
  186. letta_client/types/chat_completion_user_message_param.py +23 -0
  187. letta_client/types/chat_completion_user_message_param_content.py +7 -0
  188. letta_client/types/chat_completion_user_message_param_content_item.py +15 -0
  189. letta_client/types/child_tool_rule.py +6 -0
  190. letta_client/types/choice.py +26 -0
  191. letta_client/types/choice_finish_reason.py +7 -0
  192. letta_client/types/choice_logprobs.py +22 -0
  193. letta_client/types/completion_tokens_details.py +23 -0
  194. letta_client/types/{auth_scheme_field.py → completion_usage.py} +8 -13
  195. letta_client/types/custom_input.py +21 -0
  196. letta_client/types/custom_output.py +21 -0
  197. letta_client/types/file.py +22 -0
  198. letta_client/types/file_file.py +22 -0
  199. letta_client/types/function_call_input.py +21 -0
  200. letta_client/types/function_call_output.py +21 -0
  201. letta_client/types/{function.py → function_output.py} +1 -1
  202. letta_client/types/image_url.py +22 -0
  203. letta_client/types/image_url_detail.py +5 -0
  204. letta_client/types/init_tool_rule.py +5 -0
  205. letta_client/types/input_audio.py +22 -0
  206. letta_client/types/input_audio_format.py +5 -0
  207. letta_client/types/internal_template_agent_create.py +2 -2
  208. letta_client/types/letta_schemas_agent_file_agent_schema.py +2 -2
  209. letta_client/types/letta_schemas_agent_file_message_schema.py +27 -4
  210. letta_client/types/letta_schemas_agent_file_message_schema_approvals_item.py +8 -0
  211. letta_client/types/letta_schemas_letta_message_tool_return.py +26 -0
  212. letta_client/types/letta_schemas_letta_message_tool_return_status.py +5 -0
  213. letta_client/types/{tool_return.py → letta_schemas_message_tool_return.py} +9 -3
  214. letta_client/types/letta_schemas_message_tool_return_status.py +5 -0
  215. letta_client/types/llm_config.py +5 -0
  216. letta_client/types/message.py +15 -4
  217. letta_client/types/message_approvals_item.py +8 -0
  218. letta_client/types/omitted_reasoning_content.py +4 -0
  219. letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_function.py +21 -0
  220. letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_param_function.py +21 -0
  221. letta_client/types/prompt_tokens_details.py +21 -0
  222. letta_client/types/provider.py +10 -0
  223. letta_client/types/run.py +28 -41
  224. letta_client/types/run_metrics.py +58 -0
  225. letta_client/types/run_status.py +5 -0
  226. letta_client/types/sandbox_environment_variable.py +5 -0
  227. letta_client/types/step.py +2 -2
  228. letta_client/types/step_metrics.py +2 -2
  229. letta_client/types/text_content.py +5 -0
  230. letta_client/types/tool_call_content.py +5 -0
  231. letta_client/types/tool_call_message.py +2 -0
  232. letta_client/types/tool_call_message_tool_calls.py +8 -0
  233. letta_client/types/tool_call_node.py +35 -0
  234. letta_client/types/tool_return_message.py +8 -5
  235. letta_client/types/tool_type.py +1 -1
  236. letta_client/types/top_logprob.py +22 -0
  237. letta_client/voice/client.py +14 -0
  238. letta_client/voice/raw_client.py +37 -0
  239. letta_client-1.0.0a2.dist-info/METADATA +422 -0
  240. {letta_client-0.1.324.dist-info → letta_client-1.0.0a2.dist-info}/RECORD +241 -141
  241. letta_client/agents/templates/__init__.py +0 -7
  242. letta_client/agents/templates/client.py +0 -307
  243. letta_client/agents/templates/raw_client.py +0 -275
  244. letta_client/agents/templates/types/__init__.py +0 -7
  245. letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_one_type.py +0 -5
  246. letta_client/types/action_model.py +0 -39
  247. letta_client/types/app_auth_scheme.py +0 -35
  248. letta_client/types/app_auth_scheme_auth_mode.py +0 -19
  249. letta_client/types/app_model.py +0 -45
  250. letta_client-0.1.324.dist-info/METADATA +0 -211
  251. {letta_client-0.1.324.dist-info → letta_client-1.0.0a2.dist-info}/WHEEL +0 -0
@@ -1,56 +1,64 @@
1
- letta_client/__init__.py,sha256=0NoOlD-BhiQXxZzmfUxLWHAIeIhlKpm2fLDTyvQAehs,97186
2
- letta_client/agents/__init__.py,sha256=tivYxCGfOJoJPrDjdXFPEKGxqeHiILzaaUyrjbEpF-s,2255
3
- letta_client/agents/blocks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
4
- letta_client/agents/blocks/client.py,sha256=WAKaFGx76QqDG1Ygd2hlvyXHTjV-ObjnvQSMKK6h1SM,16143
5
- letta_client/agents/blocks/raw_client.py,sha256=sYWCzx2HRrBsCt4XUW3fVsoQodqzGyg1d_Atl6WxUqw,25918
6
- letta_client/agents/client.py,sha256=Zmoiskl-YwR70o53aemhuvsivW-K-CDnr20XKh9ihBE,69993
1
+ letta_client/__init__.py,sha256=Z8zCO74tatahB9-KsprgVnj-p0XszUaz7NEqk1EmCgQ,106608
2
+ letta_client/agents/__init__.py,sha256=aBcwQRv3HIiBGChEflelTCn_K9cvlJNVClHeKJCLAlg,2594
3
+ letta_client/agents/blocks/__init__.py,sha256=3VcniAvQZQ45JIyJRnYZPhNPH8aI_ORratv2Xx6ThLo,165
4
+ letta_client/agents/blocks/client.py,sha256=-mLyX2WyqG9XOJLQJ5mjd9Cm2eNCYYyRScsSqBulObo,18665
5
+ letta_client/agents/blocks/raw_client.py,sha256=LIdGYoMGSUA-ggHj-5eQB4W3LvjAIo2GRQ9WpA0CgTo,28278
6
+ letta_client/agents/blocks/types/__init__.py,sha256=u-p7C0I1cMIyuRwPWCCUexIFRzXX74TV51xz5fGXpy0,185
7
+ letta_client/agents/blocks/types/blocks_list_request_order.py,sha256=X45_ajG9sylW5kXCRK5zE42JXPj5IcoKsJNGzFSNSj8,161
8
+ letta_client/agents/client.py,sha256=5NgO8XHZ5qSGQ5P5iuVfc_49kVQC_UohyYZRpcOpvxg,71108
7
9
  letta_client/agents/context/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
8
10
  letta_client/agents/context/client.py,sha256=fhpJFWRs6INGreRyEw9gsFnlUWR48vIHbN_jVIHIBrw,3052
9
11
  letta_client/agents/context/raw_client.py,sha256=j2gko-oEFWuCgPkcX9jCv31OWvR6sTOtAYcSWllXYDs,4747
10
12
  letta_client/agents/core_memory/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
11
13
  letta_client/agents/core_memory/client.py,sha256=h3wZ6_LOczKARCZFCcDT_bzosYa7qa-9_T_GZuT9-qw,3182
12
14
  letta_client/agents/core_memory/raw_client.py,sha256=3_BuHw6xHPrdklgCzHO-mmux8-EjAUQ8vSV3D3y9VRk,4821
13
- letta_client/agents/files/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
14
- letta_client/agents/files/client.py,sha256=Rq1YhkVy7Lcnbn09x7wmqjLNbuR8b3Hv0KzArbeuOTM,10948
15
- letta_client/agents/files/raw_client.py,sha256=O6GckWzZyMkHbo8hfw-U6bo2_aGoQPRrFwXHLdOT1vY,18979
16
- letta_client/agents/folders/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
17
- letta_client/agents/folders/client.py,sha256=luuL63TqRuD_cSXZbdMvRpmfAwYm7S77wzfN9yszAVU,6868
18
- letta_client/agents/folders/raw_client.py,sha256=rYoCwfBO0RyBrnQwzoWfhAJSdRPng6FeDT7OEIAiA2o,12399
19
- letta_client/agents/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
20
- letta_client/agents/groups/client.py,sha256=JQ5TVuo5_cy6-Uyw2th5sCpe6sKyHR1V6kBsGUu-7Lw,3318
21
- letta_client/agents/groups/raw_client.py,sha256=xP8QeNqYa0rGMMxMD6BVaWDeTTmDI1vXG5hVqsmCbaw,5135
15
+ letta_client/agents/files/__init__.py,sha256=jysJfXF3Ikqu3WL6ZRR0vQeBxM7TBF7bS9U6tV3vmSE,163
16
+ letta_client/agents/files/client.py,sha256=yXevTftCkeHhHWrCGm_CtrQr9I3Rp0ZVx_OucEA8obo,13286
17
+ letta_client/agents/files/raw_client.py,sha256=YqMNx9BlDAx6pNEnHHpGe-UFbSJ-pJZsI69PHhaGo1o,20937
18
+ letta_client/agents/files/types/__init__.py,sha256=jWh4M_19PGBGO2kiEk1azwzSXVsRtJWeXadsVmdljsM,182
19
+ letta_client/agents/files/types/files_list_request_order.py,sha256=lGC2-_e0vGbTiPuGAejItytBjXSsd2sVpvwqzLMaJqw,160
20
+ letta_client/agents/folders/__init__.py,sha256=ZXoEZB_Xc3xNfqAX6Sh3emzvDyXzEZWf54sPET3mzB8,167
21
+ letta_client/agents/folders/client.py,sha256=3ZGlfdy4cJjbQCyibHg5zHe92gFUAX2fXryE4DjN_3U,9412
22
+ letta_client/agents/folders/raw_client.py,sha256=1oEbhWBz4fpHzUE5SgBASAkSViBPojOeteBQec0XCdw,14781
23
+ letta_client/agents/folders/types/__init__.py,sha256=I8LsHI-yq-amHxFTZYfBE0c5PJzwqyYY0Aamv4zY7hs,188
24
+ letta_client/agents/folders/types/folders_list_request_order.py,sha256=8SHNoAOmo0kz_VGjc76u5LRXWfOaHRN5-hbXcF8rLw8,162
25
+ letta_client/agents/groups/__init__.py,sha256=jcMHd9VhQl1h6c8LZW3EUmDxLUF4fpmgzVMMkZGFtZo,165
26
+ letta_client/agents/groups/client.py,sha256=gm9gCox_01LYy1EonMai7UI0NMHLIFjoUQWCitAyGfY,5886
27
+ letta_client/agents/groups/raw_client.py,sha256=mP85coe93PGAJZdYY7C9stRvJRpRBDeHmGr7EeTKMcA,7373
28
+ letta_client/agents/groups/types/__init__.py,sha256=N4vNWD8WPi0Nz6ZK5G6ciL8d0KA0Jndb-Hh4c7kHWxM,185
29
+ letta_client/agents/groups/types/groups_list_request_order.py,sha256=SZ3Cto7U-t-7KkMq10sRf4qYIjyPsqwTVi3PIdorRj0,161
22
30
  letta_client/agents/memory_variables/__init__.py,sha256=Xaqg0OCMuDp5WCtzrhHB9Q56VSJHijy3fI50nh7Fi1I,175
23
31
  letta_client/agents/memory_variables/client.py,sha256=VfK4O6mBEuA9mDb_sj5ed9e2NgHg8oLnQcIdxFMfNQ8,3281
24
32
  letta_client/agents/memory_variables/raw_client.py,sha256=lwWJQlKh4InQgrCH8iHPBwHweda7fxcNpXFWUhzg980,4887
25
33
  letta_client/agents/memory_variables/types/__init__.py,sha256=r_Wc0Jjyp1_Y2qC_eWsabWx1sTwoxAaV1s24y8Ep_Zg,200
26
34
  letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=iAXAqp-J0fnyUK4MMa3PMrYwqQfbui3tiaWaWR9_O5M,600
27
- letta_client/agents/messages/__init__.py,sha256=1UJXThKW_Vbv98KiOIuEpf7MN0C_rSQ8GU9dNuDtUbg,499
28
- letta_client/agents/messages/client.py,sha256=rrFcR2zCywui4P_825LDN4fjhbY9PxPDBbzYmrbrOsU,48221
29
- letta_client/agents/messages/raw_client.py,sha256=VaBHTasgaW4ENwEV3MWWwDZZklEdsc34RfYXNsXABPo,69814
30
- letta_client/agents/messages/types/__init__.py,sha256=I5PRGhIGEwWx8uCKhSJWv6XmiJS2koGBqRwsy4hQ__Y,692
35
+ letta_client/agents/messages/__init__.py,sha256=Okn3Cd1QQ7K3xUaMMqFp4eaMnJWNqGT8QPO_m-5rKTs,561
36
+ letta_client/agents/messages/client.py,sha256=AZdzI17vcKntrBePio1oU3-hP69psJ5O5VUN2YN56h0,50151
37
+ letta_client/agents/messages/raw_client.py,sha256=cNIzsS0HhW-9exUNixLc0DCRLfepyg7SXEdxCGi5P4E,70940
38
+ letta_client/agents/messages/types/__init__.py,sha256=qsm5NhteT7WqAgm_yFKCBI6jL5ES7ksj0K4SH4tb1tk,790
31
39
  letta_client/agents/messages/types/letta_async_request_messages_item.py,sha256=ENCLYOoBskZ23fPYAc5UKEa2CH9_k8UWWp-l-92PFIE,261
32
40
  letta_client/agents/messages/types/letta_streaming_response.py,sha256=iFM3SiYzMLSTzyZpxKZ0kUQdl3CcuVtiQZ5FzCCagQw,1098
33
41
  letta_client/agents/messages/types/message_search_request_search_mode.py,sha256=cL7pBQFMvHN3WWZ7qF0lL7JUIHmdyOGXG7_JLo_2vus,181
42
+ letta_client/agents/messages/types/messages_list_request_order.py,sha256=nHSEtZeZ-uQJ668U-p24AGw7MQzJXjaY7FVJh-RHUTo,163
34
43
  letta_client/agents/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
35
44
  letta_client/agents/messages/types/messages_modify_response.py,sha256=0nbkp7q7iaM2esLkdmIe0CYpJWY6LYtR3V-WkKaAy-g,871
36
45
  letta_client/agents/messages/types/messages_preview_request.py,sha256=eT0Rj6cbkvwg0cGJYQ8NRSOKOhiQQ3nrOo6mPYFMZ3o,273
37
46
  letta_client/agents/passages/__init__.py,sha256=wA0bocGcbmgb62sL9MEWpKzP_KBVv8KHhvc6vZH6MOE,187
38
- letta_client/agents/passages/client.py,sha256=x0Fj8BvukT4PDAsdqYiPLcoTVKWb7YSgi7Q8CX3m6Wc,17387
47
+ letta_client/agents/passages/client.py,sha256=onMRo2hWSqCugjzvgz6S_5oQGWuHzl_TsaPPNipJS8I,18342
39
48
  letta_client/agents/passages/raw_client.py,sha256=4oe8qXeXHM09ZwGJUtV0yh-WfaQ18q6oOlQ-aOGqKs8,26535
40
49
  letta_client/agents/passages/types/__init__.py,sha256=zA5psnkblMdGa_kOTKkqZmMPtryV1uGScnWFeI9fuu4,220
41
50
  letta_client/agents/passages/types/passages_search_request_tag_match_mode.py,sha256=cgAkixKi6VCJGFHUtjEzYdgq9KJcn5nrEMbR3zKp2rE,171
42
- letta_client/agents/raw_client.py,sha256=aonkdUngGHk-AWaTbX3pakFOfhUjUFA4hXG9YRXCbX0,90457
43
- letta_client/agents/sources/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
44
- letta_client/agents/sources/client.py,sha256=lCqB6FF9svrwf0oZSFs41WKlMXc-YRhUeb4FZkHbicM,6868
45
- letta_client/agents/sources/raw_client.py,sha256=ts4c5UBuXzrHU-lFWWrYniQqrMEc8SN0rfiqNXJLP5Y,12399
46
- letta_client/agents/templates/__init__.py,sha256=2q3anjPu2EGZtCTD8GFNFEImT4dIwQ8hUTeUfCP8ZZA,169
47
- letta_client/agents/templates/client.py,sha256=w5kJwuiMVL91pTgwUdPqDuKd_h50NIVagfIXOuwEArQ,8321
48
- letta_client/agents/templates/raw_client.py,sha256=31Octb_klpQJ61Kkv7Xvl3euF4oaSH0Yib5PbS42rys,10057
49
- letta_client/agents/templates/types/__init__.py,sha256=kalMrvEN0SnhXNKN1gMIVMp5MICLlEz1XK-ZksOatXQ,190
50
- letta_client/agents/templates/types/templates_migrate_response.py,sha256=hxcCvKw08iV7vaHFFm3ti9qlwDmiUtRl30A8DShu99Y,578
51
- letta_client/agents/tools/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
52
- letta_client/agents/tools/client.py,sha256=gQliJHx3wgNhu0Ig49HCXsBthoHANsTXNRnAvUoNqac,9128
53
- letta_client/agents/tools/raw_client.py,sha256=2LUc8u4f_0lXzCkYFp38ExLOIGyb-BTXDolK7MadJC8,16548
51
+ letta_client/agents/raw_client.py,sha256=YRvdHPGyenv8Y6C3kvV3WbT2VzTF5Eq8FG7HW_UtLNw,90513
52
+ letta_client/agents/sources/__init__.py,sha256=Jht9nKdcCU1xA9z6x-NcmlzgTOKdNAv5680ybkLABxI,167
53
+ letta_client/agents/sources/client.py,sha256=SjErtQQz35tqqgPAGMl6ooqKHadau71iah8xGetCLK8,9412
54
+ letta_client/agents/sources/raw_client.py,sha256=lqbTUZsekhdyt5PNuTMcIHp5qzi0X0gWd0rBU57oy64,14781
55
+ letta_client/agents/sources/types/__init__.py,sha256=vAVBpXrEONCMVqwYliZJg4bmYc9CkMpiW_n7PNN3sng,188
56
+ letta_client/agents/sources/types/sources_list_request_order.py,sha256=7l7JtBILWHVR3c0AgWiz81OfHFmoFrYVzWEE4Nl0vHA,162
57
+ letta_client/agents/tools/__init__.py,sha256=_6TieIBRwM0gpK_ewJklXsnezKK-Du196qg-iBS_ZPw,163
58
+ letta_client/agents/tools/client.py,sha256=k6lWoCvLcA_BvLd-vh2LzzSWEvqtsONb7ZTjhGten7c,11628
59
+ letta_client/agents/tools/raw_client.py,sha256=Is5gDWbgc7Ot68Ghv09bcppWUHz0cg23p6p-MmnUa6k,18886
60
+ letta_client/agents/tools/types/__init__.py,sha256=fkng1vVTlcCIQGRS-NSNewm_Zh5rYQAKP2AgzhK08vo,182
61
+ letta_client/agents/tools/types/tools_list_request_order.py,sha256=Gi0MwZ1KN1X3--U7NDEMQOQu1xvfJMdGIbCj5M0w8KM,160
54
62
  letta_client/agents/types/__init__.py,sha256=j3YDdgUE9-RqVyfl0ASjjPt2-snf0NJcmmToQ08hJJw,1820
55
63
  letta_client/agents/types/agents_list_request_order.py,sha256=9S8zaNW7IGqriSzxxogii5q-sJahOU49k1XWdgiNFDs,161
56
64
  letta_client/agents/types/agents_list_request_order_by.py,sha256=4yjI1xTcNR2DGkp5V44F6ywYvQWIc2wD0fuwkJPLP0w,185
@@ -68,15 +76,15 @@ letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=CUKSYO0
68
76
  letta_client/agents/types/update_agent_response_format.py,sha256=31HEHo0H99dzGPi4m3U0LAoGpWrzjEx_t4b72kVhBYI,403
69
77
  letta_client/agents/types/update_agent_tool_rules_item.py,sha256=H9sgZurQhGAIUvuFNNrcKldyDKCtGtHc9KyiOZugvxM,898
70
78
  letta_client/archives/__init__.py,sha256=oeLlmsfR-BeN3sZWzzBDkVNqMHnHHZ-7NMCTds0TAss,169
71
- letta_client/archives/client.py,sha256=G_lDudSMjMZxOSqmPz-Pz5hbw3mBX6VRSmapq2Ni-tU,9984
79
+ letta_client/archives/client.py,sha256=eWBP_3ZmVwf3tQA-5wpnxM3Wd-xiEEHqWnUvGtZAZ9E,10350
72
80
  letta_client/archives/raw_client.py,sha256=ns1xfSy2NgCQsb7ZG27uqvMXuNER1zH_zJSRXrV1Lw0,16213
73
81
  letta_client/archives/types/__init__.py,sha256=WLDqXavj_8_DZfDCMN9d1VMCcBN1CEnTvrlGYoyKoq0,191
74
82
  letta_client/archives/types/list_archives_request_order.py,sha256=wXt2nvtNvH_3eAoJr4Lmm9m1MjmhqFwPMjFxshJnWvs,163
75
- letta_client/base_client.py,sha256=MH8PsnyoQxHLZybrJYgMGWRXmPR46kwVLoMx5FXCzRY,10424
83
+ letta_client/base_client.py,sha256=ObhLDhwPN3AhT5H9-rl9KXKgE-NB59zosKBw_ViHhxs,10618
76
84
  letta_client/batches/__init__.py,sha256=f9cwHaBZXEiVcatlygF3DL8qRTljXHVYpFa3ewjGzBc,277
77
- letta_client/batches/client.py,sha256=7Qea1VSD1OseozfG3zdcIUkyB_0uQlg2MBPNN5mqWJk,13368
85
+ letta_client/batches/client.py,sha256=DrCPMI_H5Y_Pc_rOP4v38y40fQl8MVwQB7Rb3RGYr-I,13610
78
86
  letta_client/batches/messages/__init__.py,sha256=4Drz3WiTGJ6WVnWez4m6bLbjGw9ol_OtAGH0mx1a2ic,169
79
- letta_client/batches/messages/client.py,sha256=uTIzlK4jsC9hzOv9f2MrtEoA1erCQOJrrz9zken_jhA,5672
87
+ letta_client/batches/messages/client.py,sha256=sMQl8nAOZX2dzba821u_SM6e-ck9yzgpu7NQg0qxNI0,5962
80
88
  letta_client/batches/messages/raw_client.py,sha256=MiasEO1vlZj4ecKIJvj25x0zQkUjsFPaBGIm_kPsfgw,7467
81
89
  letta_client/batches/messages/types/__init__.py,sha256=bTPj8YbO4NGt7r_tFoTYFp2PpWmJmJ7yK3kajsNbCQU,191
82
90
  letta_client/batches/messages/types/messages_list_request_order.py,sha256=nHSEtZeZ-uQJ668U-p24AGw7MQzJXjaY7FVJh-RHUTo,163
@@ -85,17 +93,23 @@ letta_client/batches/types/__init__.py,sha256=bMTHA9WpKwCe6XtmBvsAiN6HFSKkwsL_pY
85
93
  letta_client/batches/types/batches_list_request_order.py,sha256=_59JtdasquLl5RNkiAFMBBU_7R_UhEZ1AIkvkb4dEeU,162
86
94
  letta_client/blocks/__init__.py,sha256=Oid1cjfcmcvWYWmLSCU4TJUIBjjKeRhVuzUuTWr1oVY,265
87
95
  letta_client/blocks/agents/__init__.py,sha256=_pRMp_tKKI9zNYSIedtCHO_CYWfHTtBj7kMoIS5dBt4,165
88
- letta_client/blocks/agents/client.py,sha256=PbLf_KMd2ZudYAGGa0mD8URb1d3RBdgvMTS5iuslx_w,6361
96
+ letta_client/blocks/agents/client.py,sha256=EUsOERa_BDZ0u8euupDFUmSp6LjAlPlosPlaOlGDQnU,6581
89
97
  letta_client/blocks/agents/raw_client.py,sha256=xGvzp26tYx21Od5NaseujcTA2G1uHWVjoqhj4irGiJA,8174
90
98
  letta_client/blocks/agents/types/__init__.py,sha256=Gs1UvTjWA7QHw4PcXtvu62Yxi_GRQ0oZV4Zphhdmgzg,185
91
99
  letta_client/blocks/agents/types/agents_list_request_order.py,sha256=9S8zaNW7IGqriSzxxogii5q-sJahOU49k1XWdgiNFDs,161
92
- letta_client/blocks/client.py,sha256=n5M0D2D8R_khD4vz1G9Eckcuis2CFTN8s__zq-DGQ28,29128
100
+ letta_client/blocks/client.py,sha256=KNmB0NPNmnejmdFSvbzzm3Y7yeGZfa3i6xSYV0oV2YQ,30178
93
101
  letta_client/blocks/raw_client.py,sha256=UPRvGzk6NpM5oePD7k46OYty06L-JMZHF-EA_IEVUFk,41699
94
102
  letta_client/blocks/types/__init__.py,sha256=u-p7C0I1cMIyuRwPWCCUexIFRzXX74TV51xz5fGXpy0,185
95
103
  letta_client/blocks/types/blocks_list_request_order.py,sha256=X45_ajG9sylW5kXCRK5zE42JXPj5IcoKsJNGzFSNSj8,161
104
+ letta_client/chat/__init__.py,sha256=Z_WCHvVZhLkIJsld1fmWagOH5yyO6w2NjY7XJAhMdPk,243
105
+ letta_client/chat/client.py,sha256=qb2hONTvWgtJdjonBVNVJZOl2oSZRxUkOF2mqoOsbWY,8098
106
+ letta_client/chat/raw_client.py,sha256=HiAqUmt7z2bHG5G5lwMKtf_LDIrcyLgWdkGbhA2-qZ4,10381
107
+ letta_client/chat/types/__init__.py,sha256=V8OCVx3h1v5gEO8dm4WsNr-IsC0LDNdABpjIVgAQd7I,316
108
+ letta_client/chat/types/chat_completion_request_messages_item.py,sha256=BmxxmnTiUOCGP450fG1OZajLp2rRBjtKSvZKyb-qeZY,919
109
+ letta_client/chat/types/chat_completion_request_stop.py,sha256=-znv6wKECPL0blRnNuqY89OPWu3CY-aCzLFCgUOZXiw,144
96
110
  letta_client/client.py,sha256=tW5VYkenZUTQ77Z9gyMWEswEYZpyO3jAaacFk5FfXos,24940
97
111
  letta_client/client_side_access_tokens/__init__.py,sha256=28nrPumub-n2rjse3XCDcwjN6gRZveEh-8CC1PQsdo8,1581
98
- letta_client/client_side_access_tokens/client.py,sha256=8JRdcMMSWVFpf6dd54tX7wSSBkjpejzveqiGGRddz40,11051
112
+ letta_client/client_side_access_tokens/client.py,sha256=Jb-51kBY4qmt3koKwnKrzS8OM_bmDu5aMQGV5bxeI0o,11243
99
113
  letta_client/client_side_access_tokens/raw_client.py,sha256=gAWVz0uHvtBMN4-D_MDBmIi1mMZm2M1yPtwUxvrUf24,17364
100
114
  letta_client/client_side_access_tokens/types/__init__.py,sha256=r_e6bAFIsYQ2dwKRu4u12GuNfnNDbLijyV_pH7JQdLI,2488
101
115
  letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item.py,sha256=J94q-aQU0VMVIo_JMm42VnCjyuPO-mSRJP4D6sxnyhs,859
@@ -111,7 +125,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
111
125
  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,sha256=kNHfEWFl7u71Pu8NPqutod0a2NXfvq8il05Hqm0iBB4,284
112
126
  letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
113
127
  letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
114
- letta_client/core/client_wrapper.py,sha256=i-EizOV4yRHgRDdmqXOKPxpjVXgx24lNW8QdXVSsp0s,2776
128
+ letta_client/core/client_wrapper.py,sha256=-JWXDwfs75LmcTe0riE1RWfPCxX0nZmF8Oj_kn2QIlo,2776
115
129
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
116
130
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
117
131
  letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -125,27 +139,28 @@ letta_client/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHg
125
139
  letta_client/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
126
140
  letta_client/core/unchecked_base_model.py,sha256=Mxeca_uJ9Wb2ccIsWtgIwhFQHlZC8GNuKWboPvQmgrE,12432
127
141
  letta_client/environment.py,sha256=91gYLF9bT4-hTPQ9dcPfmub4LgEl-T4a5kW7NXzRIJU,198
128
- letta_client/errors/__init__.py,sha256=NWf2c0wXT9KUeldiwUdQ7GphNKkpZseTXpC9PM1f64g,561
142
+ letta_client/errors/__init__.py,sha256=F-0ybYUB4SnwoqFa-MYHDV47b6k3MICv5SL0ySYwhFw,612
129
143
  letta_client/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
130
144
  letta_client/errors/conflict_error.py,sha256=BK2eJLfEz68tDCkXUSFzouX-Yu2hkLsjolj16EX-DCk,384
145
+ letta_client/errors/gone_error.py,sha256=OEv0Y4zHoLb3NC3awmLxjgeh55aurJCiUtSAaYmxIZk,332
131
146
  letta_client/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
132
147
  letta_client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy1UQUp2IOE8,336
133
148
  letta_client/errors/payment_required_error.py,sha256=ZlhahzJB5dgBbaBWsX5mRJaRigAgp5ET2hdUT51a5mo,413
134
149
  letta_client/errors/unprocessable_entity_error.py,sha256=aDgvUf-6k1fSUL-OxI3MgOIFQNssTUNpv5vW9M4vfRc,401
135
150
  letta_client/folders/__init__.py,sha256=9idGM5BWOrPGpmfU89_Oy1P-cLkhiIHhsTf9beNCEY8,477
136
151
  letta_client/folders/agents/__init__.py,sha256=_pRMp_tKKI9zNYSIedtCHO_CYWfHTtBj7kMoIS5dBt4,165
137
- letta_client/folders/agents/client.py,sha256=awuVoNZF6HU7kIBjw5sB22PD-yUSVF50HXG35Vwqt2U,5249
152
+ letta_client/folders/agents/client.py,sha256=DJHUiZUuWWlNg-lfEQZkB9itBU5BFM6zeXn4RNMPqUs,5469
138
153
  letta_client/folders/agents/raw_client.py,sha256=RWEiaBdaRJIVLbDjpbZgvLYopqf60YJH-_fO0m75Om0,7016
139
154
  letta_client/folders/agents/types/__init__.py,sha256=Gs1UvTjWA7QHw4PcXtvu62Yxi_GRQ0oZV4Zphhdmgzg,185
140
155
  letta_client/folders/agents/types/agents_list_request_order.py,sha256=9S8zaNW7IGqriSzxxogii5q-sJahOU49k1XWdgiNFDs,161
141
- letta_client/folders/client.py,sha256=wyRpmEA6HQ5lLwCLuHuW2Lm7OWtUx79kP83KlI1e0WE,24226
156
+ letta_client/folders/client.py,sha256=-fy89lBRvbEuX3lJN5JVCrEt9-r3FNdpVzUQt3uyC24,24658
142
157
  letta_client/folders/files/__init__.py,sha256=jysJfXF3Ikqu3WL6ZRR0vQeBxM7TBF7bS9U6tV3vmSE,163
143
- letta_client/folders/files/client.py,sha256=ADsUEVjyj6i5gLYqMB8WqkVrUuqsU3d1dgM5P3ceTPY,10552
158
+ letta_client/folders/files/client.py,sha256=CtoydKF9UCTax6QUWhJUErhxX7kR5Qe5NFF_6TbdQ-o,10980
144
159
  letta_client/folders/files/raw_client.py,sha256=D_y6WFQpbNBJDcRdJrq1Vnxdg9QJ4qZjWo-1fDrnU7I,16069
145
160
  letta_client/folders/files/types/__init__.py,sha256=jWh4M_19PGBGO2kiEk1azwzSXVsRtJWeXadsVmdljsM,182
146
161
  letta_client/folders/files/types/files_list_request_order.py,sha256=lGC2-_e0vGbTiPuGAejItytBjXSsd2sVpvwqzLMaJqw,160
147
162
  letta_client/folders/passages/__init__.py,sha256=WCsd7P4njQY2jmkdD5IMeQYrWjptkNx1QtckBPnhzGw,169
148
- letta_client/folders/passages/client.py,sha256=DQ6qDmvjeF_CXMAdMguesIQ2sx2b2mjdx1vJoFN3TVE,5350
163
+ letta_client/folders/passages/client.py,sha256=nI1wU9pSXpul4MwW9GegwIkjvtEyeU9TBgxzCL1BWWI,5570
149
164
  letta_client/folders/passages/raw_client.py,sha256=TI7_LPhQcvhVbBIOPPP3QoPflrCbt72FeqlCrKORTwE,7117
150
165
  letta_client/folders/passages/types/__init__.py,sha256=Y3T65f6OVfnOJ8EEVQ3YKk20gvT7InvUMdnOCXon_bI,191
151
166
  letta_client/folders/passages/types/passages_list_request_order.py,sha256=uIfkSz1b6uRUmB30IFbiszXxcYU66TId74F2V5cwphY,163
@@ -153,9 +168,9 @@ letta_client/folders/raw_client.py,sha256=1z-a9rTl_SOcsx_mcFqCWg0GpfYpxJFBK3Yh0G
153
168
  letta_client/folders/types/__init__.py,sha256=I8LsHI-yq-amHxFTZYfBE0c5PJzwqyYY0Aamv4zY7hs,188
154
169
  letta_client/folders/types/folders_list_request_order.py,sha256=8SHNoAOmo0kz_VGjc76u5LRXWfOaHRN5-hbXcF8rLw8,162
155
170
  letta_client/groups/__init__.py,sha256=scpn-EiUn86aIxK5F-UcejiNRXrP9tg_sk4vHK-jjk8,566
156
- letta_client/groups/client.py,sha256=6MF75gOzcO4Zs5sLOgOlWS9hGZ7lC2GqJTMIX8kg3tc,18507
171
+ letta_client/groups/client.py,sha256=wyq9Qdgq9D1-RTC3QGhYNLexWhbGsgPXYaTEd8r4_wY,18911
157
172
  letta_client/groups/messages/__init__.py,sha256=_fFgOv3dsynVaf4TxZlryMVmd9Ir3I8ZWahuTr1FZak,317
158
- letta_client/groups/messages/client.py,sha256=SW3kKlHeZEwQ_miztbWpehedLwjccwh6UMBKbpAgs5g,27150
173
+ letta_client/groups/messages/client.py,sha256=o1dZVUXK8w1z1uE8r5q8sLlDv4BVvm4dp8RZccMy4EY,27750
159
174
  letta_client/groups/messages/raw_client.py,sha256=VxwZ45yssJyQX5kcrHtvYg_WQ8Ipfn4XnOqXZ9IKN7I,39113
160
175
  letta_client/groups/messages/types/__init__.py,sha256=wziPv3om4xc_4zxLAm8V43Ck7k-LpvQO_lnP9FlY_4g,449
161
176
  letta_client/groups/messages/types/letta_streaming_response.py,sha256=IFJSwCiedThHyMYhK4CqLV01HqS8JZ1KZDs4V13Yc0w,666
@@ -172,75 +187,80 @@ letta_client/health/client.py,sha256=xZcZYP-qtxGmC9dk_qCgrmkcQ2r49JWaMKScKniu938
172
187
  letta_client/health/raw_client.py,sha256=0KVdq5wX1HxtTkQBU8Z8OKgYl2bcMjcUnVKuiX8dZJ0,3170
173
188
  letta_client/identities/__init__.py,sha256=o8zuUE-R9XxGBOnWP8vftfNkki6mIsK_wzunrw8hDU8,413
174
189
  letta_client/identities/agents/__init__.py,sha256=_pRMp_tKKI9zNYSIedtCHO_CYWfHTtBj7kMoIS5dBt4,165
175
- letta_client/identities/agents/client.py,sha256=NAO2Ts8nt9rGFKU83iJFzHP06f73eP7A7eqALjR3ZOE,5339
190
+ letta_client/identities/agents/client.py,sha256=-v5FMAYVTzaVF2AnwR3qtDF3GYNcKbgW6SA3T_vZ3ls,5559
176
191
  letta_client/identities/agents/raw_client.py,sha256=B5M5sMR9TrijlPWKOepdfBcnXpWqaQdJTuQDUhk5htQ,7126
177
192
  letta_client/identities/agents/types/__init__.py,sha256=Gs1UvTjWA7QHw4PcXtvu62Yxi_GRQ0oZV4Zphhdmgzg,185
178
193
  letta_client/identities/agents/types/agents_list_request_order.py,sha256=9S8zaNW7IGqriSzxxogii5q-sJahOU49k1XWdgiNFDs,161
179
194
  letta_client/identities/blocks/__init__.py,sha256=3VcniAvQZQ45JIyJRnYZPhNPH8aI_ORratv2Xx6ThLo,165
180
- letta_client/identities/blocks/client.py,sha256=iKgWESCxN2EfFX-Pql0Ax9el54cesuzDyIRpzSibzvA,5308
195
+ letta_client/identities/blocks/client.py,sha256=m17SUFzqPW5vYNgdL8sN8yQZv-K9Vw-j6KJlTlYvGp8,5528
181
196
  letta_client/identities/blocks/raw_client.py,sha256=3rIyiDbNllgm6DGjnHHLhVok0T5oXeA01y2P1wIzX2g,7075
182
197
  letta_client/identities/blocks/types/__init__.py,sha256=u-p7C0I1cMIyuRwPWCCUexIFRzXX74TV51xz5fGXpy0,185
183
198
  letta_client/identities/blocks/types/blocks_list_request_order.py,sha256=X45_ajG9sylW5kXCRK5zE42JXPj5IcoKsJNGzFSNSj8,161
184
- letta_client/identities/client.py,sha256=atW1MxGtyWA_VB0MYIpE9HNGraV-2Z5E49aO4ma2Ztw,25156
199
+ letta_client/identities/client.py,sha256=6glp8osgUutjjz_GNredUrF2q9jzOTcVjQzVTW61_U8,25694
185
200
  letta_client/identities/properties/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
186
201
  letta_client/identities/properties/client.py,sha256=MmveC0_hv_N1VD34OE-tlbjEzA2flmrx1O3b1axD3PE,3846
187
202
  letta_client/identities/properties/raw_client.py,sha256=3Ndb_1L_BoOEPq0nuVI0XkuCRDBISKgoUVLN4NCar-M,5964
188
203
  letta_client/identities/raw_client.py,sha256=H4Oir8TgWIuRTFZFjS0P95uBBTP_NJ_Ul-He8udNtws,39919
189
204
  letta_client/identities/types/__init__.py,sha256=OLxCqa6ln7CEVk6G6cSTAQSSZLetP_Dl7y9Z13dbLK4,197
190
205
  letta_client/identities/types/identities_list_request_order.py,sha256=L-M-TlzyR_fftABQWrFe9cwPxqYGY8nRdyjNBmD7hzg,165
191
- letta_client/jobs/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
192
- letta_client/jobs/client.py,sha256=n5iiUzPiI38t88Py9Z5Rp6iqurgqg82nOcg8fgZ3BkI,13261
193
- letta_client/jobs/raw_client.py,sha256=abtSfvUr9MSaqKSf7Pi8erepr5sDVdpiEyvw87A_p_4,22982
206
+ letta_client/jobs/__init__.py,sha256=Gntv7WIGiV5-97TPhcdQtabenrnWIcVjj0wPNN1HjqU,161
207
+ letta_client/jobs/client.py,sha256=MoRPfrUf2vtDaGX-sjP1KJhP6l3aqCfhvXdCdgcFN08,15359
208
+ letta_client/jobs/raw_client.py,sha256=4SCzmuXarrrnCgX6UQj3Yiy742Ye6_QtXYLTnecJC0k,24356
209
+ letta_client/jobs/types/__init__.py,sha256=b0mRE9cy5TmeDYCR0Q1lSFKMyeUQhUReQaFex2HTqv0,179
210
+ letta_client/jobs/types/jobs_list_request_order.py,sha256=coAZOr16GpkTT9HgoSoMDJ0BuNSKKyDpxAKZGkz6pRs,159
194
211
  letta_client/models/__init__.py,sha256=3YEKEqykt6YNfoEtsfbgB0hEHD1HbgGjLpRq1ffdnHc,136
195
- letta_client/models/client.py,sha256=nGk8B5u_sQ1RR0Jpz-rlawo6bEoarPnk5HnxZ7rTEtk,5856
212
+ letta_client/models/client.py,sha256=8nQwW-BVehY6HUtXk-YFmjpi6moyAIhjpohe74z1QXc,6050
196
213
  letta_client/models/embeddings/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
197
214
  letta_client/models/embeddings/client.py,sha256=K74KYpKP5xf3fvZwPIkQZziTEBDdLYzrargdWjwdYno,2953
198
215
  letta_client/models/embeddings/raw_client.py,sha256=uaiZwN8MkiBXWj60IaqS1-LoTokIlJ9NWNDMPPTfBRM,4692
199
216
  letta_client/models/raw_client.py,sha256=0AryEdljqcaSwNYQbZ8Q7ieDLuu2Cuk8Z1bdXaKA-VA,7945
200
217
  letta_client/projects/__init__.py,sha256=IC61JeyeW7qLtLPtPDy_5kemZCKNeiVEz2TndPEz4GU,231
201
- letta_client/projects/client.py,sha256=2VojFHMlsyQgDxQer6RndPw5W0l-yXX7WBy7TMhO5AA,3336
218
+ letta_client/projects/client.py,sha256=M0dQO8WVCqI-EQVPYAS_m4AV4q_TGSPTVEraW9QBty8,3532
202
219
  letta_client/projects/raw_client.py,sha256=HhRNyG5FT8810HOaW9lQI2qbG2ZmPyaC7hMMNjYXmC4,4155
203
220
  letta_client/projects/types/__init__.py,sha256=o_1s2iqf5SY1ojqTeewCt6c7sxrn6gzkaZJEl8RdMDY,297
204
221
  letta_client/projects/types/projects_list_response.py,sha256=WJ_LHfEujdpeFL6wM3RP1uYgsAAwFK03-rEwmr3UU1w,859
205
222
  letta_client/projects/types/projects_list_response_projects_item.py,sha256=VyG_OR4KlZIA3mgd7FCFk1kSM7NxAi3MNBzAgDrUddo,606
206
223
  letta_client/providers/__init__.py,sha256=1uFjKmB6xuKqbx76R6dp9oLaWAuyWV7LBpwUdKbvgm4,171
207
- letta_client/providers/client.py,sha256=D8TWfSspNPDaVK8BCsZs6TbHsUTybJGrJAfOhDl1f3U,21293
208
- letta_client/providers/raw_client.py,sha256=bDvq1jtEUeiNRshKbjvElLrxuIQ11PwzbEGpdP86U2o,33993
224
+ letta_client/providers/client.py,sha256=PtN2AA8jU7gem5s5tY9DU78LGPDYb6W6828X-O2x1VY,23697
225
+ letta_client/providers/raw_client.py,sha256=ozTUCGRhKOUs14pvx81Zt6gm3nqMRMJ-CF8MnDG6HKw,38213
209
226
  letta_client/providers/types/__init__.py,sha256=jVDiT7mqApU4Q2VZxWEhbljTDDdKn_0Irh_ewrsoEcA,194
210
227
  letta_client/providers/types/providers_list_request_order.py,sha256=gKYmSfL5MoQ5bI3wHkN7Ax8SDN-Niyfk4yhOFwhmiqg,164
211
228
  letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
- letta_client/runs/__init__.py,sha256=QD9MFbOrf_jxsxTQMFJc3TNxL_VMPnPLa_30UAr0GEk,307
213
- letta_client/runs/client.py,sha256=S6G4NDz3xHZZ-GtgMeRMYpZGtzDhWF1YfLq5o2VpF7Q,16466
229
+ letta_client/runs/__init__.py,sha256=WiowK5AnWzVik5I0k-oCtoEUOOlnnqBvUUNPCmXvt8o,450
230
+ letta_client/runs/client.py,sha256=7Q-nI-fsTADuJLDXLZ-_Ldoj-cFi4tB_Qgb1_2pZFJM,20931
214
231
  letta_client/runs/messages/__init__.py,sha256=4Drz3WiTGJ6WVnWez4m6bLbjGw9ol_OtAGH0mx1a2ic,169
215
- letta_client/runs/messages/client.py,sha256=u0ipd-pFDnw1VKSOFw4CDeVZ7bkXTNJtVAgzaDV2jso,4850
216
- letta_client/runs/messages/raw_client.py,sha256=XZG7G9qbXj8cWZq0wil5ZVNTzgFZd5E8NaWIjnvgxm4,6777
232
+ letta_client/runs/messages/client.py,sha256=bMglFAakRZ2ZhI-5BCmRb_S4SGMNHUcg9VIqqcKA7J8,5588
233
+ letta_client/runs/messages/raw_client.py,sha256=bR1iK4OaKXAAmGgg2f7OdaQMXWZOfI2MUvC-ZExehok,7187
217
234
  letta_client/runs/messages/types/__init__.py,sha256=bTPj8YbO4NGt7r_tFoTYFp2PpWmJmJ7yK3kajsNbCQU,191
218
235
  letta_client/runs/messages/types/messages_list_request_order.py,sha256=nHSEtZeZ-uQJ668U-p24AGw7MQzJXjaY7FVJh-RHUTo,163
219
- letta_client/runs/raw_client.py,sha256=Qv473j6VMgD9rwxIu_kp278h47OiENVtL8MPLlRttC8,27918
220
- letta_client/runs/steps/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
221
- letta_client/runs/steps/client.py,sha256=4MiWOwmSiIX-0U_ic5a-x72Svjh2N7q6etXA5VJ9V30,6074
222
- letta_client/runs/steps/raw_client.py,sha256=dbM7QYusDn_u4UYZl0I_jK-hCOek_m525we6boGo8jA,7973
223
- letta_client/runs/types/__init__.py,sha256=_T3fEaCnP6BEwVQKFUrBv8iIjFqUrd-DF3hQFwjSb6Y,184
236
+ letta_client/runs/raw_client.py,sha256=_x4z4EGQlBMZPcaPMi0E4ezOAfIBRAMM3k0lkSCrnfI,33584
237
+ letta_client/runs/steps/__init__.py,sha256=Hq3IkBFkBMHw7J4IIORJE30FojhZMCOmebsSu2lsGog,163
238
+ letta_client/runs/steps/client.py,sha256=owD7Xph6L8W4i2Otwh1YS2F_Yo1ioNJPtNUWdgQLJC4,5112
239
+ letta_client/runs/steps/raw_client.py,sha256=UrM5QaUHSEKWK9-4Ezd6UjX5OuHd6wdTtE3gSZbC5DU,6683
240
+ letta_client/runs/steps/types/__init__.py,sha256=t5gKLcWsk9CyWIQMLX68hd_M6jdTpey8xM-c6sCwiXE,182
241
+ letta_client/runs/steps/types/steps_list_request_order.py,sha256=9jYRk92NLRlFR6ZspHCUGXqZ3Z7Elc5L61QEwvRsNt8,160
242
+ letta_client/runs/types/__init__.py,sha256=8fV1JkRxlw7_6lKCW6aoH4d_1Brt34obghlqthw9oH8,266
224
243
  letta_client/runs/types/letta_streaming_response.py,sha256=-jpHj43Ju6USMtwhxl2nZWWK_GBOk7af0I1alOFOFTw,1086
244
+ letta_client/runs/types/runs_list_request_order.py,sha256=iKxMUb5QJbc-hKjQKHRKTEft5d8-HZ590-FbmZhnyN4,159
225
245
  letta_client/runs/usage/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
226
246
  letta_client/runs/usage/client.py,sha256=pTs7XvHjETe7lbSWjgy1GdLzS03j9VWHrY3TULhlcVM,2919
227
247
  letta_client/runs/usage/raw_client.py,sha256=cNOsh9fT6MifL9Nh7sEpuNo6LmU0C0AfRv-K2HWPLFo,4628
228
248
  letta_client/sources/__init__.py,sha256=Y43-19f7EppL3LmM4hO5LtqT2CRaDJb0LAfnHurqYxU,148
229
- letta_client/sources/client.py,sha256=A_wBPqj8kkQ5RPeeJljvj8lQ9-HuDogNG6t3DJUnHWk,25755
249
+ letta_client/sources/client.py,sha256=Gn8YBVgxrdTxn4pmgGh3-p3meILlgDY3Vy6GuoDZ9QY,25963
230
250
  letta_client/sources/files/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
231
- letta_client/sources/files/client.py,sha256=vicwwYIuRJeCzjNUeYGx9Qs3OsrSIWs8TU3iCGyQYIw,9716
251
+ letta_client/sources/files/client.py,sha256=Klpy2PFxtlAVN04NNWAwTWWHKxga0gULwiNBh_ytjMU,10110
232
252
  letta_client/sources/files/raw_client.py,sha256=7_ZU-U2rf9I0lwc0MLCV-K8zXNGbfBdYbnCvCUvd9sw,15205
233
253
  letta_client/sources/passages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
234
- letta_client/sources/passages/client.py,sha256=6wo3iTfQcDLvmS-TaoX6wUXZ31t1l3VAdoIoJwEVVFY,4064
254
+ letta_client/sources/passages/client.py,sha256=7zfjeanWbDakK0bw8AVXot0nJA1nfzbFDEDQlAlzMGE,4230
235
255
  letta_client/sources/passages/raw_client.py,sha256=iPIHJs_pmSsbyu5vBFuQdopymxlfQDkEKN4cs4YKVB8,5901
236
256
  letta_client/sources/raw_client.py,sha256=6fyI0Y_agaebPZ_lOykNf1TybmRU-09vfrYEVgyGsz0,46078
237
257
  letta_client/steps/__init__.py,sha256=iDRZI5Cb9sPQk_QqJwWaR9VR0VkMTqsCrqwep4gsyjI,474
238
- letta_client/steps/client.py,sha256=iIY6-MCvlSriGKonyhRLK04UZNYlP01pchGMC6vrwyQ,10919
258
+ letta_client/steps/client.py,sha256=ryS3B6xs_PoRbTQnbBrLkjvXb2yMVdGXZZkqazqooSw,11651
239
259
  letta_client/steps/feedback/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
240
260
  letta_client/steps/feedback/client.py,sha256=Ut3XlU1k2eEUohxHlvrm19_J9uA2gPXDTFZU7JB-y40,3829
241
261
  letta_client/steps/feedback/raw_client.py,sha256=49lz6PrsoqaMdbMEyKQ7yUWSI0VuMIyoYZ9eU3BYu3I,5810
242
262
  letta_client/steps/messages/__init__.py,sha256=RvL9e3yglxUk-wD_wi2PcWUfxyy6ebyi2KcIU1ibwQo,223
243
- letta_client/steps/messages/client.py,sha256=7W4zdnB4MhkbFmKYkG1kB5kOM8ux_ltPmX08-USNZnk,5389
263
+ letta_client/steps/messages/client.py,sha256=Hqr8QA61gqBJzLYGzkxYw2ODjb21S_TMfjC9-DUDj7k,5609
244
264
  letta_client/steps/messages/raw_client.py,sha256=kyGDnfzVWaEkabidATthqUC965Iqzac3AEPpTiNlHvQ,7232
245
265
  letta_client/steps/messages/types/__init__.py,sha256=R4r0HRa0-y21Dy_vG_7uW8fIPsw3W_UDBAopdmKZdLw,285
246
266
  letta_client/steps/messages/types/messages_list_request_order.py,sha256=nHSEtZeZ-uQJ668U-p24AGw7MQzJXjaY7FVJh-RHUTo,163
@@ -256,20 +276,20 @@ letta_client/steps/types/__init__.py,sha256=SbehLSkyHG4A8ZHo8uJg7zPY8Nav-7Tjc-pP
256
276
  letta_client/steps/types/steps_list_request_feedback.py,sha256=Au1YSn3UYRc_b4yxUT6hFqru4iJ-SX-_Ndb3PwCYGp8,172
257
277
  letta_client/steps/types/steps_list_request_order.py,sha256=9jYRk92NLRlFR6ZspHCUGXqZ3Z7Elc5L61QEwvRsNt8,160
258
278
  letta_client/tags/__init__.py,sha256=dzMMI8kyZhD2KMbnRVCu2gAzl9PDfzGjE_f-CCMbDCo,161
259
- letta_client/tags/client.py,sha256=85Sju_h-9QMkUCyfUe-UH_JYLCrOBZm2PAioSIGO08E,5561
279
+ letta_client/tags/client.py,sha256=VtnPZl8KhyBM-SFY_STJfQjqIO_jr6EK83vjSrocZtc,5935
260
280
  letta_client/tags/raw_client.py,sha256=igdmLrS1k9tx8AZVR-qT8Qx0iJ3rGM1PL-McQ0mDwQc,7395
261
281
  letta_client/tags/types/__init__.py,sha256=qkGMDplFMODW9xihZMi3KB_ajOM8L5WgVLSsfwgLrzs,179
262
282
  letta_client/tags/types/tags_list_request_order.py,sha256=RljEzb45C7Fy48a8MfalsWldABPvgQ9hoOSnXTYEzOc,159
263
283
  letta_client/telemetry/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
264
284
  letta_client/telemetry/client.py,sha256=w2oL-0A2U_CW8TKxVWwtg2vbEJRJpGuVLsdbAAHDvBA,3266
265
285
  letta_client/telemetry/raw_client.py,sha256=TmsC0K_3xSVANtQLtx8IRkmjk0x7YVopXI-uNG4pQek,5186
266
- letta_client/templates/__init__.py,sha256=y5q1VW_IQe--Z1odJtRRvMLWNMLZxTPEOD7m9j_fMC8,79128
286
+ letta_client/templates/__init__.py,sha256=scdNGGtLd8QRcY-p759kiW_FzzBfSUHB6h3FekAZl5U,84328
267
287
  letta_client/templates/agents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
268
288
  letta_client/templates/agents/client.py,sha256=Nk_5b_IoEvx358GyCNH3wDdRP-IgOhgRAspXuBHflMY,2957
269
289
  letta_client/templates/agents/raw_client.py,sha256=s3RRlfd5J4MGSWTPWV9nmLTLH84_5r1C5lUJSg8bgU8,2939
270
- letta_client/templates/client.py,sha256=IX-DjrxHhFyxIUI9hU8C3KFIzDPLMo7djtvqOOd5cng,44982
271
- letta_client/templates/raw_client.py,sha256=-o6o-xJneEknrjgWUEs7V9BNBMqM0o-7fE4kTQIB5Ug,75669
272
- letta_client/templates/types/__init__.py,sha256=VpP3ISGQtpWxzX8IP4hb2_u1qeMc7mvSgEVyATD1RzA,129210
290
+ letta_client/templates/client.py,sha256=pL_Pm8Y8xv0EFEWs_30LxTxYFmba5BdX1_GL6iz7xAk,50335
291
+ letta_client/templates/raw_client.py,sha256=893nUXqoddpHQQVcjkK17z2_EMywVIvWprZVo-e2RW4,84179
292
+ letta_client/templates/types/__init__.py,sha256=OD-okv2JZ_suk7eiDMo78Dk7vVvcGrniZ2RKYrjdOjo,137725
273
293
  letta_client/templates/types/templates_create_agents_from_template_request_initial_message_sequence_item.py,sha256=yazAI09lTYn8i0UbuSVH8xgU35rUOQsvi3vpO3gPgg0,1080
274
294
  letta_client/templates/types/templates_create_agents_from_template_request_initial_message_sequence_item_role.py,sha256=IJY6sF_KsFt-e7SMT5rUdADELLz6gOCVZpBoG0ccdlw,231
275
295
  letta_client/templates/types/templates_create_agents_from_template_response.py,sha256=S7SrVa6cfj30adzw-VpeCJlm4-ch-q4SHMJgz2JmDtM,1152
@@ -313,9 +333,11 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
313
333
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_last_run_duration_ms_item.py,sha256=dRMDuz49oOFDcKzO5AiXr6USPuLf0mSd3XV1dJQrfPE,197
314
334
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_last_updated_by_id.py,sha256=sUhcASCjeCwkL2Q3G95TEcmv_dfwTPVmIicvkOPOiqI,516
315
335
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_last_updated_by_id_item.py,sha256=uwyL9iG8JbHsNyYezk2IRlA0tjWWA7AaVAgqHhq-C7w,193
316
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py,sha256=tv2a3OQ75c7rRWptJyzxAvv4MGEKD4-OpbfQVdtMCxY,5507
336
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py,sha256=S07vV3aykdccsHc3f3monFGz_w_kUmryn0dNu6apnzo,5798
317
337
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_compatibility_type.py,sha256=qy94r_FWEHISUhYVBzLMbxDZQ5IUc-HC6dhAUiSFpiw,606
318
338
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_compatibility_type_item.py,sha256=qA2A9n-rk_qw64Gl_vhcSTC6CBVAeCQpcuEqattgOX8,252
339
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name.py,sha256=hUBX5augKOletwAe_1syUhjasXTYXDkgNF3tr_bPx-Y,536
340
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name_item.py,sha256=GSX_-TCRpj7UOyVfw1AeXrFjbXOPyZF3aSPaxYIKSeE,198
319
341
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_enable_reasoner.py,sha256=wGjTVs7GYwlGKK-gM1XxpiECjiXj7tQQux-OcPO7kt0,211
320
342
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_frequency_penalty.py,sha256=cD4SJNXgqTgX_ovs326jqGHGXUVyhXJ2EWn2fITjT7A,558
321
343
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_frequency_penalty_item.py,sha256=KWNWPHVwnq8mFEd14TFiiOXhE8Be0e00N5tVFYwf9Ek,211
@@ -489,7 +511,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
489
511
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_response_format_type.py,sha256=ClsUWHdUHCepq007ajgp9AItSbzhpaUmGaibouZ7SAY,641
490
512
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_response_format_zero.py,sha256=Lk9z4t8OC_evmND_yrLp1YsOgFcgZbfDN9L0o9NX1N8,641
491
513
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets.py,sha256=LGwNaaqTcdwoOb9nmN-aJgq4VxG9e0_TqsZW2kkDEVo,424
492
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item.py,sha256=GnypzwIAfYy7iC8aS5xqQV7f_ifcF1Y3v4mD4vbdqzQ,2729
514
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item.py,sha256=xDItnRioRe3GeRcvMAiWVmAdH6AVuWfUKaEzbONl-xc,3014
493
515
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_created_at.py,sha256=b_eK5KB7IEEP8jbOtE0S0AUernr1d74YxEvCW2rNRHo,536
494
516
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_created_at_item.py,sha256=Sh4HyTqPZpNxVBZivqBpZbR1teaI6ITUMD7FoDK_KF4,198
495
517
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_created_by_id.py,sha256=psJK2XSW4ypF770ZWeK1643WinDk7aXUQ_Qs6kynzME,545
@@ -503,6 +525,8 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
503
525
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_organization_id_item.py,sha256=H9tzYsudJBMxVvdFIuzU9-07dIA5JGLZGYdEWK2n0O0,209
504
526
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_updated_at.py,sha256=GHaB7wkKv6E498XtxKRMAQmWLJkEklEoTqpcKVnYIzI,536
505
527
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_updated_at_item.py,sha256=GmRusfyQbYeVp9LwspZzQjVZ9R66aHHuQ-KtDSLBqnA,198
528
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_value_enc.py,sha256=ilLra1_z-KryslFOQ0WIb5lshxuxyTaPzH8jTm0v7k0,532
529
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_value_enc_item.py,sha256=PkIyyMTb6NZBbl-TqonrI1opm_Y_kRuZdCmC6ZjyQeI,197
506
530
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_sources_item.py,sha256=ahdR7MkrNiTHe57AMiOCE_DJ9OP2dlu1T3FtbDA3ff8,3901
507
531
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_sources_item_created_at.py,sha256=DNqw61KsiyRh6nZCqQrp9z1GeCPN6a9fdB-KpzAhWeU,536
508
532
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_sources_item_created_at_item.py,sha256=-8S1sSNv9Flh4zxdEiScxUHlHShqRK0xpyLDRHzcwL0,198
@@ -542,7 +566,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
542
566
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_timezone.py,sha256=sTRHvpr5ibRUlTH_VH_D2AKsTaHLdFbO1WCEELQh9bE,485
543
567
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_timezone_item.py,sha256=6bKsyy2bI8EevufQqLD-dwU2y4eFfh0G2IX7AJt-8Cw,186
544
568
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables.py,sha256=YjLhJdA2zUPvlxvmOfHfvHvarIsUEccAtz4_Zu9t-7w,516
545
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item.py,sha256=19jdau4WIub5NwpREzvud5AT74RMwMWG3x5IemFTDLc,3266
569
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item.py,sha256=1u5vpc8GowzT8zTV7dFSSOb0k-WOXJV-mLTFtOdgjfM,3631
546
570
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_created_at.py,sha256=dlHxt3qsjZfQPrTeAgz-CknJBc59U2dZjiREkms7UHI,659
547
571
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_created_at_item.py,sha256=-QYZjeKmvZL-5qFmfJD-FaL4R3idd2sKIFKsyHtmfig,225
548
572
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_created_by_id.py,sha256=w6z_s1ifaZxvBRkwhf99vwv24MH8ZiKCtgWXkoFNiAM,668
@@ -556,8 +580,27 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
556
580
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_organization_id_item.py,sha256=xcom8ItM5WERQzfa86Ac5G3beSBAqqKd5h9TR1uLlTI,230
557
581
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_updated_at.py,sha256=XEPF_69QfcFzOqpuxHMQuxxGuq3VTlUi_tK_M74MJS0,659
558
582
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_updated_at_item.py,sha256=2QkHoRy6NucbY1VGkHUFcwQNHY5oATdddxKeftyWWfw,225
583
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_value_enc.py,sha256=-qnR1Aei7jNp-laqvl-18UFM4PGbCK9M96suj8MKNkg,633
584
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_value_enc_item.py,sha256=xdB7Pr7K8uj26P-wzK2P1EBnJCypF61_7OHm7G2lmk4,224
559
585
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules.py,sha256=ShGoW-JBqosBuL8YrJlTVuoH8joUf3f1IcT_bam11Lk,564
560
586
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item.py,sha256=iCLR-SDmOePHjI7lQEXc78EqusGwh7-OAvJAt9GO9v8,443
587
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args.py,sha256=03SXAokrieQIeDajWuYJt7E2tOr2kqMgMc37xooi7YI,1538
588
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args_args.py,sha256=6h9a__HLRPOJ3CbYUf74nZUWdP2lHtql8EdkqKRyBi0,532
589
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args_args_item.py,sha256=4iAuBIpUhpce6KNXnIc1yuPv0r9Fdu7S-Ye-4K1QV_4,229
590
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args_prompt_template.py,sha256=O_okj8OOz02lfuFgiwNdu3cyXbi8JG7uqCHmZEvgsGs,596
591
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args_prompt_template_item.py,sha256=k9Z2J04dVM_Oouj0LorBs4zCE2pA0wu3b37V54FS16A,215
592
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args_type.py,sha256=qomCPpXqux2tTaICPB5NFvK9VQ_hd47mcUGTtcjr94w,208
593
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes.py,sha256=EswR1zNynOROkMlqyyoR_NhUWAX_BqxhNL6eKHHjQfM,1719
594
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes.py,sha256=-QFWvW5d_rVYkoa1gJQA23XZrlDMMHHMfjFpvTRcPiw,735
595
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item.py,sha256=2Kiwfg1m86qc_AIyovvPtRziwwfnxQ6LrnCmwxb8_Wg,575
596
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_args.py,sha256=0h5BbTES9MlIFLiU3pe1BQvGGyGpDfGA_lSzfBmlLwc,678
597
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_args_item.py,sha256=NSS5jZ5qgqSkcKwhM1h3AT4g5IfA2a2sftPqD9PMd1A,255
598
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_item.py,sha256=NtzQ1NuHL9s5dq2Zo8vmDFbuU7nwGDbGQ3Y5z9SyIYY,1050
599
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_item_args.py,sha256=dTH7Og5uejyiG4JkIvIPPPmTnbEv8gmg7rNLZV4_0Oo,695
600
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item_item_args_item.py,sha256=XEiyZY_Y5Az5XDAW9dNu1M5ruKecvmbGoJs_9E25eBc,261
601
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_prompt_template.py,sha256=h9q07v7yuXkHPySS-VIFIBanagvn0dMVBwLlATHj2mo,634
602
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_prompt_template_item.py,sha256=B92swzPzGLw7EYJRg0UGqf0MPDQul5b02XataHzX5U8,224
603
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_arg_nodes_type.py,sha256=WNrpEjo8pgtAghKyljzMA1FeN4XukYLVoSjFoJus5aA,217
561
604
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_output_mapping.py,sha256=yhfMuVkcqbDTFInhuRoNHCGcHqQuezbQsltMVDBhJh4,2223
562
605
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_output_mapping_default_child.py,sha256=CUbDvroR9_-f89BUFRVRfESAYfAvM_xsk318Sk0yPPI,668
563
606
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_child_output_mapping_default_child_item.py,sha256=ACRR5EZsouAMGP_VxRLPSpti72AA4N3MlpTNipjuKxY,227
@@ -573,7 +616,24 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
573
616
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_four_prompt_template.py,sha256=UJbfKlJH7-rwtitySXhv0inpp0r3BaC_NPERizBbIxE,596
574
617
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_four_prompt_template_item.py,sha256=NJxwgltuaGmb-rQ67QNJweYm4DSCHvVmOzXm7c3okx8,215
575
618
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_four_type.py,sha256=QYsub7JbYPX2dQovHg3ncuvMhSRAbBEmW70htjgISLo,208
576
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item.py,sha256=dXyRyyFqn-ONzvRVvX1-B_vHORk3cxeZ2yO9l5efqRI,2591
619
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item.py,sha256=NaT3IBkG4cjAiI2DN1XMPP6xHQLmcXX-gEYSNlrSpns,2623
620
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args.py,sha256=zPKPikIw5prghBojWMRjSSGxoX02Duow0ujITph4wec,1581
621
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_args.py,sha256=HdfT1WtR2-lH-ptbu3RsggktSEnSAZ5FxYZ7izeQ9bU,549
622
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_args_item.py,sha256=Bo0oIGP4Sg2kA-aZG5DEojWXrtQpBdpmjTBI4xJwOP4,233
623
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_prompt_template.py,sha256=PbFqp2Ryzi-XBvKfa6EoWDl8piXdbedtjoqqSo1fsWw,613
624
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_prompt_template_item.py,sha256=y_CqvvAlHQL1Iu23psleJ7G1CBceLLrH4Jwevv0zaTM,219
625
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_args_type.py,sha256=uaJypWVSC01noC_cyTvnDaveZ-6zwzIcPM9dEgEDKCg,212
626
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes.py,sha256=7LxiVL8tyznu3Q4jBO6hj_RZm3jvv2adxGLKnfkGgfg,1762
627
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes.py,sha256=2oTqiqqx9xCXisf_uFCAn1-rb8yZVijKsz58MsV1oIs,778
628
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item.py,sha256=GPahj5AhD3BzQRes9z--RH3SML0iCvoX2rus-Gr3UpU,592
629
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_args.py,sha256=s1E2-q9TqZdSF3cAiuIesHMMLd7QXJJyqUEuW8GB0eY,695
630
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_args_item.py,sha256=I016z7AxQGCslhK_ZGr2EK8YBGvb9JSuU1UAd-hDRoQ,261
631
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_item.py,sha256=zGHvAT-2Ex9rPtCofCxGMAicF3woauIyPZKiAiWjG3c,1067
632
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_item_args.py,sha256=lbsPWAH4j7UMIzXJ6pEGo9o8BajO-r1JqehimxCe5kA,712
633
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_child_arg_nodes_item_item_args_item.py,sha256=SoLyCH1s1-xlSapFQADubu8e3ok6D1w1Y7-9Y0Tulcs,265
634
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_prompt_template.py,sha256=ypou_qXE0jzMIw_bxZyuDX1AAMYPJ0HUcO96X1j5iCU,673
635
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_prompt_template_item.py,sha256=He7tLJrczKxgNNvgVCB5Adx3PnlCf4PLMrC6PYjnKTc,228
636
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_arg_nodes_type.py,sha256=aQsCNlEKSi5YJWUE63Cgm07L8sJJMvUT5F18h3SUwv4,221
577
637
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_output_mapping.py,sha256=XFEV_ndtmFZ9wxcwfxKmHhfJRLZaj5RXvoHtVFCm0lA,2293
578
638
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_output_mapping_default_child.py,sha256=lPyLbiRahBzEtjqAJL2qte9hNNgrFH4uj748s_mccbg,685
579
639
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_child_output_mapping_default_child_item.py,sha256=ZyD-gQriEadOHebmYdbC6OJh9Pl970529WsqAY0dRlc,231
@@ -593,10 +653,6 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
593
653
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_max_count_limit_prompt_template.py,sha256=WZCJkw-ev_3jRw6Kab7OCqHj4-uCxVcGfMQWSHeVZ0A,673
594
654
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_max_count_limit_prompt_template_item.py,sha256=bCiEtYvAVzId1ZukgU00ZHBR2cBoUc7IEyEGXx0cTSM,228
595
655
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_max_count_limit_type.py,sha256=RhnY7znwZnVlHKjhj-1E8dvMQGtk_aiSDcDmvox-8Fk,221
596
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one.py,sha256=pxN24XRAjWgy3CeHOhQTYq6uOxYqQX5ICG3mKzstETA,1274
597
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one_prompt_template.py,sha256=BVX60U5tYr5ASQ7UCrP_jdhfcyOWiHIg_BT0eyhtyKg,609
598
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one_prompt_template_item.py,sha256=VzovJXFKxsC_V9RbqGlHiQySFnPNUczgnqHEXWXk6Sc,218
599
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_one_type.py,sha256=7BPi3bta8bv-_GCENf3l5ZSw8QZgIQj9JmoOZS4S4gg,211
600
656
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_prompt_template.py,sha256=9YRuVFSF-6adHLvb8gIiGQtRE1JEcksepcDI9V9bano,1353
601
657
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_prompt_template_prompt_template.py,sha256=00ILZTGpBHkSlLH7l7l_iGUtCqBANEsm5w5D73S0kc0,676
602
658
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_prompt_template_prompt_template_item.py,sha256=Qfm1ox0D9FbuwvgZz2MSvtIhHIrWr6F2OFln2q-H27M,229
@@ -609,18 +665,10 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
609
665
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_two_prompt_template.py,sha256=TjQ0w6U7BTSSBXHkCsr3yZ-dOZAcaZ868DyqQ7zwpPM,609
610
666
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_two_prompt_template_item.py,sha256=gMsVJmwgmiwQFmSHCvrkaBOPG0uFtv2ybT4BswhEArQ,218
611
667
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_two_type.py,sha256=dMW7YM-6Yg4zBhCDxksc1Uc51ikCPQi0zNgM0q2mBKQ,211
612
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero.py,sha256=61fc3rIXUNuybPcNyod8s5MpEkik3QW3ti6w8h6VT88,1312
613
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero_prompt_template.py,sha256=u7CCKc2bI2KigbGG-ognfdll4S8NGrZNqWKZiNj2EmM,613
614
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero_prompt_template_item.py,sha256=RinUyCq8-aMneVQ2HxXwaRofZfZjcSoKccb4ztsJu3w,219
615
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_item_zero_type.py,sha256=RbewFKtrHomPQqkYDTGDeYiEuOV_mtFGk25AJe7NQuk,212
616
668
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_max_count_limit.py,sha256=nrw4qM0iiwNqAz343kVVQ7OskXJYycntxgqdRAPEBVY,1345
617
669
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_max_count_limit_prompt_template.py,sha256=P4nH83r42VJMXHu8x1yWh9jCVBeKAGX2I1ZKsc1tdyc,634
618
670
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_max_count_limit_prompt_template_item.py,sha256=dva_k6Sgzt-dRld-VuaOFBBFaNNLoOow8KzUUKFA6KU,224
619
671
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_max_count_limit_type.py,sha256=XzsYSlpJ37SkhZVxIFjqZtk9r6RoJYs2agoTZekwETI,217
620
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_one.py,sha256=L8UOxQLsn8j0wEparQV7cfOdA6tbL91k6t6dxQTVgs8,1244
621
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_one_prompt_template.py,sha256=1MLo81pd7pF1zV4aOGcSf_v58Fey1JSRzd88GK7a1ww,578
622
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_one_prompt_template_item.py,sha256=i5oNhAp2pKGGc2FezD-olK6IBvYicepcTJHR1JPc-3E,214
623
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_one_type.py,sha256=od2-16ZTz-aU2nF1ENRnjj48-NcBJoDohAskrMrKpyg,201
624
672
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_prompt_template.py,sha256=gT8_2EawgAudubPsPjb16R6Zh_foAgV3NywTH5ZnhbY,1323
625
673
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_prompt_template_prompt_template.py,sha256=AZ4JQjKIX_CyAVEdRUMXgNlidV9wAv-Of2MIw1Sx0pI,659
626
674
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_prompt_template_prompt_template_item.py,sha256=iLFr4chzMA514qqjbp33JZfVxvtByAPv8FZJQA1HXWU,225
@@ -633,10 +681,6 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
633
681
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_two_prompt_template.py,sha256=ZwjGDK5B2ruqmmJOqc1dtAY4H--4cg8f9OkzPMTbjWE,578
634
682
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_two_prompt_template_item.py,sha256=-ICmMB96uY4L7x8Kv84WuHX0AU6zZsNfBysIpxxUl5w,214
635
683
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_two_type.py,sha256=PZB9xNrWeDhTx8qtNfzykgXNiSI7y8n2Prl8RF4Lkeg,201
636
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_zero.py,sha256=6bT-lIUCLvxgXigd_h7hJ2dDpMVoElkgYDXkedj1G9Y,1282
637
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_zero_prompt_template.py,sha256=b-6LYZPk43TYbgIsKBE_nAPXc5zIjyIuSuV-BR7t5Ug,596
638
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_zero_prompt_template_item.py,sha256=eCbsfmI06d3Zi01-870ARSy2iFhffSODjClPht1l5Fc,215
639
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_zero_type.py,sha256=IUA680FbMXxQMwUEPlZ0t_oVSPz_-iEK68QFVMg9Cz8,208
640
684
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item.py,sha256=3p9yQ6YNOGoiBPNkd1j2Ge7m-qhpmJdpXfcd-QSy0yg,4786
641
685
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_args_json_schema.py,sha256=hvuCYjnwNCzsWrb9PdhMzggIrIDJMCec3rA9g0Dts6Q,540
642
686
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_args_json_schema_item.py,sha256=_Gu-Y59ePdvlXxEJtIz3_qtrssqon-xaSO8mmlcp9YI,231
@@ -672,7 +716,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
672
716
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_source_code_item.py,sha256=C4BCxqXMLu8iFiSYcUe9OXNMvie9tsOngtim-1lM3x8,197
673
717
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_source_type.py,sha256=lSGATrRScteYayC95Oj6PSNooF7YWJXmLentp9stDWU,499
674
718
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_source_type_item.py,sha256=B5EL59bffAOWVRmxo51Hah0iLQZCtllVW3tS_znwsgY,197
675
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_tool_type.py,sha256=swkpka5rcPkxxSS2EIlunYDLRQpu7B8SgLDcwFJRKeM,519
719
+ letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_tool_type.py,sha256=z70KxZqxSbckHwagBGVjTTjJUK32ctWnmHNWckRRquM,519
676
720
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_updated_at.py,sha256=md1uzZkIMB7ANl_-uuKB8RVwAP187SBB_jLQTh7Tk2U,490
677
721
  letta_client/templates/types/templates_create_agents_from_template_response_agents_item_updated_at_item.py,sha256=uXkJJCwx44tIcYHCkXzAqvIvhtQDN9mYZanKbLBJNyI,187
678
722
  letta_client/templates/types/templates_create_agents_from_template_response_group.py,sha256=A7PhpDmlo604OJaWWmTMN1osMv3aM3alpaGq38KIel4,4591
@@ -705,7 +749,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_grou
705
749
  letta_client/templates/types/templates_create_agents_from_template_response_group_turns_counter.py,sha256=pEZsoOcYQg2t53NqhT_aiKpv7acTHB-SQTo4Sp0HpL4,483
706
750
  letta_client/templates/types/templates_create_agents_from_template_response_group_turns_counter_item.py,sha256=gbKPYjnO_wKRkVrX5KoegJY-LZ9qRkkn3Az5wt2kM-Y,187
707
751
  letta_client/templates/types/templates_create_template_request.py,sha256=8Po-a33Bdyosx-Y08cnbTmmHYog7GJC--ZcZse5Opkk,405
708
- letta_client/templates/types/templates_create_template_request_agent_file.py,sha256=LVlJq2JWT9Bgo3BPRcLaf5inWX034SvEOEd4fkM4gvg,1058
752
+ letta_client/templates/types/templates_create_template_request_agent_file.py,sha256=mlK19KbiSGGbGc-3IKfXGVixpdErKZybM5u0By6LxOE,1257
709
753
  letta_client/templates/types/templates_create_template_request_agent_id.py,sha256=M5MG3wNcbGHZR2Z-zxwgj9PA03VkKB8gTGmZQwuApuM,972
710
754
  letta_client/templates/types/templates_create_template_response.py,sha256=UKaNiwW7WNX4Q3_IqGkFJaatMcdSS-Tsf8gDT2i677w,1082
711
755
  letta_client/templates/types/templates_delete_template_response.py,sha256=_DUyWh9jtgw8u_U_JsV8N-RhPcY32QLAQZsUCSXDCTY,583
@@ -718,16 +762,17 @@ letta_client/templates/types/templates_get_template_snapshot_response_agents_ite
718
762
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties.py,sha256=Z_1C30tZ5BC7RgMuBLI8ghD5CuBjrmH3OZZjcjwWcR0,1666
719
763
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties_reasoning_effort.py,sha256=lSGLEnRRVLHD4l3TecUlLBylCcxSNOz4XDBta4EEflk,237
720
764
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties_verbosity_level.py,sha256=k2dOi8RIfUpvYLNCulXbvQTQlJQy58E5-M6YlPZTFVw,225
721
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=_fQY5-2x_-A0v5hho_jRUeZrvowovjuzVy9ZHlGST0w,2321
765
+ letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=9Xb_IucRJ_2wpptsmsKhyZbxWUQqVn2l02yW1M79xiQ,2353
766
+ letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_args.py,sha256=zJrFxwCKPTmBbaaXELEPxe14gZOfC7YfgqVbdEJrEV0,807
767
+ letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_arg_nodes.py,sha256=dL5Po-gTxe929DKSveMj3Z60IfTJbSXLOZJRQHkgs94,1159
768
+ letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_arg_nodes_child_arg_nodes_item.py,sha256=mmeVSYoErGquChFuftukNFTTCRwjzhkOacT8u-FnKGY,717
722
769
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_output_mapping.py,sha256=LLnaNqnXFnoLRTZo2O9nCFlkLTkdj2Re1h6ItsM-_RQ,895
723
770
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_five.py,sha256=6yyJTWEoTy6UVFHqqzbvfY_i1VmWLuZVaRBWU8EbKx8,738
724
771
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_four.py,sha256=f6ocdxac6oeozltoJK9JyDRf2mSlxC4iYkOoXx5iQRk,731
725
772
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_max_count_limit.py,sha256=SfDBej2crgo7Bp9vksmT-abkCBJTDWJ9fC5zmZ0Tz7U,772
726
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_one.py,sha256=hCBKI3NoMG3ka0nE_DxScubJuyCKmvTBpk916BLygfo,726
727
773
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template.py,sha256=rscHsbtUlHbzfxz5QUcLd85ny-8AEq81TFrCvDVDjiM,745
728
774
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_seven.py,sha256=q66qeWM8QE-ySyWv2mnkEnO8pntQrXkifw-zLvtqVns,766
729
775
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_two.py,sha256=LNzwnMLjyskkT4-2WoRD3D9-JYZXpfcLAB91LAqzwxc,726
730
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_zero.py,sha256=1vTNmInW_YrU9H9Ik361lMnzHSKjd48J1KE5eY3n0r8,770
731
776
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_variables.py,sha256=P4F5i-3Oum79uzNmn_oM7dkkYj66eVSxCG5MtmCY0nM,869
732
777
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_variables_data_item.py,sha256=DA0m9nJ_6p5Uwx-jbGbxnmqev3jlXo6t2T_BdLTi--s,814
733
778
  letta_client/templates/types/templates_get_template_snapshot_response_blocks_item.py,sha256=4VF9MMftvggRZilv-TM4XDFmj5xdtnNE5p5s5d7xc3o,1027
@@ -743,10 +788,11 @@ letta_client/templates/types/templates_migrate_deployment_response.py,sha256=2DR
743
788
  letta_client/templates/types/templates_rename_template_response.py,sha256=iH8paSt5k0jzqTDezOw2PJbgbDJIqVkA4zWnsa64JX4,583
744
789
  letta_client/templates/types/templates_save_template_version_response.py,sha256=gmRwrpCk5UM1TH2Sru4iX_ybTAMftVsHI0DOVGxdFrw,1087
745
790
  letta_client/templates/types/templates_set_current_template_from_snapshot_response.py,sha256=8QYXmOePQC67cBAqPWAkcJzjpTGAexpF6Aha3jqZ658,640
791
+ letta_client/templates/types/templates_update_current_template_from_agent_file_response.py,sha256=bVf2X_l_UU7ofzBqhj7lrX6r344ZU8EKhEND_5VAlcg,644
746
792
  letta_client/templates/types/templates_update_template_description_response.py,sha256=0dYH6_6EcEzMSaU9Igau0xKJPVYGXA9Pf9_ON6kY0es,594
747
793
  letta_client/tools/__init__.py,sha256=yO09WTcaXR27yvtC7K7Sj59WVyG6ET_VkhwoAxfqFbM,781
748
- letta_client/tools/client.py,sha256=mRLLRV-DLHBiLOwMWERxhiT6RSHHvZC-EMM7UXprPTA,68605
749
- letta_client/tools/raw_client.py,sha256=z95JZhtDIiGMUtA4bAPymTE2slMCiwsRV0AWADsSTVw,114659
794
+ letta_client/tools/client.py,sha256=dngnkoDfcpVLQEcF950R3Bk71rbzj4l5jIvmvokeIlY,63529
795
+ letta_client/tools/raw_client.py,sha256=f96iRpLfxbN5Mrv6v8hGUVTJnrl45OeABlI6RyHNWFo,103108
750
796
  letta_client/tools/types/__init__.py,sha256=iW8f30mPe50eMV3qzE_c-yzmW7kYb8G-DVYijiaVJcQ,1144
751
797
  letta_client/tools/types/add_mcp_server_request.py,sha256=N9WDntHlIAxRQafdSnIydUNEEaOwnDISqGLMyHBrWr8,372
752
798
  letta_client/tools/types/add_mcp_server_response_item.py,sha256=LryGwJSSLAX6crN_EctrRlJo0OCOUOK5mEGsgR4hONg,377
@@ -759,32 +805,31 @@ letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzu
759
805
  letta_client/tools/types/tools_list_request_order.py,sha256=Gi0MwZ1KN1X3--U7NDEMQOQu1xvfJMdGIbCj5M0w8KM,160
760
806
  letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
761
807
  letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
762
- letta_client/types/__init__.py,sha256=qbv8XwIQvOcogPUPrhzF3z-VS4q5WjLoQTmhOSmChBg,20011
763
- letta_client/types/action_model.py,sha256=VTXavHB6J2d4MjjTMEpkuEyVaiTHyj1FGfa4j8kN6hQ,1241
764
- letta_client/types/action_parameters_model.py,sha256=s1mJ4tycms8UmCFsxyjKr6RbghSuqv35xpa9mK42sjg,829
765
- letta_client/types/action_response_model.py,sha256=LcML150OvsKimVV3sP4jSFh8pVxQXn_r_ff8DADOr3c,825
766
- letta_client/types/agent_environment_variable.py,sha256=z9nGJdnyrLGxYaIqdD0a73K3Euemvb87Bpe9YmvXPO8,1699
808
+ letta_client/types/__init__.py,sha256=ySghL4Fex73sYKUh8TbynAZG-BmR79l_RcUr5SsbTsQ,26185
809
+ letta_client/types/agent_environment_variable.py,sha256=kT0OcOMmOil9-tCjOhdZ_trtt_6f9DmTeabqw0Qvh0g,1820
767
810
  letta_client/types/agent_file_attachment.py,sha256=J8zj7RkNkKr2ikgY1nbtcMNiBzZchwo_fh4j6iySqF4,1807
768
811
  letta_client/types/agent_file_schema.py,sha256=yD3QqRVWQr7T9M7OXL9KWNCP9BiR9wZC48xKnGzqsxQ,2212
769
812
  letta_client/types/agent_state.py,sha256=49E2WuDdG0lJ19uvS1zbjXZMLOfZnhKFSaYGFJlLrGY,7084
770
813
  letta_client/types/agent_state_response_format.py,sha256=EsaiTnlxRPkGPBc67DCsVAARsGubFQM7Xbs12jtsvWw,378
771
814
  letta_client/types/agent_state_tool_rules_item.py,sha256=m0DKEipSMed98rueO2oqqBNhNp5-l-mfBvUGHSS0Ibg,825
772
815
  letta_client/types/agent_type.py,sha256=UiNBTp7UPIIF2LJZAQlBgd-Rqa20M3WNmJYuCwEHSeA,396
773
- letta_client/types/app_auth_scheme.py,sha256=A1ha3TmjgFw3-mW8r44LPB_Go3pdbGxJ_LHrDChSG14,1243
774
- letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
775
- letta_client/types/app_model.py,sha256=6QlEj1uFSnUMDEkmM1XF1umO-X6AHq5oBGzVTZeZeEo,1520
776
- letta_client/types/approval_create.py,sha256=cB5zRgOYzcyAM_ZTKELeCy8SIWTzPQUNcMd1uLjXB_I,1092
816
+ letta_client/types/annotation.py,sha256=ja0AF_iu8wnRNZtGDPxAAj6c0PGbNaEOaJNaz2ofknU,699
817
+ letta_client/types/annotation_url_citation.py,sha256=n_WJXMI7pS5pF2MH6f41xjDlahHWyrov9nFCFDkqpOw,621
818
+ letta_client/types/approval_create.py,sha256=qe2fsyHCwfIBiLqvp086nOeYMjQH0uNmHLoXzgnz0Nw,1378
819
+ letta_client/types/approval_create_approvals_item.py,sha256=akwLKX55RmPeeGw8kl5g3TXrXVqtUUE-WoCtwyG6g4k,308
777
820
  letta_client/types/approval_request_message.py,sha256=8XsS5rAV_12RjUsweUNMHDwmhvbiPIUDTZAWVKz7f08,1568
778
821
  letta_client/types/approval_request_message_tool_call.py,sha256=ddPhd_Yar8rXzf78LP-QaBgPWf3mXziPflN_qgJus0U,227
779
- letta_client/types/approval_response_message.py,sha256=mtY_Je8CEOeO78-dcg0aSG3mqRx9afIe_xqcrJcLBDs,1846
822
+ letta_client/types/approval_response_message.py,sha256=c34jzrDuApd-0zzycWq0_lVm1OQ_XdYaWJ8_Elulmds,2160
823
+ letta_client/types/approval_response_message_approvals_item.py,sha256=8x5r3OcuTsMMGJ92jCIuwDAByTmsrCWxzBkShbrqR_I,317
824
+ letta_client/types/approval_return.py,sha256=kiH5oZIRiiS2afzKcK4SsAiiCRGFwJdZ5hcXffoJzbc,950
780
825
  letta_client/types/archival_memory_search_response.py,sha256=zMvo5jJPTxRWW9Cq6d5dsacG9k4LoFcyBCfD_pLe4kg,852
781
826
  letta_client/types/archival_memory_search_result.py,sha256=UlAWvWw1YGKAhLfAZZ30-oHLL1oDXFkaXBEAfNkQs3s,926
782
827
  letta_client/types/archive.py,sha256=LmCwayMbPoji5hQvwo2qP9z2qFncml4MZT9qw3rl1CY,2260
783
828
  letta_client/types/assistant_message.py,sha256=iFCIXRIndpEfBpdv5jX1IMBOWKJsciQF12lfB4I9bHI,1631
784
829
  letta_client/types/assistant_message_content.py,sha256=rJZePqcZN74tqx-FbArUF1FaqvATOYAn87mvdpqyINA,242
830
+ letta_client/types/audio.py,sha256=1HlHjJ1FEv4J5G4jQY24G0H91T5LT3K6e-dnQ1Di7i8,549
785
831
  letta_client/types/auth_request.py,sha256=kIiQTHpCLr0UPAt6SVL60cPnFjRW1x4tpazupclHSkk,684
786
832
  letta_client/types/auth_response.py,sha256=IUpPVCri_qwX0jBLRvc8FVVUWbM2LH2NeUdMKwCWGBc,862
787
- letta_client/types/auth_scheme_field.py,sha256=OFoPs6Xdvw-Z13mb7lQFf25z0IE6Z83f_8_gyiMcGtA,882
788
833
  letta_client/types/bad_request_error_body.py,sha256=FXRnHlblilUaHvShh1ia8TgLy5Z1HWwfx7-OE-6d3AQ,568
789
834
  letta_client/types/base_64_image.py,sha256=Ta6vR3od9sYQGrWgOSrFq7cS0-mm6cGTa2gWdFpSmo0,965
790
835
  letta_client/types/base_tool_rule_schema.py,sha256=e2pHhj1fdWmuBfkyD_MODwCQnM_MrN6LL2CEx0SqKvY,583
@@ -793,10 +838,43 @@ letta_client/types/block.py,sha256=g-uYemwR0gGBgJIad4cMj8gx3gVI8EfhHiLOvrZ_Kv8,3
793
838
  letta_client/types/block_schema.py,sha256=iCXe0NHt_HQFOoc8rwplIE2GQehgArOotIecrtKKsD4,2304
794
839
  letta_client/types/block_update.py,sha256=jauNp2WlyKT96FgAIpbzWGq4d8oKNWVbxZvepetvl8c,2389
795
840
  letta_client/types/body_export_agent.py,sha256=u9gPdccaHkSqKy9BmbXLoK4psoggV6FtShi8GDKrTZQ,870
796
- letta_client/types/chat_completion_message_function_tool_call.py,sha256=gy63-GRpzbkwnT1pCszVleuWNdr3nLH30RPW9tfHtt4,685
797
- letta_client/types/child_tool_rule.py,sha256=nriRtEL99xSQvA3v_Atni4bChEylS5v2l9_oyQ1WVvM,1082
841
+ letta_client/types/chat_completion.py,sha256=1iFT5TGR6TXphH7Uhh4uoHNHVhcgwIH-9CrMVH5zi6g,1001
842
+ letta_client/types/chat_completion_assistant_message_param.py,sha256=H40eqca3IaP0M37fCJ3FAmsduEFRwylS6oFbIZYDbDg,1280
843
+ letta_client/types/chat_completion_assistant_message_param_content.py,sha256=ehUGricpp5Di3As0cfksQcSyfpUDswGd06S2AqUbBnA,324
844
+ letta_client/types/chat_completion_assistant_message_param_content_item.py,sha256=IKw5Fr5KbFXgrnHd5CgnqT73V62y-ll6NiYbYN5rXDA,406
845
+ letta_client/types/chat_completion_assistant_message_param_tool_calls_item.py,sha256=ZXYBK5ZwaYu0oRKd-ssuAOtmHkKoaQ8AuL4HQmnBw-o,443
846
+ letta_client/types/chat_completion_audio.py,sha256=W-ggb2gT2glOp13ovaEh2yUr7mqqTgPOQMLAgfbOGH4,617
847
+ letta_client/types/chat_completion_content_part_image_param.py,sha256=vBM6W_XKxK2XWQEipzAzPwNi5YJVBSoUeql59o3tP_I,675
848
+ letta_client/types/chat_completion_content_part_input_audio_param.py,sha256=darA9e-fogSXdtBQKP6Vna-E5ZfWvof0-0FlUW7w_Xg,692
849
+ letta_client/types/chat_completion_content_part_refusal_param.py,sha256=w0aegJq3snvKnjmFejHDLTm5J7WusflEyQTrZxMXLOw,634
850
+ letta_client/types/chat_completion_content_part_text_param.py,sha256=PObZ89MEXiubJwjY7YctpOjYZTYJhmPp-FgiiKAiDn8,622
851
+ letta_client/types/chat_completion_developer_message_param.py,sha256=UQwR6BSUhjR0nhc46iYUn9TBf-PhayIAAXHdjEJkkwE,817
852
+ letta_client/types/chat_completion_developer_message_param_content.py,sha256=3vzb-bp9BKftHb19dKE0lwLuiZlPpL7OK7tGzIeMSR0,281
853
+ letta_client/types/chat_completion_function_message_param.py,sha256=AD5W28jAE-7MjHQpxExIBYm4xZNZf8ElGT-GB4sVw5M,671
854
+ letta_client/types/chat_completion_message.py,sha256=DAjE87_WEbytWN3pku1wS7ihmfIezdYWv08z-1Vjte8,1188
855
+ letta_client/types/chat_completion_message_custom_tool_call.py,sha256=4AAwcRg8EpKYzMB3mmnYwCgALfcOPWa9fgtDwcp6gT0,690
856
+ letta_client/types/chat_completion_message_custom_tool_call_param.py,sha256=7g56J57M0YeDOoVjSto1HIg8fQYDCu8-iXO7K7GH8LM,692
857
+ letta_client/types/chat_completion_message_function_tool_call_input.py,sha256=k2o-enfLtQqaUfEoy3Nsm5d8gQ44PFWliFhVBrHbSYc,864
858
+ letta_client/types/chat_completion_message_function_tool_call_output.py,sha256=emTFSDAGqlPaPIL2S70T59mAruewNlfVfc7-6warCJk,710
859
+ letta_client/types/chat_completion_message_function_tool_call_param.py,sha256=Evo8XxMbnWtB7Ok0z5pWWqC6kxxEGueWv7T9Gp00LeQ,880
860
+ letta_client/types/chat_completion_message_tool_calls_item.py,sha256=4qGzE9yUhybHUs7USDO3GtMSnlHlTgPT4YFVfys20p8,416
861
+ letta_client/types/chat_completion_service_tier.py,sha256=7Q08YZ5SaOIgmsSs1b9RnI4V--FhNstqPPUEbyjdu64,197
862
+ letta_client/types/chat_completion_system_message_param.py,sha256=DgeROlxxdQNuP6gj1qgqdZOJEHLAtjrJno3PZ_5gVBk,799
863
+ letta_client/types/chat_completion_system_message_param_content.py,sha256=ngY5-4G3ePzTaVJma6pEqOhuna9gulIIgfy2hQ_fJDE,278
864
+ letta_client/types/chat_completion_token_logprob.py,sha256=WjDIIxU_xOfIT_n8eh0BBwVYpQ-F_t5gen9FcAKBZUk,722
865
+ letta_client/types/chat_completion_tool_message_param.py,sha256=OIzfNL2tFgxTM9KJL72zM889s4wgdpYzGCLCa6cxduU,771
866
+ letta_client/types/chat_completion_tool_message_param_content.py,sha256=EYLRCGJecCk40QLO5mB2id0DaPm6llfAG15D7eI9RHE,276
867
+ letta_client/types/chat_completion_user_message_param.py,sha256=c4xX5dBaDG_i7jcLJKbDQFIj69SYHw1RNDdMgbIeTfI,787
868
+ letta_client/types/chat_completion_user_message_param_content.py,sha256=bLJRnIuun1MafPFOgkTF2dFyyOMHPb8PpeVzF_5EVLA,298
869
+ letta_client/types/chat_completion_user_message_param_content_item.py,sha256=Vfi7YnB1V9FBfD452M6ea-cVG8k9eoIUzCMYjeLbAds,580
870
+ letta_client/types/child_tool_rule.py,sha256=euv59ZHg1fWRAz0--AOY1HMVd74PDLg7lZh8BrMzM_M,1336
798
871
  letta_client/types/child_tool_rule_schema.py,sha256=g43as4Qsi7p_kL9pnheGdJwaYbfhYdOKr-fpy3V0Ic4,615
872
+ letta_client/types/choice.py,sha256=j7U5sUP-7DcKFRhHYcHf3y5rh7ui7j5dex3SUNwG8XY,835
873
+ letta_client/types/choice_finish_reason.py,sha256=mSQdZrxCCl0RifiNJzAFTpIXZIIolcXAKOzSvkmDj0E,215
874
+ letta_client/types/choice_logprobs.py,sha256=9ynigZ6oeEJaT6U8DfEbLHtfCRTN2XmvOdlEFgNpleU,770
799
875
  letta_client/types/code_input.py,sha256=_Emu9EQBxJ-mD8MFliFaXb4tsD3NiGl-FhiytlfaZv8,772
876
+ letta_client/types/completion_tokens_details.py,sha256=cEPP10LncLxjXU1kzgelhahsMktA-gbxgXm69reoauY,771
877
+ letta_client/types/completion_usage.py,sha256=buT2Wl2I0urdvHn0SrrcwJFp-9kxpqtTDGKRNmUi-tQ,887
800
878
  letta_client/types/components_schemas_text_content.py,sha256=F21GPPwREb6GodS4dGsT7-4wySEUdhpq6krznF-sOPE,147
801
879
  letta_client/types/conditional_tool_rule.py,sha256=kOGHpAMgTPe7M7JWuUbfrnDJ_CEfqyasbwBW75e2DXI,1425
802
880
  letta_client/types/conditional_tool_rule_schema.py,sha256=zb6LXzC6Hk4Q-wdehR85aUWiWZogece0XAdlbh3EC1Q,718
@@ -805,6 +883,8 @@ letta_client/types/context_window_overview.py,sha256=1rWCBJvgJkkyMVPjgbhx1y26WbR
805
883
  letta_client/types/continue_tool_rule.py,sha256=X3ZV_sxbTjMsg20NyuEUIl_0bxHUSj-vpUfu512LO70,997
806
884
  letta_client/types/core_memory_block_schema.py,sha256=5_k2XFEsPDwldGfPdzHW3j_7IJOBqTVscq89lXTD4d8,985
807
885
  letta_client/types/create_block.py,sha256=ZWieozFojBRfecUNo0RnA6jI_juXykSAQ1TBq2Xa5g8,2170
886
+ letta_client/types/custom_input.py,sha256=-QiF-cfM6DiVZp9mmvdxt8izC8RGbzsuAp3IBPMi3-Y,572
887
+ letta_client/types/custom_output.py,sha256=dSWLinxH7quP_kBc-DtI83hEcoeVI19ErcFTeq7DTuA,573
808
888
  letta_client/types/delete_deployment_response.py,sha256=Sa6HkM8f-uh4SnlXKpDfnTk_T7giKOZpzTTfAd0_chA,825
809
889
  letta_client/types/deployment_entity.py,sha256=JE3xKaULaPxidiuIiyeJjrU0wVS7NKXhD-p7vnLAJBw,786
810
890
  letta_client/types/duplicate_file_handling.py,sha256=xIYYN3qYtFaWHerE9KHGmXtyQb54pyE5xLREzAFakxI,183
@@ -814,15 +894,19 @@ letta_client/types/e_2_b_sandbox_config.py,sha256=LOR4k4sUyAGQWQ0AbJGLxvZesZAvEr
814
894
  letta_client/types/embedding_config.py,sha256=BC5HNq_R0dvzcvH1Ncm2YONvkKm_LurMwosyE5RYJS4,2003
815
895
  letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=KGUZl9cAQNedLGhaOfuvAEE4JtDvVz6wlWFMAQEfSSk,561
816
896
  letta_client/types/feedback_type.py,sha256=sDfsniSnnpSwzZqfIkRL7vYPxYqdwURpI6LMI7eDkoQ,160
897
+ letta_client/types/file.py,sha256=YPkTYb8V_XsvuQ6qXUzzDsp4iQMlZxPormZWoy7ROnI,629
817
898
  letta_client/types/file_agent_schema.py,sha256=I0uHseeqx-FDK5pVAb6-0zrqpfNdXcjDTb4_LS2QmGw,1890
818
899
  letta_client/types/file_block.py,sha256=0uRgIMwZDZuLZ-QklPts62aNTDglQeumSLtpwP6TWQ4,3268
900
+ letta_client/types/file_file.py,sha256=JEE9Aa0puZ4j6wZUI6HbZfF8keB_-qoPh4C-Mn6oOQ0,666
819
901
  letta_client/types/file_metadata.py,sha256=RH11HWwyMyO2hmZzboTJzrLaOt7r7-I8pExUkXv0ja4,2831
820
902
  letta_client/types/file_processing_status.py,sha256=8W8VAx9-jCaUx6q6mvyCMyLoa2peLTE_sgIaGloOWo4,201
821
903
  letta_client/types/file_schema.py,sha256=AoHwU5PG9D-d-UX3td0i4j8UOH7QF_jstQUms4UE6lw,2545
822
904
  letta_client/types/file_stats.py,sha256=37Uo8BbSAop9PMJBhAgNvJrJHvmMllk5ak_kKr9Zp78,876
823
905
  letta_client/types/folder.py,sha256=BFdS47RqiLmq6c8YfzpGhNYsHhe6hfRXXnQD3rZhv-o,2371
824
- letta_client/types/function.py,sha256=fLezAO13mRGonbjiiAWCQSUL-dxjM5bomG-bnckimCw,573
906
+ letta_client/types/function_call_input.py,sha256=BQYKx_NNM5LlUPHa2gULHMweO5mByWbtVBHTBezPypE,582
907
+ letta_client/types/function_call_output.py,sha256=UWUQCMpTfgIlOpXfZa9jVTpa8UOS5m4cCzuvs2_XPNQ,583
825
908
  letta_client/types/function_definition.py,sha256=D17xcDfXZaOyivBi60NGAh9sSn5Kl2xyLtW4kDGHxxw,736
909
+ letta_client/types/function_output.py,sha256=PmcCPw239hjzoP32ynV-9UDQRNpDhrkpICpYLKqJwV4,579
826
910
  letta_client/types/function_tool.py,sha256=DB8zGBTGGS7evNtbiO8_aE2xg_89exKhgUUQ9L8DB9M,679
827
911
  letta_client/types/generate_tool_input.py,sha256=9eqavChO3e0hXmovp1GvRIsNd8N11pBCiFjKpbG-WG8,1096
828
912
  letta_client/types/generate_tool_output.py,sha256=0Heilco0ySpWaKsSGF0JIYHCRblVhYrcppBfhlpy98E,861
@@ -840,10 +924,14 @@ letta_client/types/identity_property_value.py,sha256=SQJz97fXG0XHqOGYmYRmHLbI4On
840
924
  letta_client/types/identity_type.py,sha256=YeGvqit1VLK7q0GpNuTyfbCxXO7BJjq-hFSiFZexswk,160
841
925
  letta_client/types/image_content.py,sha256=wbWexW-_-DpoD4tU7WPappgbJUFvip5OY-tJCiJsbTQ,736
842
926
  letta_client/types/image_content_source.py,sha256=_WW_IiGLwoShfOSBLZff8F7mFX0zjUqgeT_5DdeQYtQ,257
927
+ letta_client/types/image_url.py,sha256=C-sFQWOp3AFwMC4aVtpbft2TPRvihgL7l1vH0xx5oQk,649
928
+ letta_client/types/image_url_detail.py,sha256=YFT9wyf8hqeKhQjRWMv97y-fbU2DB-oCbU5BpUcHWVU,161
843
929
  letta_client/types/imported_agents_response.py,sha256=PDBKbNcUNpRumkUgQTE4-pfPc9XCd9mVdf0VeDFGLV8,716
844
- letta_client/types/init_tool_rule.py,sha256=K4SZoAybgKyVTOwJ46rE5ZXlBRV8e1qUQtY5Sod4puM,988
930
+ letta_client/types/init_tool_rule.py,sha256=KGa_DBJyhUDW4fmW0WEZEZazk7LpWENjlgZ_9q131ik,1430
931
+ letta_client/types/input_audio.py,sha256=l4T076iM05SxiqBx5TEkE4baG99rk1olL6hmVictuJQ,634
932
+ letta_client/types/input_audio_format.py,sha256=QQFfndI9w66wIbGyHwfmJnk2bEJDPmEs9GybkaNL6AI,154
845
933
  letta_client/types/internal_server_error_body.py,sha256=uDNP8p8Qm44sjvt4uTvK6jbSq4jbAcLplY6zd4e8mYY,572
846
- letta_client/types/internal_template_agent_create.py,sha256=SkqqqYR_2PLJfpe_B6KS5HcW-kpTVipimCYQMS06k3U,8417
934
+ letta_client/types/internal_template_agent_create.py,sha256=p84Adg1j7snL8EKutJDIxZ6aprpNXEz3qa8AlMnLjoU,8445
847
935
  letta_client/types/internal_template_agent_create_response_format.py,sha256=4SOu2jhF5qZDlDorGrZ2cdyUF2do0IOtslZ_219qtzk,401
848
936
  letta_client/types/internal_template_agent_create_tool_rules_item.py,sha256=zAZ1RbQnzI0K9YAP3OcBxRyi2WRx6G60lOnt6sekiS8,842
849
937
  letta_client/types/internal_template_block_create.py,sha256=zxyp52nkcFrWzgM4IhHqehSwMcSSBSb6f5oD3XHE60c,2199
@@ -865,12 +953,17 @@ letta_client/types/letta_request.py,sha256=mPwcdsa_QtDkoDk3cspY870DQKZL6hKHPezYB
865
953
  letta_client/types/letta_request_config.py,sha256=7Jxvs4Vja2GguDvESB5YxbpOCHBpJNP0LZ4u8ErMQLU,1347
866
954
  letta_client/types/letta_request_messages_item.py,sha256=nZdjVqfS6X6STADIqgRPqn6tL_RIBxTZU7PDaQdhNU0,238
867
955
  letta_client/types/letta_response.py,sha256=XsdGEunygyUZc-jegfZ0dqmERToeFQShvJY5JNmGTHM,1396
868
- letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=RJgVqefoCCmFY6Hzx1KcrFYlmq_LseRIpnUu45xe-lQ,9291
956
+ letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=Xu2sfySuku8TycxlREtnKVnplNSbfIYpAPFUoUzLV0k,9319
869
957
  letta_client/types/letta_schemas_agent_file_agent_schema_response_format.py,sha256=ZXsdcfac2W9-vcdCAmdCT6YX1n59LKTbdNHfWkykGm8,406
870
958
  letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=vjLR2zQtZl__7v6WNY-NtaxF2UBqiTiorO-Gw6B9rbc,847
871
- letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=kdNJHEcOletXT0HinjKuXzTtatMAD7IjMN04MvPTNis,2991
959
+ letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=7fMTWsPvEjsMI8JxPqTIqLR9FHTHOzocCIg6XIVUiSI,3783
960
+ letta_client/types/letta_schemas_agent_file_message_schema_approvals_item.py,sha256=9MnSb0u5jf9sEEcEC45Xp0irSPAVh4Yb7ju395JKoBI,312
872
961
  letta_client/types/letta_schemas_agent_file_message_schema_content.py,sha256=7Co1Px87C9iREMZ3882Pt2NJCufjU5bOp0JgDnf46DQ,248
873
962
  letta_client/types/letta_schemas_agent_file_tool_schema.py,sha256=nqDj-w95igSNiRyYe7X62lvnNfFJb9laL4RyUhTU850,3150
963
+ letta_client/types/letta_schemas_letta_message_tool_return.py,sha256=R-SoZnBSH-gSv-ftTnx9aodFRgzFslsImlEh3OUANIk,911
964
+ letta_client/types/letta_schemas_letta_message_tool_return_status.py,sha256=u1JY90wi0SmH5fgRgWjPFjY828cx3GFWdeXdwabh1As,184
965
+ letta_client/types/letta_schemas_message_tool_return.py,sha256=52K5GpkOIOYprn6lsSGvegJKHkKEM79wb5lUL4eMp04,1255
966
+ letta_client/types/letta_schemas_message_tool_return_status.py,sha256=NNcWJNx_-GSfGwD6f9gRl32AeeIq5POjH-vw2E8ANL4,179
874
967
  letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema.py,sha256=lfuVF1g3x3MtgW6Ed1glJJ0OBRZtMuuYPDbt6sm7hFc,2230
875
968
  letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema_tool_rules_item.py,sha256=emnqbk3YjJpbdObglJCYuiLLnR-p657UmDEbZygDxv8,523
876
969
  letta_client/types/letta_serialize_schemas_pydantic_agent_schema_message_schema.py,sha256=RPwPiGzs8TU1JwkQIRm1wFHLt8a5KU4WFFvuDvh_NII,1037
@@ -881,7 +974,7 @@ letta_client/types/letta_streaming_request_messages_item.py,sha256=1uUqT_cli1mJB
881
974
  letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
882
975
  letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
883
976
  letta_client/types/list_deployment_entities_response.py,sha256=0LMKw1XooxJy_h_Glmkyz0t-crHkI02j4UqWP4nJb-w,808
884
- letta_client/types/llm_config.py,sha256=-fyzSmnQpkQ1vqqQOSyuIvMDfgSMMdrDtj-0Tbsw42I,3989
977
+ letta_client/types/llm_config.py,sha256=MoMnGTXJkDp15-QGQcIfLyyuC6m9YWxXjwO6zZNJAWk,4125
885
978
  letta_client/types/llm_config_compatibility_type.py,sha256=m6E90W-R9-Oi3EGSV_GdPIuVC2rmAH7TsUKbl79EiAQ,165
886
979
  letta_client/types/llm_config_model_endpoint_type.py,sha256=o59NDg3-3ud2mqAPYze40G7kyVD7pkRRbdT_vdTqL24,602
887
980
  letta_client/types/llm_config_reasoning_effort.py,sha256=r4I3i2c7RxkBe-xXOE_XCXwjp9Y0QoaF2SVY7WYPdg4,184
@@ -897,7 +990,8 @@ letta_client/types/mcp_tool_execute_request.py,sha256=SVH2RlYN6Lb95-8eSB_PZYpHK_
897
990
  letta_client/types/mcp_tool_health.py,sha256=ToG3Ut-9nvPkdFNL4gzu1LMv4bNmD7yFZ-bkMO16mzg,866
898
991
  letta_client/types/memory.py,sha256=ndQGYXZlFm5EkvL0uCBUAVMLSsn3kLPkQaPbeTc60-8,1418
899
992
  letta_client/types/memory_agent_type.py,sha256=YYUeXFXiBY94uC6rFw2ELewF5VOKnpeQrGfb5YJ-a4M,162
900
- letta_client/types/message.py,sha256=KgMwqg6tcIjtnrz2k-wl3tqtJVVy-_ZS2q4_xdTDNt0,5200
993
+ letta_client/types/message.py,sha256=t-CkPukwThsXZsYpYkBq4wo7s8ohfFn1M5K_3sNOhSw,5631
994
+ letta_client/types/message_approvals_item.py,sha256=nY_E70_NytepCNNbOslYQTdJ1_U5ZsAbNArGTGdX_KI,285
901
995
  letta_client/types/message_content_item.py,sha256=c1nitSTFwNnLPQe9hTlVTLdS8dPdU-6rCQgXQLRHekI,731
902
996
  letta_client/types/message_create.py,sha256=OCmj0ZZLk2v48I4w3vZOXAmt7tySBG6U0iYZv4vsXEo,1739
903
997
  letta_client/types/message_create_content.py,sha256=pKppl-N8IdqR-ShWCZ0HN-3b13plPE2vSi6YcRM3w8o,227
@@ -909,7 +1003,9 @@ letta_client/types/modal_sandbox_config.py,sha256=QBGbV1563_tr6Fep0uBy1oboERRQC-
909
1003
  letta_client/types/modal_sandbox_config_language.py,sha256=RHJmtMZwO-kcYqHIWFel0R2LwKZbAw19V-bhEUguDI0,174
910
1004
  letta_client/types/not_found_error_body.py,sha256=yE3-m6hzUyibPfMU09MqPOfairn7WtqdrqRpybnfsxk,566
911
1005
  letta_client/types/npm_requirement.py,sha256=XnJhQNy8ywDXzgKuT4wT8PTk-6umQ_3N7Ok9RKuyT2E,774
912
- letta_client/types/omitted_reasoning_content.py,sha256=TpLz1I83ifsZpWFp99cHn-Mw71VYjv3JDPbQuKVCYO0,774
1006
+ letta_client/types/omitted_reasoning_content.py,sha256=0ep2tcb50KixOlH5IDs8IGxvDOttv4X1k5A9jNniIRY,906
1007
+ letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_function.py,sha256=xG-TDGyDxYP6aoNRm61_G6Af7EteDvqqROq4YOjU5G0,625
1008
+ letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_param_function.py,sha256=hijQEemNQENudbTqjgpgoVYH9LUTM24TEeBPodUCdEA,630
913
1009
  letta_client/types/organization.py,sha256=RV0shhT3Lg3WlJG6vcIFRGb7lpf6nWCZGBofD67f4po,1081
914
1010
  letta_client/types/organization_create.py,sha256=ixvuJTv8UDefV9fS7gHCTjr-a32eTDhjaJMay5fE4Ak,815
915
1011
  letta_client/types/organization_sources_stats.py,sha256=58f-ZnVS0rrRXJHBa4y47Oa_fymEKnNiwbc8r_L7Dmo,1166
@@ -921,7 +1017,8 @@ letta_client/types/parent_tool_rule.py,sha256=DImM1meaByEEjTGmOUX9xM0dG6KhrCVZXJ
921
1017
  letta_client/types/passage.py,sha256=dgVQ3S8Knf8u9Pj2pteird2J3DsiDgm3sj8Y2bQI0AA,3319
922
1018
  letta_client/types/payment_required_error_body.py,sha256=ODQ2fA8EF1Y_pfZocseOg1Ryyj9WfgjS5QeSC7WTIbc,590
923
1019
  letta_client/types/pip_requirement.py,sha256=A9mFgoz-yAlVHsy8vljtYdtJInfN7qL1JePPaPuTr2Y,774
924
- letta_client/types/provider.py,sha256=hUTNL8HIolqPtKwPdSxjElEhENIYh05nB12ma9pcZ1g,1890
1020
+ letta_client/types/prompt_tokens_details.py,sha256=S1M1NLp31_7UHmru4gLEw6qtXeKg5kh8opqflnWtYZs,644
1021
+ letta_client/types/provider.py,sha256=LhaNfyK8kEBC4i_q9NtQbWZiwtnw9IUzGv-2-TOUX7Y,2146
925
1022
  letta_client/types/provider_category.py,sha256=St4tSc_Wc5huF79kb088-L-tRz9Cj2_b5DqEoU4eDIs,156
926
1023
  letta_client/types/provider_trace.py,sha256=d7_IpoEgLeqnPaElWjOp6iAL8SbeI4DZsBaaaFtkorM,2201
927
1024
  letta_client/types/provider_type.py,sha256=1nKjLUXPY7_O_nW-AjznrEMk3NxUSggmQMj8wHsGx8A,487
@@ -933,13 +1030,15 @@ letta_client/types/required_before_exit_tool_rule.py,sha256=rMM4Mov7CTmQVJZtpZlZ
933
1030
  letta_client/types/requires_approval_tool_rule.py,sha256=1mKQLGjy0NBcBgbLK0p1rBspUl6m4G3SY4KZKqDGrIU,1061
934
1031
  letta_client/types/round_robin_manager.py,sha256=cGnv5WFZowjguzNLX9Nv3DDfdgzDolN3onSkLLjAl6Y,701
935
1032
  letta_client/types/round_robin_manager_update.py,sha256=0auliO4ChHHCexaiEfXKmERz_4IWz5YvjRsQHbUqVCI,707
936
- letta_client/types/run.py,sha256=9yllUOPYAGZMD7s-YjF7GZ56OnGyz1NWCV8pqNGu4o4,3824
1033
+ letta_client/types/run.py,sha256=eAbrUDxvBPrnss2vV7i62fySusUj5KvomS5amqbKQq0,3651
1034
+ letta_client/types/run_metrics.py,sha256=TS0lQ8fa2kO8W65WwXULZ06gYEdJoRELnLalof3iwXQ,1602
1035
+ letta_client/types/run_status.py,sha256=wgTK1qjDWWxXkolmi6q2Vc8AcnO2sCCDnj1ShO9t1Eg,191
937
1036
  letta_client/types/sandbox_config.py,sha256=YWQpDOHkiqEtp-xa4jjQA3QyGq4ZXNU8UDardnAvxhw,1551
938
1037
  letta_client/types/sandbox_config_create.py,sha256=fGMGiKbuf5ii1o-tHRHAjnAu0FB4JktMjlvu6uBRAsY,731
939
1038
  letta_client/types/sandbox_config_create_config.py,sha256=0jPsYtxeoRXMLppFjWZCCjyobuBvlkf-GhAOdH8bmt4,337
940
1039
  letta_client/types/sandbox_config_update.py,sha256=EXoxQGdHezHjzX0B3h-LVVAJgwHLVPdX0jpl1orP6jM,841
941
1040
  letta_client/types/sandbox_config_update_config.py,sha256=xDLDR1l8Z12aB66w1fC-CoK9l5hFuWl_21oswcEsvw0,337
942
- letta_client/types/sandbox_environment_variable.py,sha256=BF6Y3eM3t6pR-8KKJ0ayqTzY1gaTH0FNz6FdnCVxYd0,1721
1041
+ letta_client/types/sandbox_environment_variable.py,sha256=CmU4v0-GaoP_ERAqr4qyOjiw8geT9MK-HOw2Q94FVkc,1842
943
1042
  letta_client/types/sandbox_environment_variable_create.py,sha256=d67wWB1b0UKnthFjD_TuRM_CUoGyZJE3p2y2z4BkWsM,891
944
1043
  letta_client/types/sandbox_environment_variable_update.py,sha256=zsvqBW_oDBOcc7llvwAO9bMT08LR3iDamB36-fV1t5o,949
945
1044
  letta_client/types/sandbox_type.py,sha256=ZaZNcRf9l39PZQTGjRucRFJFpkxOrrBBcwhiT2bSIiE,160
@@ -952,9 +1051,9 @@ letta_client/types/source_stats.py,sha256=XtxJSOE6fSymNjcvdlhBFQjKjGbPHK57Tb5nTQ
952
1051
  letta_client/types/source_update.py,sha256=VffzGOfHTFncuGOhb4yvLebdXD6mTTD5SfqhlYBnWzo,1330
953
1052
  letta_client/types/sse_server_config.py,sha256=UbSmODGr5nxVMqTGtSvEbZyN2V8P_T0cOEh2ffc0-uM,1739
954
1053
  letta_client/types/stdio_server_config.py,sha256=kuPmwj9lDTz7jBY1jh5VH-ns3ffctWwatT_emXyyTFE,1092
955
- letta_client/types/step.py,sha256=4QwNftu2pDqAOIPc0r8l0OGMM0rShnXteKMnYdR4tFQ,4258
1054
+ letta_client/types/step.py,sha256=AbGUgNKbX00BnKVH-iGk4OfbYnJ-bIZDvOyivHcuw8w,4258
956
1055
  letta_client/types/step_feedback.py,sha256=JXUkclvJ6C-6ZTgd2lteOxqEyO5KRDNQ8ronBPYMdbo,160
957
- letta_client/types/step_metrics.py,sha256=TvJtShzqEmS0chdIZKVEII0pz-nZaWT9Ud0Jvz6O3pk,2178
1056
+ letta_client/types/step_metrics.py,sha256=Kgk-7erqILXfS7fteZGR2bpBXW4sDP7oLW3Ga-YIetg,2178
958
1057
  letta_client/types/step_status.py,sha256=OruAXMfFrCL0Bgoj7Wfjr8400ok5jcV4busa9NV-KIw,179
959
1058
  letta_client/types/stop_reason_type.py,sha256=FupEOxG91KZKUTywj-LpE9MckbMobTwnnqW3RPN_v0w,395
960
1059
  letta_client/types/streamable_http_server_config.py,sha256=GNbt2KO9VepHUtiMoK6htJLpFHcGoFJaoH1Az6zkt-Q,1776
@@ -965,24 +1064,25 @@ letta_client/types/supervisor_manager_update.py,sha256=srC_cYti3h_DdWRmcrLMgWnMS
965
1064
  letta_client/types/system_message.py,sha256=-jWKwRBrVleOGAE9n8VXCRk1sI6cFMw4KWB_3CsCeZw,1424
966
1065
  letta_client/types/tag_schema.py,sha256=TtqUHpKMxiMD-k-4vQgCOxiwzKRFBjEGhaq8cd0hhtQ,554
967
1066
  letta_client/types/terminal_tool_rule.py,sha256=-9AZYmPxH-cuSeIA8q6H610dC1yS4rb06MCPqwinW8s,993
968
- letta_client/types/text_content.py,sha256=ivADxvqhZUBBr8XGv3ODB1Ll8GYdQ74c0wlIp31xQHk,671
1067
+ letta_client/types/text_content.py,sha256=xvfTOiaa36wpVOU1LvUSr_oZdI4Qo2NNIeOyiuT7RUI,839
969
1068
  letta_client/types/text_response_format.py,sha256=MQ2iTTuJCzvk9qc4BEp6j9JvdZ_c7kiO_CnIqe6r_GU,655
970
1069
  letta_client/types/tool.py,sha256=9ReKkcZEXTsKYjGb4G3pAL9gBzo35KA90V94ErKPyEQ,3448
971
1070
  letta_client/types/tool_annotations.py,sha256=gOUNd0gxzHvSz57G5c8gxK45VTxzk2yoB1PBfJoQlvU,1505
972
1071
  letta_client/types/tool_call.py,sha256=nIC6Tew85oekAwM7TWuD1nh-wMMSbwnHkDRIPh9znDk,595
973
- letta_client/types/tool_call_content.py,sha256=ahSG2qf-hy3kM0L0OC5Yz9Xco_2B5fnPA6Wrb1FD9hw,996
1072
+ letta_client/types/tool_call_content.py,sha256=EaIevYRAYg4ZkX2UsKDTMptydjBV7qZRYQwgg8n6lIQ,1161
974
1073
  letta_client/types/tool_call_delta.py,sha256=BDXIgt8R_kNy6A2j-O5e-6LUD1CoRVQ78xZpdfy9G_I,672
975
- letta_client/types/tool_call_message.py,sha256=9WzXDFsusL2lDt9LFmeXcBhCfHliiMc6gUAtglTKUQ8,1440
1074
+ letta_client/types/tool_call_message.py,sha256=GgiWt9NfUQZJirTujvzT85TUCowiv624e5XtbjNHzqc,1572
976
1075
  letta_client/types/tool_call_message_tool_call.py,sha256=d9RPFSB8CXdANdNi7EoHYvRYpK-ETkTUSI5EWm71UlQ,220
1076
+ letta_client/types/tool_call_message_tool_calls.py,sha256=bTktTSg5IAQOZutURGc0ioYjhQFaKVdOrvJzJ7tHKko,234
1077
+ letta_client/types/tool_call_node.py,sha256=yO3aw5lT2pxaOHAtvTN-wfcf-QVsO0OJAGAJpuoiXnA,1216
977
1078
  letta_client/types/tool_create.py,sha256=u_WTFafiHtCzXSAoEcket5qdhTl3yAw8nWnuLVuBrwY,2123
978
1079
  letta_client/types/tool_env_var_schema.py,sha256=0LXRU-zRlBvMq9OZBnRHeZZvre3U3u3OF0zlBfgEXTo,661
979
1080
  letta_client/types/tool_json_schema.py,sha256=HFQvRiMLY1wWtAnnxgWA0hLKntgfPr-JLUdHoeKarj0,755
980
- letta_client/types/tool_return.py,sha256=P0hvUOPtIYs0y6yzDRPtY86JOZn-W75Hi4efUyc7CDI,985
981
1081
  letta_client/types/tool_return_content.py,sha256=Z18tVJa_FZoDHw2UL04XbTz3eEeUR-Qs0iydBFv3dog,957
982
- letta_client/types/tool_return_message.py,sha256=aOUlf7UJ2jVYxT7JL5pHj3ZN3WT_yxzzCcYaaVHaRpI,1935
1082
+ letta_client/types/tool_return_message.py,sha256=Vtr56gyZLr3iB3erHAYc7r-jvwZvDrGlbKJDSziBETE,2363
983
1083
  letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
984
- letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
985
- letta_client/types/tool_type.py,sha256=Lrced4b0gDW3IWOhyCPC_dZX6dRUReI8VsutrgRTCzM,459
1084
+ letta_client/types/tool_type.py,sha256=U6ThnhHgUoAQgIaYM06O_If4Zxenh4ysGVeMnDmzymk,459
1085
+ letta_client/types/top_logprob.py,sha256=0SvdKJig42cuLyZLTxB9PLPfpG2yqH9lxnxuebw85TQ,628
986
1086
  letta_client/types/update_assistant_message.py,sha256=M8Ltqt8YdOFdge7ahLm-7bPeccXwyq_sHI-WgY1IcyA,879
987
1087
  letta_client/types/update_assistant_message_content.py,sha256=kAStjnVa0o4YeuDgqMnAd5Jcq1Yhnxhlk7gplV0JohQ,248
988
1088
  letta_client/types/update_reasoning_message.py,sha256=shpVxOnD7jbOYrwTm68vUw1ieEi7RcIuJeTseY9v8WE,651
@@ -1008,8 +1108,8 @@ letta_client/types/voice_sleeptime_manager.py,sha256=Khknp54o_fOmYWiG4fco7mjCTzE
1008
1108
  letta_client/types/voice_sleeptime_manager_update.py,sha256=L3AfdarfXWWOcWIQivUKP2w0nQGIjcYMKspyqSyAHHU,1260
1009
1109
  letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
1010
1110
  letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1011
- letta_client/voice/client.py,sha256=MS0lkcQ1jxA6tjhL8Y0InMWFrUshvSHnWIfdD6pRe-0,3542
1012
- letta_client/voice/raw_client.py,sha256=W6mPMWqUMclyAMT3-gxOg5yLm_oGhaOdSmwciiiYt50,5618
1013
- letta_client-0.1.324.dist-info/METADATA,sha256=ObSuXWGN2RLD3alTQ5crROOY5HhhHTQ4df-L29zcsQc,5820
1014
- letta_client-0.1.324.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
1015
- letta_client-0.1.324.dist-info/RECORD,,
1111
+ letta_client/voice/client.py,sha256=htBM9gwuGsyn3pK880QqtabE33S8eRdra1GltN08vCY,4146
1112
+ letta_client/voice/raw_client.py,sha256=GQUKwqsRNTyI0N5N1R4vCqui9Qdgmi0XC3iEZPNCOn4,7190
1113
+ letta_client-1.0.0a2.dist-info/METADATA,sha256=e5NoZwXjwHfbjbD3UE836Dce7w63wre6D6B2LzYh2Hs,12235
1114
+ letta_client-1.0.0a2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
1115
+ letta_client-1.0.0a2.dist-info/RECORD,,