letta-client 0.1.265__tar.gz → 0.1.267__tar.gz
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-0.1.265 → letta_client-0.1.267}/PKG-INFO +1 -1
- {letta_client-0.1.265 → letta_client-0.1.267}/pyproject.toml +1 -1
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/__init__.py +48 -8
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/client_wrapper.py +2 -2
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/__init__.py +57 -9
- letta_client-0.1.267/src/letta_client/types/chat_completion_allowed_tool_choice_param.py +22 -0
- letta_client-0.1.267/src/letta_client/types/chat_completion_allowed_tools_param.py +22 -0
- letta_client-0.1.267/src/letta_client/types/chat_completion_allowed_tools_param_mode.py +5 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_assistant_message_param.py +2 -2
- letta_client-0.1.267/src/letta_client/types/chat_completion_assistant_message_param_tool_calls_item.py +10 -0
- letta_client-0.1.267/src/letta_client/types/chat_completion_custom_tool_param.py +24 -0
- letta_client-0.1.265/src/letta_client/types/chat_completion_tool_param.py → letta_client-0.1.267/src/letta_client/types/chat_completion_function_tool_param.py +1 -1
- letta_client-0.1.267/src/letta_client/types/chat_completion_message_custom_tool_call_param.py +25 -0
- letta_client-0.1.265/src/letta_client/types/chat_completion_message_tool_call.py → letta_client-0.1.267/src/letta_client/types/chat_completion_message_function_tool_call.py +1 -1
- letta_client-0.1.265/src/letta_client/types/chat_completion_message_tool_call_param.py → letta_client-0.1.267/src/letta_client/types/chat_completion_message_function_tool_call_param.py +4 -4
- letta_client-0.1.267/src/letta_client/types/chat_completion_named_tool_choice_custom_param.py +24 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_stream_options_param.py +1 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming.py +4 -2
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_model.py +7 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_reasoning_effort.py +3 -1
- letta_client-0.1.267/src/letta_client/types/completion_create_params_non_streaming_tool_choice.py +16 -0
- letta_client-0.1.267/src/letta_client/types/completion_create_params_non_streaming_tools_item.py +10 -0
- letta_client-0.1.267/src/letta_client/types/completion_create_params_non_streaming_verbosity.py +5 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming.py +4 -2
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_model.py +7 -0
- letta_client-0.1.267/src/letta_client/types/completion_create_params_streaming_reasoning_effort.py +7 -0
- letta_client-0.1.267/src/letta_client/types/completion_create_params_streaming_tool_choice.py +16 -0
- letta_client-0.1.267/src/letta_client/types/completion_create_params_streaming_tools_item.py +8 -0
- letta_client-0.1.267/src/letta_client/types/completion_create_params_streaming_verbosity.py +5 -0
- letta_client-0.1.267/src/letta_client/types/custom_format_grammar.py +22 -0
- letta_client-0.1.267/src/letta_client/types/custom_format_grammar_grammar.py +22 -0
- letta_client-0.1.267/src/letta_client/types/custom_format_grammar_grammar_syntax.py +5 -0
- letta_client-0.1.267/src/letta_client/types/custom_format_text.py +20 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/llm_config.py +6 -0
- letta_client-0.1.267/src/letta_client/types/llm_config_verbosity.py +5 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message.py +2 -2
- letta_client-0.1.267/src/letta_client/types/openai_types_chat_chat_completion_custom_tool_param_custom.py +25 -0
- letta_client-0.1.267/src/letta_client/types/openai_types_chat_chat_completion_custom_tool_param_custom_format.py +8 -0
- letta_client-0.1.267/src/letta_client/types/openai_types_chat_chat_completion_message_custom_tool_call_param_custom.py +21 -0
- letta_client-0.1.265/src/letta_client/types/openai_types_chat_chat_completion_message_tool_call_param_function.py → letta_client-0.1.267/src/letta_client/types/openai_types_chat_chat_completion_message_function_tool_call_param_function.py +1 -1
- letta_client-0.1.267/src/letta_client/types/openai_types_chat_chat_completion_named_tool_choice_custom_param_custom.py +20 -0
- letta_client-0.1.265/src/letta_client/types/completion_create_params_non_streaming_tool_choice.py +0 -9
- letta_client-0.1.265/src/letta_client/types/completion_create_params_streaming_reasoning_effort.py +0 -5
- letta_client-0.1.265/src/letta_client/types/completion_create_params_streaming_tool_choice.py +0 -9
- {letta_client-0.1.265 → letta_client-0.1.267}/README.md +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/blocks/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/blocks/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/blocks/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/context/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/context/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/context/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/core_memory/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/core_memory/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/core_memory/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/files/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/files/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/files/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/folders/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/folders/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/folders/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/groups/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/groups/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/groups/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/memory_variables/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/memory_variables/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/memory_variables/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/memory_variables/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/memory_variables/types/memory_variables_list_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/types/letta_streaming_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/types/messages_modify_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/types/messages_modify_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/messages/types/messages_preview_raw_payload_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/passages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/passages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/passages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/sources/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/sources/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/sources/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/types/templates_create_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/types/templates_create_version_request_return_agent_state.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/templates/types/templates_migrate_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/tools/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/tools/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/tools/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_field.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_field_operator.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_one.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_one_operator.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_three.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_two.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_search_item_zero.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_request_sort_by.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/agents_search_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/create_agent_request_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/create_agent_request_tool_rules_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/update_agent_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/agents/types/update_agent_tool_rules_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/base_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/batches/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/batches/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/batches/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/blocks/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/blocks/agents/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/blocks/agents/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/blocks/agents/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/blocks/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/blocks/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item_access_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item_access_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/api_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/datetime_utils.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/file.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/force_multipart.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/http_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/http_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/jsonable_encoder.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/pydantic_utilities.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/query_encoder.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/remove_none_from_dict.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/request_options.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/serialization.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/core/unchecked_base_model.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/embedding_models/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/embedding_models/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/embedding_models/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/environment.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/bad_request_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/conflict_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/internal_server_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/not_found_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/payment_required_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/errors/unprocessable_entity_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/files/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/files/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/files/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/passages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/passages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/passages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/folders/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/types/letta_streaming_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/types/messages_modify_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/messages/types/messages_modify_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/types/group_create_manager_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/groups/types/group_update_manager_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/health/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/health/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/health/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/identities/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/identities/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/identities/properties/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/identities/properties/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/identities/properties/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/identities/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/jobs/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/jobs/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/jobs/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/messages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/messages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/messages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/models/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/models/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/models/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/projects/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/projects/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/projects/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/projects/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/projects/types/projects_list_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/projects/types/projects_list_response_projects_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/providers/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/providers/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/providers/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/py.typed +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/messages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/messages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/messages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/steps/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/steps/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/steps/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/usage/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/usage/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/runs/usage/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/files/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/files/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/files/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/passages/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/passages/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/passages/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/sources/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/feedback/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/feedback/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/feedback/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/steps/types/steps_list_request_feedback.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tags/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tags/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tags/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/telemetry/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/telemetry/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/telemetry/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item_role.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/agents/types/agents_create_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/types/templates_list_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/templates/types/templates_list_response_templates_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/raw_client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/add_mcp_server_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/add_mcp_server_response_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/connect_mcp_server_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/connect_mcp_server_response_event.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/delete_mcp_server_response_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/list_mcp_servers_response_value.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/streaming_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/test_mcp_server_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/update_mcp_server_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/tools/types/update_mcp_server_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/action_model.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/action_parameters_model.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/action_response_model.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/agent_environment_variable.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/agent_file_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/agent_state.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/agent_state_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/agent_state_tool_rules_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/agent_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/app_auth_scheme.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/app_auth_scheme_auth_mode.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/app_model.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/assistant_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/assistant_message_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/audio.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/auth_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/auth_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/auth_scheme_field.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/bad_request_error_body.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/base_64_image.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/base_tool_rule_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/batch_job.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/block.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/block_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/block_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/body_export_agent_serialized.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_assistant_message_param_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_assistant_message_param_content_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_audio_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_audio_param_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_audio_param_voice.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_content_part_image_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_content_part_input_audio_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_content_part_refusal_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_content_part_text_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_developer_message_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_developer_message_param_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_function_call_option_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_function_message_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_named_tool_choice_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_prediction_content_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_prediction_content_param_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_system_message_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_system_message_param_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_tool_message_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_tool_message_param_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_user_message_param.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_user_message_param_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/chat_completion_user_message_param_content_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/child_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/child_tool_rule_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/code_input.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_function_call.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_messages_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_modalities_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_service_tier.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_non_streaming_stop.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_function_call.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_messages_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_modalities_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_service_tier.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/completion_create_params_streaming_stop.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/components_schemas_text_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/conditional_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/conditional_tool_rule_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/conflict_error_body.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/context_window_overview.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/continue_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/core_memory_block_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/create_block.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/duplicate_file_handling.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/dynamic_manager.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/dynamic_manager_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/e_2_b_sandbox_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/embedding_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/embedding_config_embedding_endpoint_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/feedback_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_agent_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_block.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_file.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_metadata.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_processing_status.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/file_stats.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/folder.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/function_call.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/function_definition_input.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/function_definition_output.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/function_output.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/function_tool.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/generate_tool_input.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/generate_tool_output.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/group.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/group_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/group_schema_manager_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/health.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/hidden_reasoning_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/hidden_reasoning_message_state.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/http_validation_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/identity.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/identity_property.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/identity_property_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/identity_property_value.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/identity_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/image_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/image_content_source.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/image_url.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/image_url_detail.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/imported_agents_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/init_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/input_audio.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/input_audio_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/internal_server_error_body.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/job.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/job_status.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/job_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/json_object_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/json_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/json_schema_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_batch_messages.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_batch_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_image.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_message_content_union.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_message_union.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_ping.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_request_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_response.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_schemas_agent_file_agent_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_schemas_agent_file_agent_schema_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_schemas_agent_file_message_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_schemas_agent_file_message_schema_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_schemas_agent_file_tool_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema_tool_rules_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_serialize_schemas_pydantic_agent_schema_message_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_serialize_schemas_pydantic_agent_schema_tool_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_stop_reason.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_streaming_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_usage_statistics.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/letta_user_message_content_union.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/llm_config_compatibility_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/llm_config_model_endpoint_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/llm_config_reasoning_effort.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/local_sandbox_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/manager_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/max_count_per_step_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/max_count_per_step_tool_rule_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/mcp_server_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/mcp_server_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/mcp_tool.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/mcp_tool_execute_request.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/mcp_tool_health.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/memory.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message_content_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message_create_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message_create_role.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message_role.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/message_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/modal_sandbox_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/modal_sandbox_config_language.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/not_found_error_body.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/not_found_error_body_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/npm_requirement.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/omitted_reasoning_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/openai_types_chat_chat_completion_named_tool_choice_param_function.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/openai_types_chat_completion_create_params_function.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/organization.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/organization_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/organization_sources_stats.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/organization_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/parameter_properties.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/parameters_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/parent_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/passage.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/payment_required_error_body.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/pip_requirement.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/provider.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/provider_category.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/provider_trace.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/provider_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/reasoning_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/reasoning_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/reasoning_message_source.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/redacted_reasoning_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/required_before_exit_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/response_format_json_object.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/response_format_json_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/response_format_text.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/round_robin_manager.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/round_robin_manager_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/run.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_config_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_config_create_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_config_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_config_update_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_environment_variable.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_environment_variable_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_environment_variable_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sandbox_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sleeptime_manager.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sleeptime_manager_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/source.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/source_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/source_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/source_stats.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/source_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/sse_server_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/stdio_server_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/step.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/step_feedback.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/step_metrics.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/step_status.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/stop_reason_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/streamable_http_server_config.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/supervisor_manager.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/supervisor_manager_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/system_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tag_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/terminal_tool_rule.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/text_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/text_response_format.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_annotations.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_call.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_call_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_call_delta.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_call_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_call_message_tool_call.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_env_var_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_json_schema.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_return.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_return_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_return_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_return_message_status.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_return_status.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/tool_type.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_assistant_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_assistant_message_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_reasoning_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_ssemcp_server.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_stdio_mcp_server.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_streamable_httpmcp_server.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_system_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_user_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/update_user_message_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/url_image.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/usage_statistics.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/usage_statistics_completion_token_details.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/usage_statistics_prompt_token_details.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/user.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/user_create.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/user_message.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/user_message_content.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/user_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/validation_error.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/validation_error_loc_item.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/voice_sleeptime_manager.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/voice_sleeptime_manager_update.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/web_search_options.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/web_search_options_search_context_size.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/web_search_options_user_location.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/types/web_search_options_user_location_approximate.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/version.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/voice/__init__.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/voice/client.py +0 -0
- {letta_client-0.1.265 → letta_client-0.1.267}/src/letta_client/voice/raw_client.py +0 -0
|
@@ -29,9 +29,13 @@ from .types import (
|
|
|
29
29
|
BlockSchema,
|
|
30
30
|
BlockUpdate,
|
|
31
31
|
BodyExportAgentSerialized,
|
|
32
|
+
ChatCompletionAllowedToolChoiceParam,
|
|
33
|
+
ChatCompletionAllowedToolsParam,
|
|
34
|
+
ChatCompletionAllowedToolsParamMode,
|
|
32
35
|
ChatCompletionAssistantMessageParam,
|
|
33
36
|
ChatCompletionAssistantMessageParamContent,
|
|
34
37
|
ChatCompletionAssistantMessageParamContentItem,
|
|
38
|
+
ChatCompletionAssistantMessageParamToolCallsItem,
|
|
35
39
|
ChatCompletionAudioParam,
|
|
36
40
|
ChatCompletionAudioParamFormat,
|
|
37
41
|
ChatCompletionAudioParamVoice,
|
|
@@ -39,12 +43,16 @@ from .types import (
|
|
|
39
43
|
ChatCompletionContentPartInputAudioParam,
|
|
40
44
|
ChatCompletionContentPartRefusalParam,
|
|
41
45
|
ChatCompletionContentPartTextParam,
|
|
46
|
+
ChatCompletionCustomToolParam,
|
|
42
47
|
ChatCompletionDeveloperMessageParam,
|
|
43
48
|
ChatCompletionDeveloperMessageParamContent,
|
|
44
49
|
ChatCompletionFunctionCallOptionParam,
|
|
45
50
|
ChatCompletionFunctionMessageParam,
|
|
46
|
-
|
|
47
|
-
|
|
51
|
+
ChatCompletionFunctionToolParam,
|
|
52
|
+
ChatCompletionMessageCustomToolCallParam,
|
|
53
|
+
ChatCompletionMessageFunctionToolCall,
|
|
54
|
+
ChatCompletionMessageFunctionToolCallParam,
|
|
55
|
+
ChatCompletionNamedToolChoiceCustomParam,
|
|
48
56
|
ChatCompletionNamedToolChoiceParam,
|
|
49
57
|
ChatCompletionPredictionContentParam,
|
|
50
58
|
ChatCompletionPredictionContentParamContent,
|
|
@@ -53,7 +61,6 @@ from .types import (
|
|
|
53
61
|
ChatCompletionSystemMessageParamContent,
|
|
54
62
|
ChatCompletionToolMessageParam,
|
|
55
63
|
ChatCompletionToolMessageParamContent,
|
|
56
|
-
ChatCompletionToolParam,
|
|
57
64
|
ChatCompletionUserMessageParam,
|
|
58
65
|
ChatCompletionUserMessageParamContent,
|
|
59
66
|
ChatCompletionUserMessageParamContentItem,
|
|
@@ -70,6 +77,8 @@ from .types import (
|
|
|
70
77
|
CompletionCreateParamsNonStreamingServiceTier,
|
|
71
78
|
CompletionCreateParamsNonStreamingStop,
|
|
72
79
|
CompletionCreateParamsNonStreamingToolChoice,
|
|
80
|
+
CompletionCreateParamsNonStreamingToolsItem,
|
|
81
|
+
CompletionCreateParamsNonStreamingVerbosity,
|
|
73
82
|
CompletionCreateParamsStreaming,
|
|
74
83
|
CompletionCreateParamsStreamingFunctionCall,
|
|
75
84
|
CompletionCreateParamsStreamingMessagesItem,
|
|
@@ -80,6 +89,8 @@ from .types import (
|
|
|
80
89
|
CompletionCreateParamsStreamingServiceTier,
|
|
81
90
|
CompletionCreateParamsStreamingStop,
|
|
82
91
|
CompletionCreateParamsStreamingToolChoice,
|
|
92
|
+
CompletionCreateParamsStreamingToolsItem,
|
|
93
|
+
CompletionCreateParamsStreamingVerbosity,
|
|
83
94
|
ComponentsSchemasTextContent,
|
|
84
95
|
ConditionalToolRule,
|
|
85
96
|
ConditionalToolRuleSchema,
|
|
@@ -88,6 +99,10 @@ from .types import (
|
|
|
88
99
|
ContinueToolRule,
|
|
89
100
|
CoreMemoryBlockSchema,
|
|
90
101
|
CreateBlock,
|
|
102
|
+
CustomFormatGrammar,
|
|
103
|
+
CustomFormatGrammarGrammar,
|
|
104
|
+
CustomFormatGrammarGrammarSyntax,
|
|
105
|
+
CustomFormatText,
|
|
91
106
|
DuplicateFileHandling,
|
|
92
107
|
DynamicManager,
|
|
93
108
|
DynamicManagerUpdate,
|
|
@@ -165,6 +180,7 @@ from .types import (
|
|
|
165
180
|
LlmConfigCompatibilityType,
|
|
166
181
|
LlmConfigModelEndpointType,
|
|
167
182
|
LlmConfigReasoningEffort,
|
|
183
|
+
LlmConfigVerbosity,
|
|
168
184
|
LocalSandboxConfig,
|
|
169
185
|
ManagerType,
|
|
170
186
|
MaxCountPerStepToolRule,
|
|
@@ -188,7 +204,11 @@ from .types import (
|
|
|
188
204
|
NotFoundErrorBodyMessage,
|
|
189
205
|
NpmRequirement,
|
|
190
206
|
OmittedReasoningContent,
|
|
191
|
-
|
|
207
|
+
OpenaiTypesChatChatCompletionCustomToolParamCustom,
|
|
208
|
+
OpenaiTypesChatChatCompletionCustomToolParamCustomFormat,
|
|
209
|
+
OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom,
|
|
210
|
+
OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction,
|
|
211
|
+
OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom,
|
|
192
212
|
OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction,
|
|
193
213
|
OpenaiTypesChatCompletionCreateParamsFunction,
|
|
194
214
|
Organization,
|
|
@@ -412,9 +432,13 @@ __all__ = [
|
|
|
412
432
|
"BlockSchema",
|
|
413
433
|
"BlockUpdate",
|
|
414
434
|
"BodyExportAgentSerialized",
|
|
435
|
+
"ChatCompletionAllowedToolChoiceParam",
|
|
436
|
+
"ChatCompletionAllowedToolsParam",
|
|
437
|
+
"ChatCompletionAllowedToolsParamMode",
|
|
415
438
|
"ChatCompletionAssistantMessageParam",
|
|
416
439
|
"ChatCompletionAssistantMessageParamContent",
|
|
417
440
|
"ChatCompletionAssistantMessageParamContentItem",
|
|
441
|
+
"ChatCompletionAssistantMessageParamToolCallsItem",
|
|
418
442
|
"ChatCompletionAudioParam",
|
|
419
443
|
"ChatCompletionAudioParamFormat",
|
|
420
444
|
"ChatCompletionAudioParamVoice",
|
|
@@ -422,12 +446,16 @@ __all__ = [
|
|
|
422
446
|
"ChatCompletionContentPartInputAudioParam",
|
|
423
447
|
"ChatCompletionContentPartRefusalParam",
|
|
424
448
|
"ChatCompletionContentPartTextParam",
|
|
449
|
+
"ChatCompletionCustomToolParam",
|
|
425
450
|
"ChatCompletionDeveloperMessageParam",
|
|
426
451
|
"ChatCompletionDeveloperMessageParamContent",
|
|
427
452
|
"ChatCompletionFunctionCallOptionParam",
|
|
428
453
|
"ChatCompletionFunctionMessageParam",
|
|
429
|
-
"
|
|
430
|
-
"
|
|
454
|
+
"ChatCompletionFunctionToolParam",
|
|
455
|
+
"ChatCompletionMessageCustomToolCallParam",
|
|
456
|
+
"ChatCompletionMessageFunctionToolCall",
|
|
457
|
+
"ChatCompletionMessageFunctionToolCallParam",
|
|
458
|
+
"ChatCompletionNamedToolChoiceCustomParam",
|
|
431
459
|
"ChatCompletionNamedToolChoiceParam",
|
|
432
460
|
"ChatCompletionPredictionContentParam",
|
|
433
461
|
"ChatCompletionPredictionContentParamContent",
|
|
@@ -436,7 +464,6 @@ __all__ = [
|
|
|
436
464
|
"ChatCompletionSystemMessageParamContent",
|
|
437
465
|
"ChatCompletionToolMessageParam",
|
|
438
466
|
"ChatCompletionToolMessageParamContent",
|
|
439
|
-
"ChatCompletionToolParam",
|
|
440
467
|
"ChatCompletionUserMessageParam",
|
|
441
468
|
"ChatCompletionUserMessageParamContent",
|
|
442
469
|
"ChatCompletionUserMessageParamContentItem",
|
|
@@ -464,6 +491,8 @@ __all__ = [
|
|
|
464
491
|
"CompletionCreateParamsNonStreamingServiceTier",
|
|
465
492
|
"CompletionCreateParamsNonStreamingStop",
|
|
466
493
|
"CompletionCreateParamsNonStreamingToolChoice",
|
|
494
|
+
"CompletionCreateParamsNonStreamingToolsItem",
|
|
495
|
+
"CompletionCreateParamsNonStreamingVerbosity",
|
|
467
496
|
"CompletionCreateParamsStreaming",
|
|
468
497
|
"CompletionCreateParamsStreamingFunctionCall",
|
|
469
498
|
"CompletionCreateParamsStreamingMessagesItem",
|
|
@@ -474,6 +503,8 @@ __all__ = [
|
|
|
474
503
|
"CompletionCreateParamsStreamingServiceTier",
|
|
475
504
|
"CompletionCreateParamsStreamingStop",
|
|
476
505
|
"CompletionCreateParamsStreamingToolChoice",
|
|
506
|
+
"CompletionCreateParamsStreamingToolsItem",
|
|
507
|
+
"CompletionCreateParamsStreamingVerbosity",
|
|
477
508
|
"ComponentsSchemasTextContent",
|
|
478
509
|
"ConditionalToolRule",
|
|
479
510
|
"ConditionalToolRuleSchema",
|
|
@@ -487,6 +518,10 @@ __all__ = [
|
|
|
487
518
|
"CreateAgentRequestResponseFormat",
|
|
488
519
|
"CreateAgentRequestToolRulesItem",
|
|
489
520
|
"CreateBlock",
|
|
521
|
+
"CustomFormatGrammar",
|
|
522
|
+
"CustomFormatGrammarGrammar",
|
|
523
|
+
"CustomFormatGrammarGrammarSyntax",
|
|
524
|
+
"CustomFormatText",
|
|
490
525
|
"DeleteMcpServerResponseItem",
|
|
491
526
|
"DuplicateFileHandling",
|
|
492
527
|
"DynamicManager",
|
|
@@ -571,6 +606,7 @@ __all__ = [
|
|
|
571
606
|
"LlmConfigCompatibilityType",
|
|
572
607
|
"LlmConfigModelEndpointType",
|
|
573
608
|
"LlmConfigReasoningEffort",
|
|
609
|
+
"LlmConfigVerbosity",
|
|
574
610
|
"LocalSandboxConfig",
|
|
575
611
|
"ManagerType",
|
|
576
612
|
"MaxCountPerStepToolRule",
|
|
@@ -595,7 +631,11 @@ __all__ = [
|
|
|
595
631
|
"NotFoundErrorBodyMessage",
|
|
596
632
|
"NpmRequirement",
|
|
597
633
|
"OmittedReasoningContent",
|
|
598
|
-
"
|
|
634
|
+
"OpenaiTypesChatChatCompletionCustomToolParamCustom",
|
|
635
|
+
"OpenaiTypesChatChatCompletionCustomToolParamCustomFormat",
|
|
636
|
+
"OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom",
|
|
637
|
+
"OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction",
|
|
638
|
+
"OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom",
|
|
599
639
|
"OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction",
|
|
600
640
|
"OpenaiTypesChatCompletionCreateParamsFunction",
|
|
601
641
|
"Organization",
|
|
@@ -24,10 +24,10 @@ class BaseClientWrapper:
|
|
|
24
24
|
|
|
25
25
|
def get_headers(self) -> typing.Dict[str, str]:
|
|
26
26
|
headers: typing.Dict[str, str] = {
|
|
27
|
-
"User-Agent": "letta-client/0.1.
|
|
27
|
+
"User-Agent": "letta-client/0.1.267",
|
|
28
28
|
"X-Fern-Language": "Python",
|
|
29
29
|
"X-Fern-SDK-Name": "letta-client",
|
|
30
|
-
"X-Fern-SDK-Version": "0.1.
|
|
30
|
+
"X-Fern-SDK-Version": "0.1.267",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
|
@@ -28,9 +28,13 @@ from .block import Block
|
|
|
28
28
|
from .block_schema import BlockSchema
|
|
29
29
|
from .block_update import BlockUpdate
|
|
30
30
|
from .body_export_agent_serialized import BodyExportAgentSerialized
|
|
31
|
+
from .chat_completion_allowed_tool_choice_param import ChatCompletionAllowedToolChoiceParam
|
|
32
|
+
from .chat_completion_allowed_tools_param import ChatCompletionAllowedToolsParam
|
|
33
|
+
from .chat_completion_allowed_tools_param_mode import ChatCompletionAllowedToolsParamMode
|
|
31
34
|
from .chat_completion_assistant_message_param import ChatCompletionAssistantMessageParam
|
|
32
35
|
from .chat_completion_assistant_message_param_content import ChatCompletionAssistantMessageParamContent
|
|
33
36
|
from .chat_completion_assistant_message_param_content_item import ChatCompletionAssistantMessageParamContentItem
|
|
37
|
+
from .chat_completion_assistant_message_param_tool_calls_item import ChatCompletionAssistantMessageParamToolCallsItem
|
|
34
38
|
from .chat_completion_audio_param import ChatCompletionAudioParam
|
|
35
39
|
from .chat_completion_audio_param_format import ChatCompletionAudioParamFormat
|
|
36
40
|
from .chat_completion_audio_param_voice import ChatCompletionAudioParamVoice
|
|
@@ -38,12 +42,16 @@ from .chat_completion_content_part_image_param import ChatCompletionContentPartI
|
|
|
38
42
|
from .chat_completion_content_part_input_audio_param import ChatCompletionContentPartInputAudioParam
|
|
39
43
|
from .chat_completion_content_part_refusal_param import ChatCompletionContentPartRefusalParam
|
|
40
44
|
from .chat_completion_content_part_text_param import ChatCompletionContentPartTextParam
|
|
45
|
+
from .chat_completion_custom_tool_param import ChatCompletionCustomToolParam
|
|
41
46
|
from .chat_completion_developer_message_param import ChatCompletionDeveloperMessageParam
|
|
42
47
|
from .chat_completion_developer_message_param_content import ChatCompletionDeveloperMessageParamContent
|
|
43
48
|
from .chat_completion_function_call_option_param import ChatCompletionFunctionCallOptionParam
|
|
44
49
|
from .chat_completion_function_message_param import ChatCompletionFunctionMessageParam
|
|
45
|
-
from .
|
|
46
|
-
from .
|
|
50
|
+
from .chat_completion_function_tool_param import ChatCompletionFunctionToolParam
|
|
51
|
+
from .chat_completion_message_custom_tool_call_param import ChatCompletionMessageCustomToolCallParam
|
|
52
|
+
from .chat_completion_message_function_tool_call import ChatCompletionMessageFunctionToolCall
|
|
53
|
+
from .chat_completion_message_function_tool_call_param import ChatCompletionMessageFunctionToolCallParam
|
|
54
|
+
from .chat_completion_named_tool_choice_custom_param import ChatCompletionNamedToolChoiceCustomParam
|
|
47
55
|
from .chat_completion_named_tool_choice_param import ChatCompletionNamedToolChoiceParam
|
|
48
56
|
from .chat_completion_prediction_content_param import ChatCompletionPredictionContentParam
|
|
49
57
|
from .chat_completion_prediction_content_param_content import ChatCompletionPredictionContentParamContent
|
|
@@ -52,7 +60,6 @@ from .chat_completion_system_message_param import ChatCompletionSystemMessagePar
|
|
|
52
60
|
from .chat_completion_system_message_param_content import ChatCompletionSystemMessageParamContent
|
|
53
61
|
from .chat_completion_tool_message_param import ChatCompletionToolMessageParam
|
|
54
62
|
from .chat_completion_tool_message_param_content import ChatCompletionToolMessageParamContent
|
|
55
|
-
from .chat_completion_tool_param import ChatCompletionToolParam
|
|
56
63
|
from .chat_completion_user_message_param import ChatCompletionUserMessageParam
|
|
57
64
|
from .chat_completion_user_message_param_content import ChatCompletionUserMessageParamContent
|
|
58
65
|
from .chat_completion_user_message_param_content_item import ChatCompletionUserMessageParamContentItem
|
|
@@ -69,6 +76,8 @@ from .completion_create_params_non_streaming_response_format import CompletionCr
|
|
|
69
76
|
from .completion_create_params_non_streaming_service_tier import CompletionCreateParamsNonStreamingServiceTier
|
|
70
77
|
from .completion_create_params_non_streaming_stop import CompletionCreateParamsNonStreamingStop
|
|
71
78
|
from .completion_create_params_non_streaming_tool_choice import CompletionCreateParamsNonStreamingToolChoice
|
|
79
|
+
from .completion_create_params_non_streaming_tools_item import CompletionCreateParamsNonStreamingToolsItem
|
|
80
|
+
from .completion_create_params_non_streaming_verbosity import CompletionCreateParamsNonStreamingVerbosity
|
|
72
81
|
from .completion_create_params_streaming import CompletionCreateParamsStreaming
|
|
73
82
|
from .completion_create_params_streaming_function_call import CompletionCreateParamsStreamingFunctionCall
|
|
74
83
|
from .completion_create_params_streaming_messages_item import CompletionCreateParamsStreamingMessagesItem
|
|
@@ -79,6 +88,8 @@ from .completion_create_params_streaming_response_format import CompletionCreate
|
|
|
79
88
|
from .completion_create_params_streaming_service_tier import CompletionCreateParamsStreamingServiceTier
|
|
80
89
|
from .completion_create_params_streaming_stop import CompletionCreateParamsStreamingStop
|
|
81
90
|
from .completion_create_params_streaming_tool_choice import CompletionCreateParamsStreamingToolChoice
|
|
91
|
+
from .completion_create_params_streaming_tools_item import CompletionCreateParamsStreamingToolsItem
|
|
92
|
+
from .completion_create_params_streaming_verbosity import CompletionCreateParamsStreamingVerbosity
|
|
82
93
|
from .components_schemas_text_content import ComponentsSchemasTextContent
|
|
83
94
|
from .conditional_tool_rule import ConditionalToolRule
|
|
84
95
|
from .conditional_tool_rule_schema import ConditionalToolRuleSchema
|
|
@@ -87,6 +98,10 @@ from .context_window_overview import ContextWindowOverview
|
|
|
87
98
|
from .continue_tool_rule import ContinueToolRule
|
|
88
99
|
from .core_memory_block_schema import CoreMemoryBlockSchema
|
|
89
100
|
from .create_block import CreateBlock
|
|
101
|
+
from .custom_format_grammar import CustomFormatGrammar
|
|
102
|
+
from .custom_format_grammar_grammar import CustomFormatGrammarGrammar
|
|
103
|
+
from .custom_format_grammar_grammar_syntax import CustomFormatGrammarGrammarSyntax
|
|
104
|
+
from .custom_format_text import CustomFormatText
|
|
90
105
|
from .duplicate_file_handling import DuplicateFileHandling
|
|
91
106
|
from .dynamic_manager import DynamicManager
|
|
92
107
|
from .dynamic_manager_update import DynamicManagerUpdate
|
|
@@ -172,6 +187,7 @@ from .llm_config import LlmConfig
|
|
|
172
187
|
from .llm_config_compatibility_type import LlmConfigCompatibilityType
|
|
173
188
|
from .llm_config_model_endpoint_type import LlmConfigModelEndpointType
|
|
174
189
|
from .llm_config_reasoning_effort import LlmConfigReasoningEffort
|
|
190
|
+
from .llm_config_verbosity import LlmConfigVerbosity
|
|
175
191
|
from .local_sandbox_config import LocalSandboxConfig
|
|
176
192
|
from .manager_type import ManagerType
|
|
177
193
|
from .max_count_per_step_tool_rule import MaxCountPerStepToolRule
|
|
@@ -195,8 +211,20 @@ from .not_found_error_body import NotFoundErrorBody
|
|
|
195
211
|
from .not_found_error_body_message import NotFoundErrorBodyMessage
|
|
196
212
|
from .npm_requirement import NpmRequirement
|
|
197
213
|
from .omitted_reasoning_content import OmittedReasoningContent
|
|
198
|
-
from .
|
|
199
|
-
|
|
214
|
+
from .openai_types_chat_chat_completion_custom_tool_param_custom import (
|
|
215
|
+
OpenaiTypesChatChatCompletionCustomToolParamCustom,
|
|
216
|
+
)
|
|
217
|
+
from .openai_types_chat_chat_completion_custom_tool_param_custom_format import (
|
|
218
|
+
OpenaiTypesChatChatCompletionCustomToolParamCustomFormat,
|
|
219
|
+
)
|
|
220
|
+
from .openai_types_chat_chat_completion_message_custom_tool_call_param_custom import (
|
|
221
|
+
OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom,
|
|
222
|
+
)
|
|
223
|
+
from .openai_types_chat_chat_completion_message_function_tool_call_param_function import (
|
|
224
|
+
OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction,
|
|
225
|
+
)
|
|
226
|
+
from .openai_types_chat_chat_completion_named_tool_choice_custom_param_custom import (
|
|
227
|
+
OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom,
|
|
200
228
|
)
|
|
201
229
|
from .openai_types_chat_chat_completion_named_tool_choice_param_function import (
|
|
202
230
|
OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction,
|
|
@@ -328,9 +356,13 @@ __all__ = [
|
|
|
328
356
|
"BlockSchema",
|
|
329
357
|
"BlockUpdate",
|
|
330
358
|
"BodyExportAgentSerialized",
|
|
359
|
+
"ChatCompletionAllowedToolChoiceParam",
|
|
360
|
+
"ChatCompletionAllowedToolsParam",
|
|
361
|
+
"ChatCompletionAllowedToolsParamMode",
|
|
331
362
|
"ChatCompletionAssistantMessageParam",
|
|
332
363
|
"ChatCompletionAssistantMessageParamContent",
|
|
333
364
|
"ChatCompletionAssistantMessageParamContentItem",
|
|
365
|
+
"ChatCompletionAssistantMessageParamToolCallsItem",
|
|
334
366
|
"ChatCompletionAudioParam",
|
|
335
367
|
"ChatCompletionAudioParamFormat",
|
|
336
368
|
"ChatCompletionAudioParamVoice",
|
|
@@ -338,12 +370,16 @@ __all__ = [
|
|
|
338
370
|
"ChatCompletionContentPartInputAudioParam",
|
|
339
371
|
"ChatCompletionContentPartRefusalParam",
|
|
340
372
|
"ChatCompletionContentPartTextParam",
|
|
373
|
+
"ChatCompletionCustomToolParam",
|
|
341
374
|
"ChatCompletionDeveloperMessageParam",
|
|
342
375
|
"ChatCompletionDeveloperMessageParamContent",
|
|
343
376
|
"ChatCompletionFunctionCallOptionParam",
|
|
344
377
|
"ChatCompletionFunctionMessageParam",
|
|
345
|
-
"
|
|
346
|
-
"
|
|
378
|
+
"ChatCompletionFunctionToolParam",
|
|
379
|
+
"ChatCompletionMessageCustomToolCallParam",
|
|
380
|
+
"ChatCompletionMessageFunctionToolCall",
|
|
381
|
+
"ChatCompletionMessageFunctionToolCallParam",
|
|
382
|
+
"ChatCompletionNamedToolChoiceCustomParam",
|
|
347
383
|
"ChatCompletionNamedToolChoiceParam",
|
|
348
384
|
"ChatCompletionPredictionContentParam",
|
|
349
385
|
"ChatCompletionPredictionContentParamContent",
|
|
@@ -352,7 +388,6 @@ __all__ = [
|
|
|
352
388
|
"ChatCompletionSystemMessageParamContent",
|
|
353
389
|
"ChatCompletionToolMessageParam",
|
|
354
390
|
"ChatCompletionToolMessageParamContent",
|
|
355
|
-
"ChatCompletionToolParam",
|
|
356
391
|
"ChatCompletionUserMessageParam",
|
|
357
392
|
"ChatCompletionUserMessageParamContent",
|
|
358
393
|
"ChatCompletionUserMessageParamContentItem",
|
|
@@ -369,6 +404,8 @@ __all__ = [
|
|
|
369
404
|
"CompletionCreateParamsNonStreamingServiceTier",
|
|
370
405
|
"CompletionCreateParamsNonStreamingStop",
|
|
371
406
|
"CompletionCreateParamsNonStreamingToolChoice",
|
|
407
|
+
"CompletionCreateParamsNonStreamingToolsItem",
|
|
408
|
+
"CompletionCreateParamsNonStreamingVerbosity",
|
|
372
409
|
"CompletionCreateParamsStreaming",
|
|
373
410
|
"CompletionCreateParamsStreamingFunctionCall",
|
|
374
411
|
"CompletionCreateParamsStreamingMessagesItem",
|
|
@@ -379,6 +416,8 @@ __all__ = [
|
|
|
379
416
|
"CompletionCreateParamsStreamingServiceTier",
|
|
380
417
|
"CompletionCreateParamsStreamingStop",
|
|
381
418
|
"CompletionCreateParamsStreamingToolChoice",
|
|
419
|
+
"CompletionCreateParamsStreamingToolsItem",
|
|
420
|
+
"CompletionCreateParamsStreamingVerbosity",
|
|
382
421
|
"ComponentsSchemasTextContent",
|
|
383
422
|
"ConditionalToolRule",
|
|
384
423
|
"ConditionalToolRuleSchema",
|
|
@@ -387,6 +426,10 @@ __all__ = [
|
|
|
387
426
|
"ContinueToolRule",
|
|
388
427
|
"CoreMemoryBlockSchema",
|
|
389
428
|
"CreateBlock",
|
|
429
|
+
"CustomFormatGrammar",
|
|
430
|
+
"CustomFormatGrammarGrammar",
|
|
431
|
+
"CustomFormatGrammarGrammarSyntax",
|
|
432
|
+
"CustomFormatText",
|
|
390
433
|
"DuplicateFileHandling",
|
|
391
434
|
"DynamicManager",
|
|
392
435
|
"DynamicManagerUpdate",
|
|
@@ -464,6 +507,7 @@ __all__ = [
|
|
|
464
507
|
"LlmConfigCompatibilityType",
|
|
465
508
|
"LlmConfigModelEndpointType",
|
|
466
509
|
"LlmConfigReasoningEffort",
|
|
510
|
+
"LlmConfigVerbosity",
|
|
467
511
|
"LocalSandboxConfig",
|
|
468
512
|
"ManagerType",
|
|
469
513
|
"MaxCountPerStepToolRule",
|
|
@@ -487,7 +531,11 @@ __all__ = [
|
|
|
487
531
|
"NotFoundErrorBodyMessage",
|
|
488
532
|
"NpmRequirement",
|
|
489
533
|
"OmittedReasoningContent",
|
|
490
|
-
"
|
|
534
|
+
"OpenaiTypesChatChatCompletionCustomToolParamCustom",
|
|
535
|
+
"OpenaiTypesChatChatCompletionCustomToolParamCustomFormat",
|
|
536
|
+
"OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom",
|
|
537
|
+
"OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction",
|
|
538
|
+
"OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom",
|
|
491
539
|
"OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction",
|
|
492
540
|
"OpenaiTypesChatCompletionCreateParamsFunction",
|
|
493
541
|
"Organization",
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
from .chat_completion_allowed_tools_param import ChatCompletionAllowedToolsParam
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ChatCompletionAllowedToolChoiceParam(UncheckedBaseModel):
|
|
12
|
+
allowed_tools: ChatCompletionAllowedToolsParam
|
|
13
|
+
type: typing.Literal["allowed_tools"] = "allowed_tools"
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
from .chat_completion_allowed_tools_param_mode import ChatCompletionAllowedToolsParamMode
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ChatCompletionAllowedToolsParam(UncheckedBaseModel):
|
|
12
|
+
mode: ChatCompletionAllowedToolsParamMode
|
|
13
|
+
tools: typing.List[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -7,7 +7,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
|
7
7
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
8
|
from .audio import Audio
|
|
9
9
|
from .chat_completion_assistant_message_param_content import ChatCompletionAssistantMessageParamContent
|
|
10
|
-
from .
|
|
10
|
+
from .chat_completion_assistant_message_param_tool_calls_item import ChatCompletionAssistantMessageParamToolCallsItem
|
|
11
11
|
from .function_call import FunctionCall
|
|
12
12
|
|
|
13
13
|
|
|
@@ -18,7 +18,7 @@ class ChatCompletionAssistantMessageParam(UncheckedBaseModel):
|
|
|
18
18
|
function_call: typing.Optional[FunctionCall] = None
|
|
19
19
|
name: typing.Optional[str] = None
|
|
20
20
|
refusal: typing.Optional[str] = None
|
|
21
|
-
tool_calls: typing.Optional[typing.List[
|
|
21
|
+
tool_calls: typing.Optional[typing.List[ChatCompletionAssistantMessageParamToolCallsItem]] = None
|
|
22
22
|
|
|
23
23
|
if IS_PYDANTIC_V2:
|
|
24
24
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
from .chat_completion_message_custom_tool_call_param import ChatCompletionMessageCustomToolCallParam
|
|
6
|
+
from .chat_completion_message_function_tool_call_param import ChatCompletionMessageFunctionToolCallParam
|
|
7
|
+
|
|
8
|
+
ChatCompletionAssistantMessageParamToolCallsItem = typing.Union[
|
|
9
|
+
ChatCompletionMessageFunctionToolCallParam, ChatCompletionMessageCustomToolCallParam
|
|
10
|
+
]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
from .openai_types_chat_chat_completion_custom_tool_param_custom import (
|
|
9
|
+
OpenaiTypesChatChatCompletionCustomToolParamCustom,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ChatCompletionCustomToolParam(UncheckedBaseModel):
|
|
14
|
+
custom: OpenaiTypesChatChatCompletionCustomToolParamCustom
|
|
15
|
+
type: typing.Literal["custom"] = "custom"
|
|
16
|
+
|
|
17
|
+
if IS_PYDANTIC_V2:
|
|
18
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
19
|
+
else:
|
|
20
|
+
|
|
21
|
+
class Config:
|
|
22
|
+
frozen = True
|
|
23
|
+
smart_union = True
|
|
24
|
+
extra = pydantic.Extra.allow
|
|
@@ -8,7 +8,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
8
8
|
from .function_definition_input import FunctionDefinitionInput
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class
|
|
11
|
+
class ChatCompletionFunctionToolParam(UncheckedBaseModel):
|
|
12
12
|
function: FunctionDefinitionInput
|
|
13
13
|
type: typing.Literal["function"] = "function"
|
|
14
14
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
from .openai_types_chat_chat_completion_message_custom_tool_call_param_custom import (
|
|
9
|
+
OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ChatCompletionMessageCustomToolCallParam(UncheckedBaseModel):
|
|
14
|
+
id: str
|
|
15
|
+
custom: OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom
|
|
16
|
+
type: typing.Literal["custom"] = "custom"
|
|
17
|
+
|
|
18
|
+
if IS_PYDANTIC_V2:
|
|
19
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
20
|
+
else:
|
|
21
|
+
|
|
22
|
+
class Config:
|
|
23
|
+
frozen = True
|
|
24
|
+
smart_union = True
|
|
25
|
+
extra = pydantic.Extra.allow
|
|
@@ -8,7 +8,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
8
8
|
from .function_output import FunctionOutput
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class
|
|
11
|
+
class ChatCompletionMessageFunctionToolCall(UncheckedBaseModel):
|
|
12
12
|
id: str
|
|
13
13
|
function: FunctionOutput
|
|
14
14
|
type: typing.Literal["function"] = "function"
|
|
@@ -5,14 +5,14 @@ import typing
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
-
from .
|
|
9
|
-
|
|
8
|
+
from .openai_types_chat_chat_completion_message_function_tool_call_param_function import (
|
|
9
|
+
OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction,
|
|
10
10
|
)
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
class
|
|
13
|
+
class ChatCompletionMessageFunctionToolCallParam(UncheckedBaseModel):
|
|
14
14
|
id: str
|
|
15
|
-
function:
|
|
15
|
+
function: OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction
|
|
16
16
|
type: typing.Literal["function"] = "function"
|
|
17
17
|
|
|
18
18
|
if IS_PYDANTIC_V2:
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
from .openai_types_chat_chat_completion_named_tool_choice_custom_param_custom import (
|
|
9
|
+
OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ChatCompletionNamedToolChoiceCustomParam(UncheckedBaseModel):
|
|
14
|
+
custom: OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom
|
|
15
|
+
type: typing.Literal["custom"] = "custom"
|
|
16
|
+
|
|
17
|
+
if IS_PYDANTIC_V2:
|
|
18
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
19
|
+
else:
|
|
20
|
+
|
|
21
|
+
class Config:
|
|
22
|
+
frozen = True
|
|
23
|
+
smart_union = True
|
|
24
|
+
extra = pydantic.Extra.allow
|
|
@@ -8,7 +8,6 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
8
8
|
from .chat_completion_audio_param import ChatCompletionAudioParam
|
|
9
9
|
from .chat_completion_prediction_content_param import ChatCompletionPredictionContentParam
|
|
10
10
|
from .chat_completion_stream_options_param import ChatCompletionStreamOptionsParam
|
|
11
|
-
from .chat_completion_tool_param import ChatCompletionToolParam
|
|
12
11
|
from .completion_create_params_non_streaming_function_call import CompletionCreateParamsNonStreamingFunctionCall
|
|
13
12
|
from .completion_create_params_non_streaming_messages_item import CompletionCreateParamsNonStreamingMessagesItem
|
|
14
13
|
from .completion_create_params_non_streaming_modalities_item import CompletionCreateParamsNonStreamingModalitiesItem
|
|
@@ -18,6 +17,8 @@ from .completion_create_params_non_streaming_response_format import CompletionCr
|
|
|
18
17
|
from .completion_create_params_non_streaming_service_tier import CompletionCreateParamsNonStreamingServiceTier
|
|
19
18
|
from .completion_create_params_non_streaming_stop import CompletionCreateParamsNonStreamingStop
|
|
20
19
|
from .completion_create_params_non_streaming_tool_choice import CompletionCreateParamsNonStreamingToolChoice
|
|
20
|
+
from .completion_create_params_non_streaming_tools_item import CompletionCreateParamsNonStreamingToolsItem
|
|
21
|
+
from .completion_create_params_non_streaming_verbosity import CompletionCreateParamsNonStreamingVerbosity
|
|
21
22
|
from .openai_types_chat_completion_create_params_function import OpenaiTypesChatCompletionCreateParamsFunction
|
|
22
23
|
from .web_search_options import WebSearchOptions
|
|
23
24
|
|
|
@@ -50,10 +51,11 @@ class CompletionCreateParamsNonStreaming(UncheckedBaseModel):
|
|
|
50
51
|
stream_options: typing.Optional[ChatCompletionStreamOptionsParam] = None
|
|
51
52
|
temperature: typing.Optional[float] = None
|
|
52
53
|
tool_choice: typing.Optional[CompletionCreateParamsNonStreamingToolChoice] = None
|
|
53
|
-
tools: typing.Optional[typing.List[
|
|
54
|
+
tools: typing.Optional[typing.List[CompletionCreateParamsNonStreamingToolsItem]] = None
|
|
54
55
|
top_logprobs: typing.Optional[int] = None
|
|
55
56
|
top_p: typing.Optional[float] = None
|
|
56
57
|
user: typing.Optional[str] = None
|
|
58
|
+
verbosity: typing.Optional[CompletionCreateParamsNonStreamingVerbosity] = None
|
|
57
59
|
web_search_options: typing.Optional[WebSearchOptions] = None
|
|
58
60
|
stream: typing.Optional[bool] = None
|
|
59
61
|
|
|
@@ -4,6 +4,13 @@ import typing
|
|
|
4
4
|
|
|
5
5
|
CompletionCreateParamsNonStreamingModel = typing.Union[
|
|
6
6
|
str,
|
|
7
|
+
typing.Literal["gpt-5"],
|
|
8
|
+
typing.Literal["gpt-5-mini"],
|
|
9
|
+
typing.Literal["gpt-5-nano"],
|
|
10
|
+
typing.Literal["gpt-5-2025-08-07"],
|
|
11
|
+
typing.Literal["gpt-5-mini-2025-08-07"],
|
|
12
|
+
typing.Literal["gpt-5-nano-2025-08-07"],
|
|
13
|
+
typing.Literal["gpt-5-chat-latest"],
|
|
7
14
|
typing.Literal["gpt-4.1"],
|
|
8
15
|
typing.Literal["gpt-4.1-mini"],
|
|
9
16
|
typing.Literal["gpt-4.1-nano"],
|