anthropic 0.62.0__tar.gz → 0.64.0__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.64.0/.release-please-manifest.json +3 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/CHANGELOG.md +29 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/PKG-INFO +1 -1
- {anthropic-0.62.0 → anthropic-0.64.0}/api.md +1 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/pyproject.toml +1 -1
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_version.py +1 -1
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/messages/messages.py +2 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/__init__.py +1 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/anthropic_beta_param.py +1 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/cache_control_ephemeral_param.py +11 -0
- anthropic-0.64.0/src/anthropic/types/cache_creation.py +13 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/usage.py +4 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/beta/messages/test_batches.py +2 -2
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/test_messages.py +48 -12
- anthropic-0.62.0/.release-please-manifest.json +0 -3
- {anthropic-0.62.0 → anthropic-0.64.0}/.gitignore +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/CONTRIBUTING.md +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/LICENSE +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/README.md +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/SECURITY.md +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/bin/check-release-environment +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/bin/publish-pypi +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/.keep +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/batch_results.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/bedrock.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/images.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/logo.png +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/mcp.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/messages_stream.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/text_completions_demo_async.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/text_completions_demo_sync.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/text_completions_streaming.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/thinking.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/thinking_stream.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/tools.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/tools_stream.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/vertex.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/web_search.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/examples/web_search_stream.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/helpers.md +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/mypy.ini +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/release-please-config.json +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/requirements-dev.lock +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_base_client.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_client.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_compat.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_constants.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_decoders/jsonl.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_exceptions.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_files.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_legacy_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_models.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_qs.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_resource.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_streaming.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_types.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_httpx.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_logs.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_proxy.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_reflection.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_resources_proxy.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_streams.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_sync.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_transform.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_typing.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/_utils/_utils.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/.keep +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/_extras/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/_extras/_common.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/_extras/_google_auth.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/_auth.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/_beta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/_beta_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/_client.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/_stream.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/bedrock/_stream_decoder.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/streaming/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/streaming/_beta_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/streaming/_beta_types.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/streaming/_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/streaming/_types.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/vertex/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/vertex/_auth.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/vertex/_beta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/vertex/_beta_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/lib/vertex/_client.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/pagination.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/py.typed +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/beta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/files.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/messages/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/messages/batches.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/messages/messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/beta/models.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/completions.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/messages/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/messages/batches.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/resources/models.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/base64_image_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/base64_pdf_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_base64_image_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_base64_pdf_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_base64_pdf_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_cache_control_ephemeral_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_cache_creation.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_char_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_char_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_content_block_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_content_block_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_page_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_page_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_search_result_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_search_result_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_web_search_result_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citations_config_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citations_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citations_web_search_result_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_output_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_output_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_20250522_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_block_content.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_error_code.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_tool_result_error_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_container.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_container_upload_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_container_upload_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_content_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_content_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_content_block_source_content_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_content_block_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_file_document_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_file_image_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_image_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_input_json_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_mcp_tool_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_mcp_tool_use_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_mcp_tool_use_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_message.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_message_delta_usage.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_message_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_message_tokens_count.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_metadata_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_model_info.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_plain_text_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_content_block_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_content_block_delta_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_content_block_start_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_content_block_stop_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_message_delta_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_message_start_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_message_stop_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_raw_message_stream_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_redacted_thinking_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_redacted_thinking_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_request_document_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_request_mcp_server_url_definition_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_request_mcp_tool_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_search_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_server_tool_usage.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_server_tool_use_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_server_tool_use_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_signature_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_stop_reason.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_text_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_text_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_text_citation.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_text_citation_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_text_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_thinking_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_thinking_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_thinking_config_disabled_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_thinking_config_enabled_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_thinking_config_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_thinking_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_bash_20241022_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_bash_20250124_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_choice_any_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_choice_auto_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_choice_none_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_choice_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_choice_tool_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_computer_use_20241022_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_computer_use_20250124_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_text_editor_20241022_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_text_editor_20250124_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_text_editor_20250429_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_text_editor_20250728_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_union_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_use_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_tool_use_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_url_image_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_url_pdf_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_usage.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_20250305_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_request_error_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_result_block_content.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_result_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_web_search_tool_result_error_code.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/deleted_file.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/file_list_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/file_metadata.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/file_upload_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/message_count_tokens_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/message_create_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/batch_create_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/batch_list_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_deleted_message_batch.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_canceled_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_errored_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_expired_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_individual_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_request_counts.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/messages/beta_message_batch_succeeded_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/model_list_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_api_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_authentication_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_billing_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_error_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_gateway_timeout_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_invalid_request_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_not_found_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_overloaded_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_permission_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta_rate_limit_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_char_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_char_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_content_block_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_content_block_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_page_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_page_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_search_result_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citation_web_search_result_location_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citations_config_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citations_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citations_search_result_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/citations_web_search_result_location.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/completion.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/completion_create_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block_delta_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block_source_content_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block_start_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/content_block_stop_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/document_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/image_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/input_json_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_count_tokens_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_count_tokens_tool_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_create_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_delta_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_delta_usage.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_start_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_stop_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_stream_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/message_tokens_count.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/batch_create_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/batch_list_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/deleted_message_batch.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_canceled_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_errored_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_expired_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_individual_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_request_counts.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/messages/message_batch_succeeded_result.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/metadata_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/model.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/model_info.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/model_list_params.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/model_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/plain_text_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_content_block_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_content_block_delta_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_content_block_start_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_content_block_stop_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_message_delta_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_message_start_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_message_stop_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/raw_message_stream_event.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/redacted_thinking_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/redacted_thinking_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/search_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/server_tool_usage.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/server_tool_use_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/server_tool_use_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/api_error_object.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/authentication_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/billing_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/error_object.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/error_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/gateway_timeout_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/invalid_request_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/not_found_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/overloaded_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/permission_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/shared/rate_limit_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/signature_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/stop_reason.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/text_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/text_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/text_citation.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/text_citation_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/text_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/thinking_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/thinking_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/thinking_config_disabled_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/thinking_config_enabled_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/thinking_config_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/thinking_delta.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_bash_20250124_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_choice_any_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_choice_auto_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_choice_none_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_choice_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_choice_tool_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_text_editor_20250124_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_text_editor_20250429_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_text_editor_20250728_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_union_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_use_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/tool_use_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/url_image_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/url_pdf_source_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_20250305_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_request_error_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_result_block.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_result_block_content.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_result_block_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/web_search_tool_result_error.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/beta/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/beta/messages/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/beta/test_files.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/beta/test_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/beta/test_models.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/messages/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/messages/test_batches.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/test_completions.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/api_resources/test_models.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/conftest.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/decoders/test_jsonl.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/__init__.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/fixtures/basic_response.txt +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/fixtures/incomplete_partial_json_response.txt +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/fixtures/tool_use_response.txt +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/helpers.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/test_beta_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/test_messages.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/streaming/test_partial_json.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/test_bedrock.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/lib/test_vertex.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/sample_file.txt +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_client.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_deepcopy.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_extract_files.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_files.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_legacy_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_models.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_qs.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_required_args.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_response.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_streaming.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_transform.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_utils/test_proxy.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/test_utils/test_typing.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/tests/utils.py +0 -0
- {anthropic-0.62.0 → anthropic-0.64.0}/uv.lock +0 -0
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.64.0 (2025-08-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.63.0...v0.64.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.63.0...v0.64.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** makes 1 hour TTL Cache Control generally available ([35201ba](https://github.com/anthropics/anthropic-sdk-python/commit/35201baef190c354a803278aa926490ff6069abf))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* deprecate older claude-3-5 sonnet models ([#1116](https://github.com/anthropics/anthropic-sdk-python/issues/1116)) ([3e8e10d](https://github.com/anthropics/anthropic-sdk-python/commit/3e8e10dc706e4fb272db78aec4c7678f842c54af))
|
|
15
|
+
|
|
16
|
+
## 0.63.0 (2025-08-12)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v0.62.0...v0.63.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.62.0...v0.63.0)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **betas:** add context-1m-2025-08-07 ([57a80e7](https://github.com/anthropics/anthropic-sdk-python/commit/57a80e7a2cf6813db6633516dbb5bb65a6e85122))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Chores
|
|
26
|
+
|
|
27
|
+
* **internal:** detect breaking changes when removing endpoints ([5c62d7b](https://github.com/anthropics/anthropic-sdk-python/commit/5c62d7bdaf8a180dcb6bc30c17a6bdf13d976ab2))
|
|
28
|
+
* **internal:** update comment in script ([9e9d69c](https://github.com/anthropics/anthropic-sdk-python/commit/9e9d69cdd98a838adac734a0748e1f52ccd4faa4))
|
|
29
|
+
* **internal:** update test skipping reason ([b18a3d5](https://github.com/anthropics/anthropic-sdk-python/commit/b18a3d55a8f75ba3257ec83283d31bcb82548713))
|
|
30
|
+
* update @stainless-api/prism-cli to v5.15.0 ([55cb0a1](https://github.com/anthropics/anthropic-sdk-python/commit/55cb0a1d1f42f6bcae74c6d1946f927534e30276))
|
|
31
|
+
|
|
3
32
|
## 0.62.0 (2025-08-08)
|
|
4
33
|
|
|
5
34
|
Full Changelog: [v0.61.0...v0.62.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.61.0...v0.62.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anthropic
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.64.0
|
|
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
|
|
@@ -57,6 +57,8 @@ DEPRECATED_MODELS = {
|
|
|
57
57
|
"claude-3-opus-20240229": "January 5th, 2026",
|
|
58
58
|
"claude-2.1": "July 21st, 2025",
|
|
59
59
|
"claude-2.0": "July 21st, 2025",
|
|
60
|
+
"claude-3-5-sonnet-20241022": "October 22, 2025",
|
|
61
|
+
"claude-3-5-sonnet-20240620": "October 22, 2025",
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
|
|
@@ -30,6 +30,7 @@ from .content_block import ContentBlock as ContentBlock
|
|
|
30
30
|
from .message_param import MessageParam as MessageParam
|
|
31
31
|
from .text_citation import TextCitation as TextCitation
|
|
32
32
|
from .beta_api_error import BetaAPIError as BetaAPIError
|
|
33
|
+
from .cache_creation import CacheCreation as CacheCreation
|
|
33
34
|
from .metadata_param import MetadataParam as MetadataParam
|
|
34
35
|
from .thinking_block import ThinkingBlock as ThinkingBlock
|
|
35
36
|
from .thinking_delta import ThinkingDelta as ThinkingDelta
|
|
@@ -9,3 +9,14 @@ __all__ = ["CacheControlEphemeralParam"]
|
|
|
9
9
|
|
|
10
10
|
class CacheControlEphemeralParam(TypedDict, total=False):
|
|
11
11
|
type: Required[Literal["ephemeral"]]
|
|
12
|
+
|
|
13
|
+
ttl: Literal["5m", "1h"]
|
|
14
|
+
"""The time-to-live for the cache control breakpoint.
|
|
15
|
+
|
|
16
|
+
This may be one the following values:
|
|
17
|
+
|
|
18
|
+
- `5m`: 5 minutes
|
|
19
|
+
- `1h`: 1 hour
|
|
20
|
+
|
|
21
|
+
Defaults to `5m`.
|
|
22
|
+
"""
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["CacheCreation"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class CacheCreation(BaseModel):
|
|
9
|
+
ephemeral_1h_input_tokens: int
|
|
10
|
+
"""The number of input tokens used to create the 1 hour cache entry."""
|
|
11
|
+
|
|
12
|
+
ephemeral_5m_input_tokens: int
|
|
13
|
+
"""The number of input tokens used to create the 5 minute cache entry."""
|
|
@@ -4,12 +4,16 @@ from typing import Optional
|
|
|
4
4
|
from typing_extensions import Literal
|
|
5
5
|
|
|
6
6
|
from .._models import BaseModel
|
|
7
|
+
from .cache_creation import CacheCreation
|
|
7
8
|
from .server_tool_usage import ServerToolUsage
|
|
8
9
|
|
|
9
10
|
__all__ = ["Usage"]
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
class Usage(BaseModel):
|
|
14
|
+
cache_creation: Optional[CacheCreation] = None
|
|
15
|
+
"""Breakdown of cached tokens by TTL"""
|
|
16
|
+
|
|
13
17
|
cache_creation_input_tokens: Optional[int] = None
|
|
14
18
|
"""The number of input tokens used to create the cache entry."""
|
|
15
19
|
|
|
@@ -396,7 +396,7 @@ class TestBatches:
|
|
|
396
396
|
assert i == 1
|
|
397
397
|
assert results.http_response.is_stream_consumed
|
|
398
398
|
|
|
399
|
-
@pytest.mark.skip(reason="Prism doesn't support
|
|
399
|
+
@pytest.mark.skip(reason="Prism doesn't support application/x-jsonl responses")
|
|
400
400
|
@parametrize
|
|
401
401
|
def test_path_params_results(self, client: Anthropic) -> None:
|
|
402
402
|
with pytest.raises(ValueError, match=r"Expected a non-empty value for `message_batch_id` but received ''"):
|
|
@@ -783,7 +783,7 @@ class TestAsyncBatches:
|
|
|
783
783
|
assert i == 1
|
|
784
784
|
assert results.http_response.is_stream_consumed
|
|
785
785
|
|
|
786
|
-
@pytest.mark.skip(reason="Prism doesn't support
|
|
786
|
+
@pytest.mark.skip(reason="Prism doesn't support application/x-jsonl responses")
|
|
787
787
|
@parametrize
|
|
788
788
|
async def test_path_params_results(self, async_client: AsyncAnthropic) -> None:
|
|
789
789
|
with pytest.raises(ValueError, match=r"Expected a non-empty value for `message_batch_id` but received ''"):
|
|
@@ -54,7 +54,10 @@ class TestMessages:
|
|
|
54
54
|
{
|
|
55
55
|
"text": "Today's date is 2024-06-01.",
|
|
56
56
|
"type": "text",
|
|
57
|
-
"cache_control": {
|
|
57
|
+
"cache_control": {
|
|
58
|
+
"type": "ephemeral",
|
|
59
|
+
"ttl": "5m",
|
|
60
|
+
},
|
|
58
61
|
"citations": [
|
|
59
62
|
{
|
|
60
63
|
"cited_text": "cited_text",
|
|
@@ -93,7 +96,10 @@ class TestMessages:
|
|
|
93
96
|
"required": ["location"],
|
|
94
97
|
},
|
|
95
98
|
"name": "name",
|
|
96
|
-
"cache_control": {
|
|
99
|
+
"cache_control": {
|
|
100
|
+
"type": "ephemeral",
|
|
101
|
+
"ttl": "5m",
|
|
102
|
+
},
|
|
97
103
|
"description": "Get the current weather in a given location",
|
|
98
104
|
"type": "custom",
|
|
99
105
|
}
|
|
@@ -175,7 +181,10 @@ class TestMessages:
|
|
|
175
181
|
{
|
|
176
182
|
"text": "Today's date is 2024-06-01.",
|
|
177
183
|
"type": "text",
|
|
178
|
-
"cache_control": {
|
|
184
|
+
"cache_control": {
|
|
185
|
+
"type": "ephemeral",
|
|
186
|
+
"ttl": "5m",
|
|
187
|
+
},
|
|
179
188
|
"citations": [
|
|
180
189
|
{
|
|
181
190
|
"cited_text": "cited_text",
|
|
@@ -214,7 +223,10 @@ class TestMessages:
|
|
|
214
223
|
"required": ["location"],
|
|
215
224
|
},
|
|
216
225
|
"name": "name",
|
|
217
|
-
"cache_control": {
|
|
226
|
+
"cache_control": {
|
|
227
|
+
"type": "ephemeral",
|
|
228
|
+
"ttl": "5m",
|
|
229
|
+
},
|
|
218
230
|
"description": "Get the current weather in a given location",
|
|
219
231
|
"type": "custom",
|
|
220
232
|
}
|
|
@@ -300,7 +312,10 @@ class TestMessages:
|
|
|
300
312
|
{
|
|
301
313
|
"text": "Today's date is 2024-06-01.",
|
|
302
314
|
"type": "text",
|
|
303
|
-
"cache_control": {
|
|
315
|
+
"cache_control": {
|
|
316
|
+
"type": "ephemeral",
|
|
317
|
+
"ttl": "5m",
|
|
318
|
+
},
|
|
304
319
|
"citations": [
|
|
305
320
|
{
|
|
306
321
|
"cited_text": "cited_text",
|
|
@@ -338,7 +353,10 @@ class TestMessages:
|
|
|
338
353
|
"required": ["location"],
|
|
339
354
|
},
|
|
340
355
|
"name": "name",
|
|
341
|
-
"cache_control": {
|
|
356
|
+
"cache_control": {
|
|
357
|
+
"type": "ephemeral",
|
|
358
|
+
"ttl": "5m",
|
|
359
|
+
},
|
|
342
360
|
"description": "Get the current weather in a given location",
|
|
343
361
|
"type": "custom",
|
|
344
362
|
}
|
|
@@ -421,7 +439,10 @@ class TestAsyncMessages:
|
|
|
421
439
|
{
|
|
422
440
|
"text": "Today's date is 2024-06-01.",
|
|
423
441
|
"type": "text",
|
|
424
|
-
"cache_control": {
|
|
442
|
+
"cache_control": {
|
|
443
|
+
"type": "ephemeral",
|
|
444
|
+
"ttl": "5m",
|
|
445
|
+
},
|
|
425
446
|
"citations": [
|
|
426
447
|
{
|
|
427
448
|
"cited_text": "cited_text",
|
|
@@ -460,7 +481,10 @@ class TestAsyncMessages:
|
|
|
460
481
|
"required": ["location"],
|
|
461
482
|
},
|
|
462
483
|
"name": "name",
|
|
463
|
-
"cache_control": {
|
|
484
|
+
"cache_control": {
|
|
485
|
+
"type": "ephemeral",
|
|
486
|
+
"ttl": "5m",
|
|
487
|
+
},
|
|
464
488
|
"description": "Get the current weather in a given location",
|
|
465
489
|
"type": "custom",
|
|
466
490
|
}
|
|
@@ -542,7 +566,10 @@ class TestAsyncMessages:
|
|
|
542
566
|
{
|
|
543
567
|
"text": "Today's date is 2024-06-01.",
|
|
544
568
|
"type": "text",
|
|
545
|
-
"cache_control": {
|
|
569
|
+
"cache_control": {
|
|
570
|
+
"type": "ephemeral",
|
|
571
|
+
"ttl": "5m",
|
|
572
|
+
},
|
|
546
573
|
"citations": [
|
|
547
574
|
{
|
|
548
575
|
"cited_text": "cited_text",
|
|
@@ -581,7 +608,10 @@ class TestAsyncMessages:
|
|
|
581
608
|
"required": ["location"],
|
|
582
609
|
},
|
|
583
610
|
"name": "name",
|
|
584
|
-
"cache_control": {
|
|
611
|
+
"cache_control": {
|
|
612
|
+
"type": "ephemeral",
|
|
613
|
+
"ttl": "5m",
|
|
614
|
+
},
|
|
585
615
|
"description": "Get the current weather in a given location",
|
|
586
616
|
"type": "custom",
|
|
587
617
|
}
|
|
@@ -667,7 +697,10 @@ class TestAsyncMessages:
|
|
|
667
697
|
{
|
|
668
698
|
"text": "Today's date is 2024-06-01.",
|
|
669
699
|
"type": "text",
|
|
670
|
-
"cache_control": {
|
|
700
|
+
"cache_control": {
|
|
701
|
+
"type": "ephemeral",
|
|
702
|
+
"ttl": "5m",
|
|
703
|
+
},
|
|
671
704
|
"citations": [
|
|
672
705
|
{
|
|
673
706
|
"cited_text": "cited_text",
|
|
@@ -705,7 +738,10 @@ class TestAsyncMessages:
|
|
|
705
738
|
"required": ["location"],
|
|
706
739
|
},
|
|
707
740
|
"name": "name",
|
|
708
|
-
"cache_control": {
|
|
741
|
+
"cache_control": {
|
|
742
|
+
"type": "ephemeral",
|
|
743
|
+
"ttl": "5m",
|
|
744
|
+
},
|
|
709
745
|
"description": "Get the current weather in a given location",
|
|
710
746
|
"type": "custom",
|
|
711
747
|
}
|
|
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.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_base64_image_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_base64_pdf_block_param.py
RENAMED
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_base64_pdf_source_param.py
RENAMED
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_cache_control_ephemeral_param.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_char_location.py
RENAMED
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_char_location_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citation_page_location.py
RENAMED
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/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.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_citations_config_param.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_output_block.py
RENAMED
|
File without changes
|
|
File without changes
|
{anthropic-0.62.0 → anthropic-0.64.0}/src/anthropic/types/beta/beta_code_execution_result_block.py
RENAMED
|
File without changes
|
|
File without changes
|