letta-client 1.0.0a1__py3-none-any.whl → 1.0.0a3__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.
- letta_client/__init__.py +149 -23
- letta_client/agents/__init__.py +15 -17
- letta_client/agents/blocks/__init__.py +3 -0
- letta_client/agents/blocks/client.py +77 -4
- letta_client/agents/blocks/raw_client.py +63 -2
- letta_client/agents/blocks/types/__init__.py +7 -0
- letta_client/agents/blocks/types/blocks_list_request_order.py +5 -0
- letta_client/agents/client.py +46 -13
- letta_client/agents/files/__init__.py +3 -0
- letta_client/agents/files/client.py +71 -10
- letta_client/agents/files/raw_client.py +51 -10
- letta_client/agents/files/types/__init__.py +7 -0
- letta_client/{types/tool_return_status.py → agents/files/types/files_list_request_order.py} +1 -1
- letta_client/agents/folders/__init__.py +3 -0
- letta_client/agents/folders/client.py +77 -4
- letta_client/agents/folders/raw_client.py +63 -2
- letta_client/agents/folders/types/__init__.py +7 -0
- letta_client/agents/folders/types/folders_list_request_order.py +5 -0
- letta_client/agents/groups/__init__.py +3 -0
- letta_client/agents/groups/client.py +71 -2
- letta_client/agents/groups/raw_client.py +51 -0
- letta_client/agents/groups/types/__init__.py +7 -0
- letta_client/agents/groups/types/groups_list_request_order.py +5 -0
- letta_client/agents/messages/__init__.py +2 -0
- letta_client/agents/messages/client.py +55 -14
- letta_client/agents/messages/raw_client.py +35 -14
- letta_client/agents/messages/types/__init__.py +2 -0
- letta_client/agents/messages/types/messages_list_request_order.py +5 -0
- letta_client/agents/passages/client.py +29 -0
- letta_client/agents/raw_client.py +4 -4
- letta_client/agents/sources/__init__.py +3 -0
- letta_client/agents/sources/client.py +77 -4
- letta_client/agents/sources/raw_client.py +63 -2
- letta_client/agents/sources/types/__init__.py +7 -0
- letta_client/agents/sources/types/sources_list_request_order.py +5 -0
- letta_client/agents/tools/__init__.py +3 -0
- letta_client/agents/tools/client.py +77 -4
- letta_client/agents/tools/raw_client.py +63 -2
- letta_client/agents/tools/types/__init__.py +7 -0
- letta_client/agents/tools/types/tools_list_request_order.py +5 -0
- letta_client/archives/client.py +16 -2
- letta_client/base_client.py +3 -0
- letta_client/batches/client.py +12 -2
- letta_client/batches/messages/client.py +10 -0
- letta_client/blocks/agents/client.py +8 -0
- letta_client/blocks/client.py +32 -2
- letta_client/chat/__init__.py +7 -0
- letta_client/chat/client.py +255 -0
- letta_client/chat/raw_client.py +269 -0
- letta_client/chat/types/__init__.py +8 -0
- letta_client/chat/types/chat_completion_request_messages_item.py +19 -0
- letta_client/chat/types/chat_completion_request_stop.py +5 -0
- letta_client/client_side_access_tokens/client.py +10 -2
- letta_client/core/client_wrapper.py +2 -2
- letta_client/errors/__init__.py +2 -0
- letta_client/errors/gone_error.py +10 -0
- letta_client/folders/agents/client.py +8 -0
- letta_client/folders/client.py +20 -4
- letta_client/folders/files/client.py +14 -0
- letta_client/folders/passages/client.py +8 -0
- letta_client/groups/client.py +16 -2
- letta_client/groups/messages/client.py +14 -0
- letta_client/identities/agents/client.py +8 -0
- letta_client/identities/blocks/client.py +8 -0
- letta_client/identities/client.py +20 -2
- letta_client/jobs/__init__.py +3 -0
- letta_client/jobs/client.py +61 -12
- letta_client/jobs/raw_client.py +29 -8
- letta_client/jobs/types/__init__.py +7 -0
- letta_client/jobs/types/jobs_list_request_order.py +5 -0
- letta_client/models/client.py +8 -2
- letta_client/projects/client.py +10 -2
- letta_client/providers/client.py +90 -2
- letta_client/providers/raw_client.py +102 -0
- letta_client/runs/__init__.py +11 -2
- letta_client/runs/client.py +150 -18
- letta_client/runs/messages/client.py +30 -2
- letta_client/runs/messages/raw_client.py +10 -0
- letta_client/runs/raw_client.py +144 -14
- letta_client/runs/steps/__init__.py +3 -0
- letta_client/runs/steps/client.py +39 -30
- letta_client/runs/steps/raw_client.py +19 -28
- letta_client/runs/steps/types/__init__.py +7 -0
- letta_client/runs/steps/types/steps_list_request_order.py +5 -0
- letta_client/runs/types/__init__.py +2 -1
- letta_client/runs/types/runs_list_request_order.py +5 -0
- letta_client/sources/client.py +8 -2
- letta_client/sources/files/client.py +12 -0
- letta_client/sources/passages/client.py +6 -0
- letta_client/steps/client.py +26 -2
- letta_client/steps/messages/client.py +8 -0
- letta_client/tags/client.py +16 -2
- letta_client/templates/__init__.py +12 -0
- letta_client/templates/client.py +30 -4
- letta_client/templates/raw_client.py +2 -2
- letta_client/templates/types/__init__.py +24 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py +4 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name.py +14 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name_item.py +5 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item.py +4 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_value_enc.py +14 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_secrets_item_value_enc_item.py +5 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item.py +6 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_value_enc.py +16 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_exec_environment_variables_item_value_enc_item.py +7 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_tool_type.py +1 -1
- letta_client/tools/client.py +30 -220
- letta_client/tools/raw_client.py +0 -292
- letta_client/types/__init__.py +130 -22
- letta_client/types/agent_environment_variable.py +5 -0
- letta_client/types/{action_parameters_model.py → annotation.py} +4 -10
- letta_client/types/{action_response_model.py → annotation_url_citation.py} +4 -9
- letta_client/types/approval_create.py +8 -2
- letta_client/types/approval_create_approvals_item.py +8 -0
- letta_client/types/approval_response_message.py +8 -2
- letta_client/types/approval_response_message_approvals_item.py +8 -0
- letta_client/types/approval_return.py +34 -0
- letta_client/{agents/templates/types/templates_migrate_response.py → types/audio.py} +4 -4
- letta_client/types/chat_completion.py +30 -0
- letta_client/types/chat_completion_assistant_message_param.py +30 -0
- letta_client/types/chat_completion_assistant_message_param_content.py +9 -0
- letta_client/types/chat_completion_assistant_message_param_content_item.py +10 -0
- letta_client/types/chat_completion_assistant_message_param_tool_calls_item.py +10 -0
- letta_client/types/chat_completion_audio.py +23 -0
- letta_client/types/chat_completion_content_part_image_param.py +22 -0
- letta_client/types/chat_completion_content_part_input_audio_param.py +22 -0
- letta_client/types/chat_completion_content_part_refusal_param.py +21 -0
- letta_client/types/chat_completion_content_part_text_param.py +21 -0
- letta_client/types/chat_completion_developer_message_param.py +23 -0
- letta_client/types/chat_completion_developer_message_param_content.py +7 -0
- letta_client/types/chat_completion_function_message_param.py +22 -0
- letta_client/types/chat_completion_message.py +30 -0
- letta_client/types/chat_completion_message_custom_tool_call.py +23 -0
- letta_client/types/chat_completion_message_custom_tool_call_param.py +23 -0
- letta_client/types/chat_completion_message_function_tool_call_input.py +25 -0
- letta_client/types/{chat_completion_message_function_tool_call.py → chat_completion_message_function_tool_call_output.py} +3 -3
- letta_client/types/chat_completion_message_function_tool_call_param.py +25 -0
- letta_client/types/chat_completion_message_tool_calls_item.py +10 -0
- letta_client/types/chat_completion_service_tier.py +5 -0
- letta_client/types/chat_completion_system_message_param.py +23 -0
- letta_client/types/chat_completion_system_message_param_content.py +7 -0
- letta_client/types/chat_completion_token_logprob.py +24 -0
- letta_client/types/chat_completion_tool_message_param.py +23 -0
- letta_client/types/chat_completion_tool_message_param_content.py +7 -0
- letta_client/types/chat_completion_user_message_param.py +23 -0
- letta_client/types/chat_completion_user_message_param_content.py +7 -0
- letta_client/types/chat_completion_user_message_param_content_item.py +15 -0
- letta_client/types/choice.py +26 -0
- letta_client/types/choice_finish_reason.py +7 -0
- letta_client/types/choice_logprobs.py +22 -0
- letta_client/types/completion_tokens_details.py +23 -0
- letta_client/types/{auth_scheme_field.py → completion_usage.py} +8 -13
- letta_client/types/custom_input.py +21 -0
- letta_client/types/custom_output.py +21 -0
- letta_client/types/file.py +22 -0
- letta_client/types/file_file.py +22 -0
- letta_client/types/function_call_input.py +21 -0
- letta_client/types/function_call_output.py +21 -0
- letta_client/types/{function.py → function_output.py} +1 -1
- letta_client/types/image_url.py +22 -0
- letta_client/types/image_url_detail.py +5 -0
- letta_client/types/input_audio.py +22 -0
- letta_client/types/input_audio_format.py +5 -0
- letta_client/types/internal_template_agent_create.py +2 -2
- letta_client/types/letta_schemas_agent_file_agent_schema.py +2 -2
- letta_client/types/letta_schemas_agent_file_message_schema.py +27 -4
- letta_client/types/letta_schemas_agent_file_message_schema_approvals_item.py +8 -0
- letta_client/types/letta_schemas_letta_message_tool_return.py +26 -0
- letta_client/types/letta_schemas_letta_message_tool_return_status.py +5 -0
- letta_client/types/{tool_return.py → letta_schemas_message_tool_return.py} +9 -3
- letta_client/types/letta_schemas_message_tool_return_status.py +5 -0
- letta_client/types/llm_config.py +5 -0
- letta_client/types/message.py +10 -4
- letta_client/types/message_approvals_item.py +8 -0
- letta_client/types/omitted_reasoning_content.py +4 -0
- letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_function.py +21 -0
- letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_param_function.py +21 -0
- letta_client/types/prompt_tokens_details.py +21 -0
- letta_client/types/provider.py +10 -0
- letta_client/types/run_metrics.py +58 -0
- letta_client/types/sandbox_environment_variable.py +5 -0
- letta_client/types/text_content.py +5 -0
- letta_client/types/tool_call_content.py +5 -0
- letta_client/types/tool_call_message.py +2 -0
- letta_client/types/tool_call_message_tool_calls.py +8 -0
- letta_client/types/tool_return_message.py +8 -5
- letta_client/types/tool_type.py +1 -1
- letta_client/types/top_logprob.py +22 -0
- letta_client/voice/client.py +14 -0
- letta_client/voice/raw_client.py +37 -0
- letta_client-1.0.0a3.dist-info/METADATA +422 -0
- {letta_client-1.0.0a1.dist-info → letta_client-1.0.0a3.dist-info}/RECORD +193 -115
- letta_client/agents/templates/__init__.py +0 -7
- letta_client/agents/templates/client.py +0 -307
- letta_client/agents/templates/raw_client.py +0 -275
- letta_client/agents/templates/types/__init__.py +0 -7
- letta_client/types/action_model.py +0 -39
- letta_client/types/app_auth_scheme.py +0 -35
- letta_client/types/app_auth_scheme_auth_mode.py +0 -19
- letta_client/types/app_model.py +0 -45
- letta_client-1.0.0a1.dist-info/METADATA +0 -211
- {letta_client-1.0.0a1.dist-info → letta_client-1.0.0a3.dist-info}/WHEEL +0 -0
|
@@ -1,56 +1,64 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
3
|
-
letta_client/agents/blocks/__init__.py,sha256=
|
|
4
|
-
letta_client/agents/blocks/client.py,sha256
|
|
5
|
-
letta_client/agents/blocks/raw_client.py,sha256=
|
|
6
|
-
letta_client/agents/
|
|
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=
|
|
14
|
-
letta_client/agents/files/client.py,sha256=
|
|
15
|
-
letta_client/agents/files/raw_client.py,sha256=
|
|
16
|
-
letta_client/agents/
|
|
17
|
-
letta_client/agents/
|
|
18
|
-
letta_client/agents/folders/
|
|
19
|
-
letta_client/agents/
|
|
20
|
-
letta_client/agents/
|
|
21
|
-
letta_client/agents/
|
|
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=
|
|
28
|
-
letta_client/agents/messages/client.py,sha256=
|
|
29
|
-
letta_client/agents/messages/raw_client.py,sha256=
|
|
30
|
-
letta_client/agents/messages/types/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
43
|
-
letta_client/agents/sources/__init__.py,sha256=
|
|
44
|
-
letta_client/agents/sources/client.py,sha256=
|
|
45
|
-
letta_client/agents/sources/raw_client.py,sha256=
|
|
46
|
-
letta_client/agents/
|
|
47
|
-
letta_client/agents/
|
|
48
|
-
letta_client/agents/
|
|
49
|
-
letta_client/agents/
|
|
50
|
-
letta_client/agents/
|
|
51
|
-
letta_client/agents/tools/__init__.py,sha256=
|
|
52
|
-
letta_client/agents/tools/
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
128
|
+
letta_client/core/client_wrapper.py,sha256=VE_DZTnG5Ld_L4WtChyiwD28MgakVIBEb2wcGzTb8Vs,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=
|
|
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=
|
|
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
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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
|
|
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=
|
|
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=
|
|
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=
|
|
192
|
-
letta_client/jobs/client.py,sha256=
|
|
193
|
-
letta_client/jobs/raw_client.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
208
|
-
letta_client/providers/raw_client.py,sha256=
|
|
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=
|
|
213
|
-
letta_client/runs/client.py,sha256=
|
|
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=
|
|
216
|
-
letta_client/runs/messages/raw_client.py,sha256=
|
|
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=
|
|
220
|
-
letta_client/runs/steps/__init__.py,sha256=
|
|
221
|
-
letta_client/runs/steps/client.py,sha256=
|
|
222
|
-
letta_client/runs/steps/raw_client.py,sha256=
|
|
223
|
-
letta_client/runs/types/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
271
|
-
letta_client/templates/raw_client.py,sha256=
|
|
272
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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,6 +580,8 @@ 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
|
|
561
587
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_args.py,sha256=03SXAokrieQIeDajWuYJt7E2tOr2kqMgMc37xooi7YI,1538
|
|
@@ -690,7 +716,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
690
716
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_source_code_item.py,sha256=C4BCxqXMLu8iFiSYcUe9OXNMvie9tsOngtim-1lM3x8,197
|
|
691
717
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_source_type.py,sha256=lSGATrRScteYayC95Oj6PSNooF7YWJXmLentp9stDWU,499
|
|
692
718
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_source_type_item.py,sha256=B5EL59bffAOWVRmxo51Hah0iLQZCtllVW3tS_znwsgY,197
|
|
693
|
-
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_tool_type.py,sha256=
|
|
719
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_tool_type.py,sha256=z70KxZqxSbckHwagBGVjTTjJUK32ctWnmHNWckRRquM,519
|
|
694
720
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_updated_at.py,sha256=md1uzZkIMB7ANl_-uuKB8RVwAP187SBB_jLQTh7Tk2U,490
|
|
695
721
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_updated_at_item.py,sha256=uXkJJCwx44tIcYHCkXzAqvIvhtQDN9mYZanKbLBJNyI,187
|
|
696
722
|
letta_client/templates/types/templates_create_agents_from_template_response_group.py,sha256=A7PhpDmlo604OJaWWmTMN1osMv3aM3alpaGq38KIel4,4591
|
|
@@ -765,8 +791,8 @@ letta_client/templates/types/templates_set_current_template_from_snapshot_respon
|
|
|
765
791
|
letta_client/templates/types/templates_update_current_template_from_agent_file_response.py,sha256=bVf2X_l_UU7ofzBqhj7lrX6r344ZU8EKhEND_5VAlcg,644
|
|
766
792
|
letta_client/templates/types/templates_update_template_description_response.py,sha256=0dYH6_6EcEzMSaU9Igau0xKJPVYGXA9Pf9_ON6kY0es,594
|
|
767
793
|
letta_client/tools/__init__.py,sha256=yO09WTcaXR27yvtC7K7Sj59WVyG6ET_VkhwoAxfqFbM,781
|
|
768
|
-
letta_client/tools/client.py,sha256=
|
|
769
|
-
letta_client/tools/raw_client.py,sha256=
|
|
794
|
+
letta_client/tools/client.py,sha256=dngnkoDfcpVLQEcF950R3Bk71rbzj4l5jIvmvokeIlY,63529
|
|
795
|
+
letta_client/tools/raw_client.py,sha256=f96iRpLfxbN5Mrv6v8hGUVTJnrl45OeABlI6RyHNWFo,103108
|
|
770
796
|
letta_client/tools/types/__init__.py,sha256=iW8f30mPe50eMV3qzE_c-yzmW7kYb8G-DVYijiaVJcQ,1144
|
|
771
797
|
letta_client/tools/types/add_mcp_server_request.py,sha256=N9WDntHlIAxRQafdSnIydUNEEaOwnDISqGLMyHBrWr8,372
|
|
772
798
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=LryGwJSSLAX6crN_EctrRlJo0OCOUOK5mEGsgR4hONg,377
|
|
@@ -779,32 +805,31 @@ letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzu
|
|
|
779
805
|
letta_client/tools/types/tools_list_request_order.py,sha256=Gi0MwZ1KN1X3--U7NDEMQOQu1xvfJMdGIbCj5M0w8KM,160
|
|
780
806
|
letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
|
|
781
807
|
letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
|
|
782
|
-
letta_client/types/__init__.py,sha256=
|
|
783
|
-
letta_client/types/
|
|
784
|
-
letta_client/types/action_parameters_model.py,sha256=s1mJ4tycms8UmCFsxyjKr6RbghSuqv35xpa9mK42sjg,829
|
|
785
|
-
letta_client/types/action_response_model.py,sha256=LcML150OvsKimVV3sP4jSFh8pVxQXn_r_ff8DADOr3c,825
|
|
786
|
-
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
|
|
787
810
|
letta_client/types/agent_file_attachment.py,sha256=J8zj7RkNkKr2ikgY1nbtcMNiBzZchwo_fh4j6iySqF4,1807
|
|
788
811
|
letta_client/types/agent_file_schema.py,sha256=yD3QqRVWQr7T9M7OXL9KWNCP9BiR9wZC48xKnGzqsxQ,2212
|
|
789
812
|
letta_client/types/agent_state.py,sha256=49E2WuDdG0lJ19uvS1zbjXZMLOfZnhKFSaYGFJlLrGY,7084
|
|
790
813
|
letta_client/types/agent_state_response_format.py,sha256=EsaiTnlxRPkGPBc67DCsVAARsGubFQM7Xbs12jtsvWw,378
|
|
791
814
|
letta_client/types/agent_state_tool_rules_item.py,sha256=m0DKEipSMed98rueO2oqqBNhNp5-l-mfBvUGHSS0Ibg,825
|
|
792
815
|
letta_client/types/agent_type.py,sha256=UiNBTp7UPIIF2LJZAQlBgd-Rqa20M3WNmJYuCwEHSeA,396
|
|
793
|
-
letta_client/types/
|
|
794
|
-
letta_client/types/
|
|
795
|
-
letta_client/types/
|
|
796
|
-
letta_client/types/
|
|
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
|
|
797
820
|
letta_client/types/approval_request_message.py,sha256=8XsS5rAV_12RjUsweUNMHDwmhvbiPIUDTZAWVKz7f08,1568
|
|
798
821
|
letta_client/types/approval_request_message_tool_call.py,sha256=ddPhd_Yar8rXzf78LP-QaBgPWf3mXziPflN_qgJus0U,227
|
|
799
|
-
letta_client/types/approval_response_message.py,sha256=
|
|
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
|
|
800
825
|
letta_client/types/archival_memory_search_response.py,sha256=zMvo5jJPTxRWW9Cq6d5dsacG9k4LoFcyBCfD_pLe4kg,852
|
|
801
826
|
letta_client/types/archival_memory_search_result.py,sha256=UlAWvWw1YGKAhLfAZZ30-oHLL1oDXFkaXBEAfNkQs3s,926
|
|
802
827
|
letta_client/types/archive.py,sha256=LmCwayMbPoji5hQvwo2qP9z2qFncml4MZT9qw3rl1CY,2260
|
|
803
828
|
letta_client/types/assistant_message.py,sha256=iFCIXRIndpEfBpdv5jX1IMBOWKJsciQF12lfB4I9bHI,1631
|
|
804
829
|
letta_client/types/assistant_message_content.py,sha256=rJZePqcZN74tqx-FbArUF1FaqvATOYAn87mvdpqyINA,242
|
|
830
|
+
letta_client/types/audio.py,sha256=1HlHjJ1FEv4J5G4jQY24G0H91T5LT3K6e-dnQ1Di7i8,549
|
|
805
831
|
letta_client/types/auth_request.py,sha256=kIiQTHpCLr0UPAt6SVL60cPnFjRW1x4tpazupclHSkk,684
|
|
806
832
|
letta_client/types/auth_response.py,sha256=IUpPVCri_qwX0jBLRvc8FVVUWbM2LH2NeUdMKwCWGBc,862
|
|
807
|
-
letta_client/types/auth_scheme_field.py,sha256=OFoPs6Xdvw-Z13mb7lQFf25z0IE6Z83f_8_gyiMcGtA,882
|
|
808
833
|
letta_client/types/bad_request_error_body.py,sha256=FXRnHlblilUaHvShh1ia8TgLy5Z1HWwfx7-OE-6d3AQ,568
|
|
809
834
|
letta_client/types/base_64_image.py,sha256=Ta6vR3od9sYQGrWgOSrFq7cS0-mm6cGTa2gWdFpSmo0,965
|
|
810
835
|
letta_client/types/base_tool_rule_schema.py,sha256=e2pHhj1fdWmuBfkyD_MODwCQnM_MrN6LL2CEx0SqKvY,583
|
|
@@ -813,10 +838,43 @@ letta_client/types/block.py,sha256=g-uYemwR0gGBgJIad4cMj8gx3gVI8EfhHiLOvrZ_Kv8,3
|
|
|
813
838
|
letta_client/types/block_schema.py,sha256=iCXe0NHt_HQFOoc8rwplIE2GQehgArOotIecrtKKsD4,2304
|
|
814
839
|
letta_client/types/block_update.py,sha256=jauNp2WlyKT96FgAIpbzWGq4d8oKNWVbxZvepetvl8c,2389
|
|
815
840
|
letta_client/types/body_export_agent.py,sha256=u9gPdccaHkSqKy9BmbXLoK4psoggV6FtShi8GDKrTZQ,870
|
|
816
|
-
letta_client/types/
|
|
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
|
|
817
870
|
letta_client/types/child_tool_rule.py,sha256=euv59ZHg1fWRAz0--AOY1HMVd74PDLg7lZh8BrMzM_M,1336
|
|
818
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
|
|
819
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
|
|
820
878
|
letta_client/types/components_schemas_text_content.py,sha256=F21GPPwREb6GodS4dGsT7-4wySEUdhpq6krznF-sOPE,147
|
|
821
879
|
letta_client/types/conditional_tool_rule.py,sha256=kOGHpAMgTPe7M7JWuUbfrnDJ_CEfqyasbwBW75e2DXI,1425
|
|
822
880
|
letta_client/types/conditional_tool_rule_schema.py,sha256=zb6LXzC6Hk4Q-wdehR85aUWiWZogece0XAdlbh3EC1Q,718
|
|
@@ -825,6 +883,8 @@ letta_client/types/context_window_overview.py,sha256=1rWCBJvgJkkyMVPjgbhx1y26WbR
|
|
|
825
883
|
letta_client/types/continue_tool_rule.py,sha256=X3ZV_sxbTjMsg20NyuEUIl_0bxHUSj-vpUfu512LO70,997
|
|
826
884
|
letta_client/types/core_memory_block_schema.py,sha256=5_k2XFEsPDwldGfPdzHW3j_7IJOBqTVscq89lXTD4d8,985
|
|
827
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
|
|
828
888
|
letta_client/types/delete_deployment_response.py,sha256=Sa6HkM8f-uh4SnlXKpDfnTk_T7giKOZpzTTfAd0_chA,825
|
|
829
889
|
letta_client/types/deployment_entity.py,sha256=JE3xKaULaPxidiuIiyeJjrU0wVS7NKXhD-p7vnLAJBw,786
|
|
830
890
|
letta_client/types/duplicate_file_handling.py,sha256=xIYYN3qYtFaWHerE9KHGmXtyQb54pyE5xLREzAFakxI,183
|
|
@@ -834,15 +894,19 @@ letta_client/types/e_2_b_sandbox_config.py,sha256=LOR4k4sUyAGQWQ0AbJGLxvZesZAvEr
|
|
|
834
894
|
letta_client/types/embedding_config.py,sha256=BC5HNq_R0dvzcvH1Ncm2YONvkKm_LurMwosyE5RYJS4,2003
|
|
835
895
|
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=KGUZl9cAQNedLGhaOfuvAEE4JtDvVz6wlWFMAQEfSSk,561
|
|
836
896
|
letta_client/types/feedback_type.py,sha256=sDfsniSnnpSwzZqfIkRL7vYPxYqdwURpI6LMI7eDkoQ,160
|
|
897
|
+
letta_client/types/file.py,sha256=YPkTYb8V_XsvuQ6qXUzzDsp4iQMlZxPormZWoy7ROnI,629
|
|
837
898
|
letta_client/types/file_agent_schema.py,sha256=I0uHseeqx-FDK5pVAb6-0zrqpfNdXcjDTb4_LS2QmGw,1890
|
|
838
899
|
letta_client/types/file_block.py,sha256=0uRgIMwZDZuLZ-QklPts62aNTDglQeumSLtpwP6TWQ4,3268
|
|
900
|
+
letta_client/types/file_file.py,sha256=JEE9Aa0puZ4j6wZUI6HbZfF8keB_-qoPh4C-Mn6oOQ0,666
|
|
839
901
|
letta_client/types/file_metadata.py,sha256=RH11HWwyMyO2hmZzboTJzrLaOt7r7-I8pExUkXv0ja4,2831
|
|
840
902
|
letta_client/types/file_processing_status.py,sha256=8W8VAx9-jCaUx6q6mvyCMyLoa2peLTE_sgIaGloOWo4,201
|
|
841
903
|
letta_client/types/file_schema.py,sha256=AoHwU5PG9D-d-UX3td0i4j8UOH7QF_jstQUms4UE6lw,2545
|
|
842
904
|
letta_client/types/file_stats.py,sha256=37Uo8BbSAop9PMJBhAgNvJrJHvmMllk5ak_kKr9Zp78,876
|
|
843
905
|
letta_client/types/folder.py,sha256=BFdS47RqiLmq6c8YfzpGhNYsHhe6hfRXXnQD3rZhv-o,2371
|
|
844
|
-
letta_client/types/
|
|
906
|
+
letta_client/types/function_call_input.py,sha256=BQYKx_NNM5LlUPHa2gULHMweO5mByWbtVBHTBezPypE,582
|
|
907
|
+
letta_client/types/function_call_output.py,sha256=UWUQCMpTfgIlOpXfZa9jVTpa8UOS5m4cCzuvs2_XPNQ,583
|
|
845
908
|
letta_client/types/function_definition.py,sha256=D17xcDfXZaOyivBi60NGAh9sSn5Kl2xyLtW4kDGHxxw,736
|
|
909
|
+
letta_client/types/function_output.py,sha256=PmcCPw239hjzoP32ynV-9UDQRNpDhrkpICpYLKqJwV4,579
|
|
846
910
|
letta_client/types/function_tool.py,sha256=DB8zGBTGGS7evNtbiO8_aE2xg_89exKhgUUQ9L8DB9M,679
|
|
847
911
|
letta_client/types/generate_tool_input.py,sha256=9eqavChO3e0hXmovp1GvRIsNd8N11pBCiFjKpbG-WG8,1096
|
|
848
912
|
letta_client/types/generate_tool_output.py,sha256=0Heilco0ySpWaKsSGF0JIYHCRblVhYrcppBfhlpy98E,861
|
|
@@ -860,10 +924,14 @@ letta_client/types/identity_property_value.py,sha256=SQJz97fXG0XHqOGYmYRmHLbI4On
|
|
|
860
924
|
letta_client/types/identity_type.py,sha256=YeGvqit1VLK7q0GpNuTyfbCxXO7BJjq-hFSiFZexswk,160
|
|
861
925
|
letta_client/types/image_content.py,sha256=wbWexW-_-DpoD4tU7WPappgbJUFvip5OY-tJCiJsbTQ,736
|
|
862
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
|
|
863
929
|
letta_client/types/imported_agents_response.py,sha256=PDBKbNcUNpRumkUgQTE4-pfPc9XCd9mVdf0VeDFGLV8,716
|
|
864
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
|
|
865
933
|
letta_client/types/internal_server_error_body.py,sha256=uDNP8p8Qm44sjvt4uTvK6jbSq4jbAcLplY6zd4e8mYY,572
|
|
866
|
-
letta_client/types/internal_template_agent_create.py,sha256=
|
|
934
|
+
letta_client/types/internal_template_agent_create.py,sha256=p84Adg1j7snL8EKutJDIxZ6aprpNXEz3qa8AlMnLjoU,8445
|
|
867
935
|
letta_client/types/internal_template_agent_create_response_format.py,sha256=4SOu2jhF5qZDlDorGrZ2cdyUF2do0IOtslZ_219qtzk,401
|
|
868
936
|
letta_client/types/internal_template_agent_create_tool_rules_item.py,sha256=zAZ1RbQnzI0K9YAP3OcBxRyi2WRx6G60lOnt6sekiS8,842
|
|
869
937
|
letta_client/types/internal_template_block_create.py,sha256=zxyp52nkcFrWzgM4IhHqehSwMcSSBSb6f5oD3XHE60c,2199
|
|
@@ -885,12 +953,17 @@ letta_client/types/letta_request.py,sha256=mPwcdsa_QtDkoDk3cspY870DQKZL6hKHPezYB
|
|
|
885
953
|
letta_client/types/letta_request_config.py,sha256=7Jxvs4Vja2GguDvESB5YxbpOCHBpJNP0LZ4u8ErMQLU,1347
|
|
886
954
|
letta_client/types/letta_request_messages_item.py,sha256=nZdjVqfS6X6STADIqgRPqn6tL_RIBxTZU7PDaQdhNU0,238
|
|
887
955
|
letta_client/types/letta_response.py,sha256=XsdGEunygyUZc-jegfZ0dqmERToeFQShvJY5JNmGTHM,1396
|
|
888
|
-
letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=
|
|
956
|
+
letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=Xu2sfySuku8TycxlREtnKVnplNSbfIYpAPFUoUzLV0k,9319
|
|
889
957
|
letta_client/types/letta_schemas_agent_file_agent_schema_response_format.py,sha256=ZXsdcfac2W9-vcdCAmdCT6YX1n59LKTbdNHfWkykGm8,406
|
|
890
958
|
letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=vjLR2zQtZl__7v6WNY-NtaxF2UBqiTiorO-Gw6B9rbc,847
|
|
891
|
-
letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=
|
|
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
|
|
892
961
|
letta_client/types/letta_schemas_agent_file_message_schema_content.py,sha256=7Co1Px87C9iREMZ3882Pt2NJCufjU5bOp0JgDnf46DQ,248
|
|
893
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
|
|
894
967
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema.py,sha256=lfuVF1g3x3MtgW6Ed1glJJ0OBRZtMuuYPDbt6sm7hFc,2230
|
|
895
968
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema_tool_rules_item.py,sha256=emnqbk3YjJpbdObglJCYuiLLnR-p657UmDEbZygDxv8,523
|
|
896
969
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_message_schema.py,sha256=RPwPiGzs8TU1JwkQIRm1wFHLt8a5KU4WFFvuDvh_NII,1037
|
|
@@ -901,7 +974,7 @@ letta_client/types/letta_streaming_request_messages_item.py,sha256=1uUqT_cli1mJB
|
|
|
901
974
|
letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
|
|
902
975
|
letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
|
|
903
976
|
letta_client/types/list_deployment_entities_response.py,sha256=0LMKw1XooxJy_h_Glmkyz0t-crHkI02j4UqWP4nJb-w,808
|
|
904
|
-
letta_client/types/llm_config.py,sha256
|
|
977
|
+
letta_client/types/llm_config.py,sha256=MoMnGTXJkDp15-QGQcIfLyyuC6m9YWxXjwO6zZNJAWk,4125
|
|
905
978
|
letta_client/types/llm_config_compatibility_type.py,sha256=m6E90W-R9-Oi3EGSV_GdPIuVC2rmAH7TsUKbl79EiAQ,165
|
|
906
979
|
letta_client/types/llm_config_model_endpoint_type.py,sha256=o59NDg3-3ud2mqAPYze40G7kyVD7pkRRbdT_vdTqL24,602
|
|
907
980
|
letta_client/types/llm_config_reasoning_effort.py,sha256=r4I3i2c7RxkBe-xXOE_XCXwjp9Y0QoaF2SVY7WYPdg4,184
|
|
@@ -917,7 +990,8 @@ letta_client/types/mcp_tool_execute_request.py,sha256=SVH2RlYN6Lb95-8eSB_PZYpHK_
|
|
|
917
990
|
letta_client/types/mcp_tool_health.py,sha256=ToG3Ut-9nvPkdFNL4gzu1LMv4bNmD7yFZ-bkMO16mzg,866
|
|
918
991
|
letta_client/types/memory.py,sha256=ndQGYXZlFm5EkvL0uCBUAVMLSsn3kLPkQaPbeTc60-8,1418
|
|
919
992
|
letta_client/types/memory_agent_type.py,sha256=YYUeXFXiBY94uC6rFw2ELewF5VOKnpeQrGfb5YJ-a4M,162
|
|
920
|
-
letta_client/types/message.py,sha256=
|
|
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
|
|
921
995
|
letta_client/types/message_content_item.py,sha256=c1nitSTFwNnLPQe9hTlVTLdS8dPdU-6rCQgXQLRHekI,731
|
|
922
996
|
letta_client/types/message_create.py,sha256=OCmj0ZZLk2v48I4w3vZOXAmt7tySBG6U0iYZv4vsXEo,1739
|
|
923
997
|
letta_client/types/message_create_content.py,sha256=pKppl-N8IdqR-ShWCZ0HN-3b13plPE2vSi6YcRM3w8o,227
|
|
@@ -929,7 +1003,9 @@ letta_client/types/modal_sandbox_config.py,sha256=QBGbV1563_tr6Fep0uBy1oboERRQC-
|
|
|
929
1003
|
letta_client/types/modal_sandbox_config_language.py,sha256=RHJmtMZwO-kcYqHIWFel0R2LwKZbAw19V-bhEUguDI0,174
|
|
930
1004
|
letta_client/types/not_found_error_body.py,sha256=yE3-m6hzUyibPfMU09MqPOfairn7WtqdrqRpybnfsxk,566
|
|
931
1005
|
letta_client/types/npm_requirement.py,sha256=XnJhQNy8ywDXzgKuT4wT8PTk-6umQ_3N7Ok9RKuyT2E,774
|
|
932
|
-
letta_client/types/omitted_reasoning_content.py,sha256=
|
|
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
|
|
933
1009
|
letta_client/types/organization.py,sha256=RV0shhT3Lg3WlJG6vcIFRGb7lpf6nWCZGBofD67f4po,1081
|
|
934
1010
|
letta_client/types/organization_create.py,sha256=ixvuJTv8UDefV9fS7gHCTjr-a32eTDhjaJMay5fE4Ak,815
|
|
935
1011
|
letta_client/types/organization_sources_stats.py,sha256=58f-ZnVS0rrRXJHBa4y47Oa_fymEKnNiwbc8r_L7Dmo,1166
|
|
@@ -941,7 +1017,8 @@ letta_client/types/parent_tool_rule.py,sha256=DImM1meaByEEjTGmOUX9xM0dG6KhrCVZXJ
|
|
|
941
1017
|
letta_client/types/passage.py,sha256=dgVQ3S8Knf8u9Pj2pteird2J3DsiDgm3sj8Y2bQI0AA,3319
|
|
942
1018
|
letta_client/types/payment_required_error_body.py,sha256=ODQ2fA8EF1Y_pfZocseOg1Ryyj9WfgjS5QeSC7WTIbc,590
|
|
943
1019
|
letta_client/types/pip_requirement.py,sha256=A9mFgoz-yAlVHsy8vljtYdtJInfN7qL1JePPaPuTr2Y,774
|
|
944
|
-
letta_client/types/
|
|
1020
|
+
letta_client/types/prompt_tokens_details.py,sha256=S1M1NLp31_7UHmru4gLEw6qtXeKg5kh8opqflnWtYZs,644
|
|
1021
|
+
letta_client/types/provider.py,sha256=LhaNfyK8kEBC4i_q9NtQbWZiwtnw9IUzGv-2-TOUX7Y,2146
|
|
945
1022
|
letta_client/types/provider_category.py,sha256=St4tSc_Wc5huF79kb088-L-tRz9Cj2_b5DqEoU4eDIs,156
|
|
946
1023
|
letta_client/types/provider_trace.py,sha256=d7_IpoEgLeqnPaElWjOp6iAL8SbeI4DZsBaaaFtkorM,2201
|
|
947
1024
|
letta_client/types/provider_type.py,sha256=1nKjLUXPY7_O_nW-AjznrEMk3NxUSggmQMj8wHsGx8A,487
|
|
@@ -954,13 +1031,14 @@ letta_client/types/requires_approval_tool_rule.py,sha256=1mKQLGjy0NBcBgbLK0p1rBs
|
|
|
954
1031
|
letta_client/types/round_robin_manager.py,sha256=cGnv5WFZowjguzNLX9Nv3DDfdgzDolN3onSkLLjAl6Y,701
|
|
955
1032
|
letta_client/types/round_robin_manager_update.py,sha256=0auliO4ChHHCexaiEfXKmERz_4IWz5YvjRsQHbUqVCI,707
|
|
956
1033
|
letta_client/types/run.py,sha256=eAbrUDxvBPrnss2vV7i62fySusUj5KvomS5amqbKQq0,3651
|
|
1034
|
+
letta_client/types/run_metrics.py,sha256=TS0lQ8fa2kO8W65WwXULZ06gYEdJoRELnLalof3iwXQ,1602
|
|
957
1035
|
letta_client/types/run_status.py,sha256=wgTK1qjDWWxXkolmi6q2Vc8AcnO2sCCDnj1ShO9t1Eg,191
|
|
958
1036
|
letta_client/types/sandbox_config.py,sha256=YWQpDOHkiqEtp-xa4jjQA3QyGq4ZXNU8UDardnAvxhw,1551
|
|
959
1037
|
letta_client/types/sandbox_config_create.py,sha256=fGMGiKbuf5ii1o-tHRHAjnAu0FB4JktMjlvu6uBRAsY,731
|
|
960
1038
|
letta_client/types/sandbox_config_create_config.py,sha256=0jPsYtxeoRXMLppFjWZCCjyobuBvlkf-GhAOdH8bmt4,337
|
|
961
1039
|
letta_client/types/sandbox_config_update.py,sha256=EXoxQGdHezHjzX0B3h-LVVAJgwHLVPdX0jpl1orP6jM,841
|
|
962
1040
|
letta_client/types/sandbox_config_update_config.py,sha256=xDLDR1l8Z12aB66w1fC-CoK9l5hFuWl_21oswcEsvw0,337
|
|
963
|
-
letta_client/types/sandbox_environment_variable.py,sha256=
|
|
1041
|
+
letta_client/types/sandbox_environment_variable.py,sha256=CmU4v0-GaoP_ERAqr4qyOjiw8geT9MK-HOw2Q94FVkc,1842
|
|
964
1042
|
letta_client/types/sandbox_environment_variable_create.py,sha256=d67wWB1b0UKnthFjD_TuRM_CUoGyZJE3p2y2z4BkWsM,891
|
|
965
1043
|
letta_client/types/sandbox_environment_variable_update.py,sha256=zsvqBW_oDBOcc7llvwAO9bMT08LR3iDamB36-fV1t5o,949
|
|
966
1044
|
letta_client/types/sandbox_type.py,sha256=ZaZNcRf9l39PZQTGjRucRFJFpkxOrrBBcwhiT2bSIiE,160
|
|
@@ -986,25 +1064,25 @@ letta_client/types/supervisor_manager_update.py,sha256=srC_cYti3h_DdWRmcrLMgWnMS
|
|
|
986
1064
|
letta_client/types/system_message.py,sha256=-jWKwRBrVleOGAE9n8VXCRk1sI6cFMw4KWB_3CsCeZw,1424
|
|
987
1065
|
letta_client/types/tag_schema.py,sha256=TtqUHpKMxiMD-k-4vQgCOxiwzKRFBjEGhaq8cd0hhtQ,554
|
|
988
1066
|
letta_client/types/terminal_tool_rule.py,sha256=-9AZYmPxH-cuSeIA8q6H610dC1yS4rb06MCPqwinW8s,993
|
|
989
|
-
letta_client/types/text_content.py,sha256=
|
|
1067
|
+
letta_client/types/text_content.py,sha256=xvfTOiaa36wpVOU1LvUSr_oZdI4Qo2NNIeOyiuT7RUI,839
|
|
990
1068
|
letta_client/types/text_response_format.py,sha256=MQ2iTTuJCzvk9qc4BEp6j9JvdZ_c7kiO_CnIqe6r_GU,655
|
|
991
1069
|
letta_client/types/tool.py,sha256=9ReKkcZEXTsKYjGb4G3pAL9gBzo35KA90V94ErKPyEQ,3448
|
|
992
1070
|
letta_client/types/tool_annotations.py,sha256=gOUNd0gxzHvSz57G5c8gxK45VTxzk2yoB1PBfJoQlvU,1505
|
|
993
1071
|
letta_client/types/tool_call.py,sha256=nIC6Tew85oekAwM7TWuD1nh-wMMSbwnHkDRIPh9znDk,595
|
|
994
|
-
letta_client/types/tool_call_content.py,sha256=
|
|
1072
|
+
letta_client/types/tool_call_content.py,sha256=EaIevYRAYg4ZkX2UsKDTMptydjBV7qZRYQwgg8n6lIQ,1161
|
|
995
1073
|
letta_client/types/tool_call_delta.py,sha256=BDXIgt8R_kNy6A2j-O5e-6LUD1CoRVQ78xZpdfy9G_I,672
|
|
996
|
-
letta_client/types/tool_call_message.py,sha256=
|
|
1074
|
+
letta_client/types/tool_call_message.py,sha256=GgiWt9NfUQZJirTujvzT85TUCowiv624e5XtbjNHzqc,1572
|
|
997
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
|
|
998
1077
|
letta_client/types/tool_call_node.py,sha256=yO3aw5lT2pxaOHAtvTN-wfcf-QVsO0OJAGAJpuoiXnA,1216
|
|
999
1078
|
letta_client/types/tool_create.py,sha256=u_WTFafiHtCzXSAoEcket5qdhTl3yAw8nWnuLVuBrwY,2123
|
|
1000
1079
|
letta_client/types/tool_env_var_schema.py,sha256=0LXRU-zRlBvMq9OZBnRHeZZvre3U3u3OF0zlBfgEXTo,661
|
|
1001
1080
|
letta_client/types/tool_json_schema.py,sha256=HFQvRiMLY1wWtAnnxgWA0hLKntgfPr-JLUdHoeKarj0,755
|
|
1002
|
-
letta_client/types/tool_return.py,sha256=P0hvUOPtIYs0y6yzDRPtY86JOZn-W75Hi4efUyc7CDI,985
|
|
1003
1081
|
letta_client/types/tool_return_content.py,sha256=Z18tVJa_FZoDHw2UL04XbTz3eEeUR-Qs0iydBFv3dog,957
|
|
1004
|
-
letta_client/types/tool_return_message.py,sha256=
|
|
1082
|
+
letta_client/types/tool_return_message.py,sha256=Vtr56gyZLr3iB3erHAYc7r-jvwZvDrGlbKJDSziBETE,2363
|
|
1005
1083
|
letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
1006
|
-
letta_client/types/
|
|
1007
|
-
letta_client/types/
|
|
1084
|
+
letta_client/types/tool_type.py,sha256=U6ThnhHgUoAQgIaYM06O_If4Zxenh4ysGVeMnDmzymk,459
|
|
1085
|
+
letta_client/types/top_logprob.py,sha256=0SvdKJig42cuLyZLTxB9PLPfpG2yqH9lxnxuebw85TQ,628
|
|
1008
1086
|
letta_client/types/update_assistant_message.py,sha256=M8Ltqt8YdOFdge7ahLm-7bPeccXwyq_sHI-WgY1IcyA,879
|
|
1009
1087
|
letta_client/types/update_assistant_message_content.py,sha256=kAStjnVa0o4YeuDgqMnAd5Jcq1Yhnxhlk7gplV0JohQ,248
|
|
1010
1088
|
letta_client/types/update_reasoning_message.py,sha256=shpVxOnD7jbOYrwTm68vUw1ieEi7RcIuJeTseY9v8WE,651
|
|
@@ -1030,8 +1108,8 @@ letta_client/types/voice_sleeptime_manager.py,sha256=Khknp54o_fOmYWiG4fco7mjCTzE
|
|
|
1030
1108
|
letta_client/types/voice_sleeptime_manager_update.py,sha256=L3AfdarfXWWOcWIQivUKP2w0nQGIjcYMKspyqSyAHHU,1260
|
|
1031
1109
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
1032
1110
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
1033
|
-
letta_client/voice/client.py,sha256=
|
|
1034
|
-
letta_client/voice/raw_client.py,sha256=
|
|
1035
|
-
letta_client-1.0.
|
|
1036
|
-
letta_client-1.0.
|
|
1037
|
-
letta_client-1.0.
|
|
1111
|
+
letta_client/voice/client.py,sha256=htBM9gwuGsyn3pK880QqtabE33S8eRdra1GltN08vCY,4146
|
|
1112
|
+
letta_client/voice/raw_client.py,sha256=GQUKwqsRNTyI0N5N1R4vCqui9Qdgmi0XC3iEZPNCOn4,7190
|
|
1113
|
+
letta_client-1.0.0a3.dist-info/METADATA,sha256=yt4pYlI4aHENRE0wUAoAwVm6genz8bKnkUzETVZYnG8,12235
|
|
1114
|
+
letta_client-1.0.0a3.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
1115
|
+
letta_client-1.0.0a3.dist-info/RECORD,,
|