anthropic 0.58.0__tar.gz → 0.58.1__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.
- anthropic-0.58.1/.release-please-manifest.json +3 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/CHANGELOG.md +8 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/PKG-INFO +1 -1
- {anthropic-0.58.0 → anthropic-0.58.1}/pyproject.toml +1 -1
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_version.py +1 -1
- {anthropic-0.58.0 → anthropic-0.58.1}/uv.lock +1 -1
- anthropic-0.58.0/.release-please-manifest.json +0 -3
- {anthropic-0.58.0 → anthropic-0.58.1}/.gitignore +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/CONTRIBUTING.md +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/LICENSE +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/README.md +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/SECURITY.md +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/api.md +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/bin/check-release-environment +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/bin/publish-pypi +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/.keep +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/batch_results.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/bedrock.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/images.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/logo.png +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/mcp.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/messages_stream.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/text_completions_demo_async.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/text_completions_demo_sync.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/text_completions_streaming.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/thinking.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/thinking_stream.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/tools.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/tools_stream.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/vertex.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/web_search.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/examples/web_search_stream.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/helpers.md +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/mypy.ini +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/release-please-config.json +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/requirements-dev.lock +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_base_client.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_client.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_compat.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_constants.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_decoders/jsonl.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_exceptions.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_files.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_legacy_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_models.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_qs.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_resource.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_streaming.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_types.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_httpx.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_logs.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_proxy.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_reflection.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_resources_proxy.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_streams.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_sync.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_transform.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_typing.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/_utils/_utils.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/.keep +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/_extras/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/_extras/_common.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/_extras/_google_auth.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/_auth.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/_beta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/_beta_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/_client.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/_stream.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/bedrock/_stream_decoder.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/streaming/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/streaming/_beta_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/streaming/_beta_types.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/streaming/_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/streaming/_types.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/vertex/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/vertex/_auth.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/vertex/_beta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/vertex/_beta_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/lib/vertex/_client.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/pagination.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/py.typed +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/beta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/files.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/messages/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/messages/batches.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/messages/messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/beta/models.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/completions.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/messages/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/messages/batches.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/messages/messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/resources/models.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/anthropic_beta_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/base64_image_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/base64_pdf_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_base64_image_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_base64_pdf_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_base64_pdf_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_cache_control_ephemeral_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_cache_creation.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_char_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_char_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_content_block_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_content_block_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_page_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_page_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_search_result_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_search_result_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_web_search_result_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citations_config_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citations_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citations_web_search_result_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_output_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_output_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_20250522_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block_content.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_error_code.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_tool_result_error_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_container.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_container_upload_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_container_upload_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_content_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_content_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_content_block_source_content_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_content_block_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_file_document_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_file_image_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_image_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_input_json_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_mcp_tool_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_mcp_tool_use_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_mcp_tool_use_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_message.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_message_delta_usage.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_message_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_message_tokens_count.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_metadata_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_model_info.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_plain_text_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_delta_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_start_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_stop_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_delta_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_start_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_stop_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_stream_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_redacted_thinking_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_redacted_thinking_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_request_document_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_request_mcp_server_url_definition_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_request_mcp_tool_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_search_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_server_tool_usage.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_server_tool_use_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_server_tool_use_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_signature_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_stop_reason.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_text_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_text_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_text_citation.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_text_citation_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_text_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_config_disabled_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_config_enabled_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_config_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_bash_20241022_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_bash_20250124_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_any_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_auto_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_none_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_tool_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_computer_use_20241022_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_computer_use_20250124_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_text_editor_20241022_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_text_editor_20250124_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_text_editor_20250429_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_union_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_use_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_use_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_url_image_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_url_pdf_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_usage.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_20250305_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_request_error_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_result_block_content.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_result_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_tool_result_error_code.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/deleted_file.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/file_list_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/file_metadata.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/file_upload_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/message_count_tokens_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/message_create_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/batch_create_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/batch_list_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_deleted_message_batch.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_canceled_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_errored_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_expired_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_individual_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_request_counts.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/messages/beta_message_batch_succeeded_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/model_list_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_api_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_authentication_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_billing_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_error_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_gateway_timeout_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_invalid_request_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_not_found_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_overloaded_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_permission_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta_rate_limit_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/cache_control_ephemeral_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_char_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_char_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_content_block_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_content_block_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_page_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_page_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citation_web_search_result_location_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citations_config_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citations_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/citations_web_search_result_location.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/completion.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/completion_create_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block_delta_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block_source_content_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block_start_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/content_block_stop_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/document_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/image_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/input_json_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_count_tokens_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_count_tokens_tool_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_create_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_delta_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_delta_usage.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_start_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_stop_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_stream_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/message_tokens_count.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/batch_create_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/batch_list_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/deleted_message_batch.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_canceled_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_errored_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_expired_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_individual_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_request_counts.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/messages/message_batch_succeeded_result.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/metadata_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/model.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/model_info.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/model_list_params.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/model_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/plain_text_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_content_block_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_content_block_delta_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_content_block_start_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_content_block_stop_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_message_delta_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_message_start_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_message_stop_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/raw_message_stream_event.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/redacted_thinking_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/redacted_thinking_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/server_tool_usage.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/server_tool_use_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/server_tool_use_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/api_error_object.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/authentication_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/billing_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/error_object.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/error_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/gateway_timeout_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/invalid_request_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/not_found_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/overloaded_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/permission_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/shared/rate_limit_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/signature_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/stop_reason.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/text_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/text_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/text_citation.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/text_citation_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/text_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/thinking_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/thinking_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/thinking_config_disabled_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/thinking_config_enabled_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/thinking_config_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/thinking_delta.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_bash_20250124_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_choice_any_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_choice_auto_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_choice_none_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_choice_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_choice_tool_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_text_editor_20250124_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_union_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_use_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/tool_use_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/url_image_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/url_pdf_source_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/usage.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_20250305_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_request_error_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_result_block.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_result_block_content.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_result_block_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/web_search_tool_result_error.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/beta/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/beta/messages/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/beta/messages/test_batches.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/beta/test_files.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/beta/test_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/beta/test_models.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/messages/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/messages/test_batches.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/test_completions.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/test_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/api_resources/test_models.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/conftest.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/decoders/test_jsonl.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/__init__.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/fixtures/basic_response.txt +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/fixtures/incomplete_partial_json_response.txt +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/fixtures/tool_use_response.txt +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/helpers.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/test_beta_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/test_messages.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/streaming/test_partial_json.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/test_bedrock.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/lib/test_vertex.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/sample_file.txt +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_client.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_deepcopy.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_extract_files.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_files.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_legacy_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_models.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_qs.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_required_args.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_response.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_streaming.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_transform.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_utils/test_proxy.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/test_utils/test_typing.py +0 -0
- {anthropic-0.58.0 → anthropic-0.58.1}/tests/utils.py +0 -0
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.58.1 (2025-07-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.58.0...v0.58.1](https://github.com/anthropics/anthropic-sdk-python/compare/v0.58.0...v0.58.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **internal:** version bump ([31c3b38](https://github.com/anthropics/anthropic-sdk-python/commit/31c3b380e5ceab20789080c65cef9bd74e318a3e))
|
|
10
|
+
|
|
3
11
|
## 0.58.0 (2025-07-18)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.57.1...v0.58.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.57.1...v0.58.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anthropic
|
|
3
|
-
Version: 0.58.
|
|
3
|
+
Version: 0.58.1
|
|
4
4
|
Summary: The official Python library for the anthropic API
|
|
5
5
|
Project-URL: Homepage, https://github.com/anthropics/anthropic-sdk-python
|
|
6
6
|
Project-URL: Repository, https://github.com/anthropics/anthropic-sdk-python
|
|
@@ -295,7 +295,7 @@ wheels = [
|
|
|
295
295
|
|
|
296
296
|
[[package]]
|
|
297
297
|
name = "anthropic"
|
|
298
|
-
version = "0.
|
|
298
|
+
version = "0.58.0"
|
|
299
299
|
source = { editable = "." }
|
|
300
300
|
dependencies = [
|
|
301
301
|
{ name = "anyio", version = "4.5.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.9'" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_base64_image_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_base64_pdf_block_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_base64_pdf_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_cache_control_ephemeral_param.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_char_location.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_char_location_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_page_location.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citation_page_location_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_citations_config_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_output_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_code_execution_result_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_container_upload_block.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_container_upload_block_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_content_block_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_file_document_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_file_image_source_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_mcp_tool_result_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_mcp_tool_use_block_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_plain_text_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_delta.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_delta_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_start_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_content_block_stop_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_delta_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_start_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_stop_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_raw_message_stream_event.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_redacted_thinking_block.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_redacted_thinking_block_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_request_document_block_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_search_result_block_param.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_server_tool_use_block.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_server_tool_use_block_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_config_enabled_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_thinking_config_param.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_bash_20241022_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_bash_20250124_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_any_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_auto_param.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_none_param.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_choice_tool_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_tool_result_block_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_url_image_source_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_result_block.py
RENAMED
|
File without changes
|
{anthropic-0.58.0 → anthropic-0.58.1}/src/anthropic/types/beta/beta_web_search_result_block_param.py
RENAMED
|
File without changes
|