anthropic 0.70.0__tar.gz → 0.71.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.71.1/.release-please-manifest.json +3 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/CHANGELOG.md +22 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/PKG-INFO +2 -2
- {anthropic-0.70.0 → anthropic-0.71.1}/api.md +43 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/pyproject.toml +2 -2
- {anthropic-0.70.0 → anthropic-0.71.1}/requirements-dev.lock +5 -5
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_base_client.py +6 -2
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_version.py +1 -1
- anthropic-0.71.1/src/anthropic/lib/__init__.py +1 -0
- anthropic-0.71.1/src/anthropic/lib/_files.py +42 -0
- anthropic-0.71.1/src/anthropic/pagination.py +200 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/__init__.py +14 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/beta.py +32 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/messages/messages.py +140 -122
- anthropic-0.71.1/src/anthropic/resources/beta/skills/__init__.py +33 -0
- anthropic-0.71.1/src/anthropic/resources/beta/skills/skills.py +680 -0
- anthropic-0.71.1/src/anthropic/resources/beta/skills/versions.py +658 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/completions.py +36 -42
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/messages/messages.py +92 -98
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/anthropic_beta_param.py +1 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/__init__.py +9 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_container.py +5 -0
- anthropic-0.71.1/src/anthropic/types/beta/beta_container_params.py +18 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_message.py +4 -1
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_message_delta_event.py +1 -1
- anthropic-0.71.1/src/anthropic/types/beta/beta_skill.py +18 -0
- anthropic-0.71.1/src/anthropic/types/beta/beta_skill_params.py +18 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_thinking_config_enabled_param.py +1 -1
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/message_count_tokens_params.py +14 -10
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/message_create_params.py +25 -19
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/batch_create_params.py +1 -0
- anthropic-0.71.1/src/anthropic/types/beta/skill_create_params.py +31 -0
- anthropic-0.71.1/src/anthropic/types/beta/skill_create_response.py +49 -0
- anthropic-0.71.1/src/anthropic/types/beta/skill_delete_response.py +19 -0
- anthropic-0.71.1/src/anthropic/types/beta/skill_list_params.py +38 -0
- anthropic-0.71.1/src/anthropic/types/beta/skill_list_response.py +49 -0
- anthropic-0.71.1/src/anthropic/types/beta/skill_retrieve_response.py +49 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/__init__.py +10 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/version_create_params.py +24 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/version_create_response.py +49 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/version_delete_response.py +19 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/version_list_params.py +25 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/version_list_response.py +49 -0
- anthropic-0.71.1/src/anthropic/types/beta/skills/version_retrieve_response.py +49 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/completion_create_params.py +5 -6
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_count_tokens_params.py +9 -9
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_create_params.py +13 -15
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/batch_create_params.py +1 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/model.py +0 -3
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/model_param.py +0 -3
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/stop_reason.py +1 -3
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/thinking_config_enabled_param.py +1 -1
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/beta/messages/test_batches.py +28 -10
- anthropic-0.71.1/tests/api_resources/beta/skills/test_versions.py +458 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/beta/test_messages.py +64 -28
- anthropic-0.71.1/tests/api_resources/beta/test_skills.py +360 -0
- anthropic-0.71.1/tests/api_resources/messages/__init__.py +1 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/messages/test_batches.py +6 -6
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/test_completions.py +16 -16
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/test_messages.py +24 -24
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/test_partial_json.py +2 -2
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_client.py +12 -12
- {anthropic-0.70.0 → anthropic-0.71.1}/uv.lock +168 -117
- anthropic-0.70.0/.release-please-manifest.json +0 -3
- anthropic-0.70.0/src/anthropic/pagination.py +0 -84
- anthropic-0.70.0/tests/lib/tools/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/.gitignore +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/CONTRIBUTING.md +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/LICENSE +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/README.md +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/SECURITY.md +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/bin/check-release-environment +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/bin/publish-pypi +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/.keep +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/batch_results.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/bedrock.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/images.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/logo.png +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/memory/basic.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/messages_stream.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/text_completions_demo_async.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/text_completions_demo_sync.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/text_completions_streaming.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/thinking.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/thinking_stream.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/tools.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/tools_runner.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/tools_stream.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/vertex.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/web_search.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/examples/web_search_stream.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/helpers.md +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/release-please-config.json +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_client.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_compat.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_constants.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_decoders/jsonl.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_exceptions.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_files.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_legacy_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_models.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_qs.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_resource.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_streaming.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_types.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_compat.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_datetime_parse.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_httpx.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_logs.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_proxy.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_reflection.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_resources_proxy.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_streams.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_sync.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_transform.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_typing.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/_utils/_utils.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/.keep +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/_extras/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/_extras/_common.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/_extras/_google_auth.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/_auth.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/_beta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/_beta_messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/_client.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/_stream.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/bedrock/_stream_decoder.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/streaming/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/streaming/_beta_messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/streaming/_beta_types.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/streaming/_messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/streaming/_types.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/tools/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/tools/_beta_builtin_memory_tool.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/tools/_beta_functions.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/tools/_beta_runner.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/vertex/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/vertex/_auth.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/vertex/_beta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/vertex/_beta_messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/lib/vertex/_client.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/py.typed +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/files.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/messages/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/messages/batches.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/beta/models.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/messages/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/messages/batches.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/resources/models.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/base64_image_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/base64_pdf_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_base64_image_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_base64_pdf_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_base64_pdf_source.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_base64_pdf_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_output_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_output_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_tool_result_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_bash_code_execution_tool_result_error_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_cache_control_ephemeral_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_cache_creation.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_char_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_char_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_config.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_content_block_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_content_block_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_page_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_page_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_search_result_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_search_result_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citation_web_search_result_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citations_config_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citations_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_citations_web_search_result_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_clear_tool_uses_20250919_edit_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_clear_tool_uses_20250919_edit_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_output_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_output_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_20250522_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_20250825_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block_content.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_error_code.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_code_execution_tool_result_error_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_container_upload_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_container_upload_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_content_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_content_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_content_block_source_content_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_content_block_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_context_management_config_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_context_management_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_count_tokens_context_management_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_document_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_file_document_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_file_image_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_image_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_input_json_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_input_tokens_clear_at_least_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_input_tokens_trigger_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_mcp_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_mcp_tool_use_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_mcp_tool_use_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_create_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_delete_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_insert_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_rename_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_memory_tool_20250818_view_command.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_message_delta_usage.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_message_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_message_tokens_count.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_metadata_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_model_info.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_plain_text_source.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_plain_text_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_content_block_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_content_block_delta_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_content_block_start_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_content_block_stop_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_message_start_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_message_stop_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_raw_message_stream_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_redacted_thinking_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_redacted_thinking_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_request_document_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_request_mcp_server_url_definition_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_request_mcp_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_search_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_server_tool_usage.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_server_tool_use_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_server_tool_use_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_signature_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_stop_reason.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_citation.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_citation_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_create_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_create_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_tool_result_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_tool_result_error_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_view_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_thinking_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_thinking_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_thinking_config_disabled_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_thinking_config_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_thinking_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_bash_20241022_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_bash_20250124_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_choice_any_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_choice_auto_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_choice_none_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_choice_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_choice_tool_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_computer_use_20241022_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_computer_use_20250124_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_text_editor_20241022_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_text_editor_20250124_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_text_editor_20250429_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_text_editor_20250728_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_union_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_use_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_use_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_uses_keep_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_tool_uses_trigger_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_url_image_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_url_pdf_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_usage.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_tool_20250910_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_tool_result_error_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_tool_result_error_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_fetch_tool_result_error_code.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_20250305_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_request_error_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_result_block_content.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_result_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/beta_web_search_tool_result_error_code.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/deleted_file.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/file_list_params.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/file_metadata.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/file_upload_params.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/batch_list_params.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_deleted_message_batch.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_canceled_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_errored_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_expired_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_individual_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_request_counts.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/messages/beta_message_batch_succeeded_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta/model_list_params.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_api_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_authentication_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_billing_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_error_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_gateway_timeout_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_invalid_request_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_not_found_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_overloaded_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_permission_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/beta_rate_limit_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/cache_control_ephemeral_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/cache_creation.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_char_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_char_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_content_block_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_content_block_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_page_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_page_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_search_result_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citation_web_search_result_location_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citations_config_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citations_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citations_search_result_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/citations_web_search_result_location.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/completion.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block_delta_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block_source_content_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block_start_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/content_block_stop_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/document_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/image_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/input_json_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_count_tokens_tool_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_delta_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_delta_usage.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_start_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_stop_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_stream_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/message_tokens_count.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/batch_list_params.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/deleted_message_batch.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_canceled_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_errored_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_expired_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_individual_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_request_counts.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/messages/message_batch_succeeded_result.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/metadata_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/model_info.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/model_list_params.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/plain_text_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_content_block_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_content_block_delta_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_content_block_start_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_content_block_stop_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_message_delta_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_message_start_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_message_stop_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/raw_message_stream_event.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/redacted_thinking_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/redacted_thinking_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/search_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/server_tool_usage.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/server_tool_use_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/server_tool_use_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/api_error_object.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/authentication_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/billing_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/error_object.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/error_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/gateway_timeout_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/invalid_request_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/not_found_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/overloaded_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/permission_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/shared/rate_limit_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/signature_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/text_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/text_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/text_citation.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/text_citation_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/text_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/thinking_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/thinking_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/thinking_config_disabled_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/thinking_config_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/thinking_delta.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_bash_20250124_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_choice_any_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_choice_auto_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_choice_none_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_choice_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_choice_tool_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_text_editor_20250124_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_text_editor_20250429_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_text_editor_20250728_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_union_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_use_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/tool_use_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/url_image_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/url_pdf_source_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/usage.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_20250305_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_request_error_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_result_block.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_result_block_content.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_result_block_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_result_block_param_content_param.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/src/anthropic/types/web_search_tool_result_error.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/beta/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/beta/messages/__init__.py +0 -0
- {anthropic-0.70.0/tests/api_resources/messages → anthropic-0.71.1/tests/api_resources/beta/skills}/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/beta/test_files.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/beta/test_models.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/api_resources/test_models.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/conftest.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/decoders/test_jsonl.py +0 -0
- {anthropic-0.70.0/src/anthropic → anthropic-0.71.1/tests}/lib/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/snapshots.py +0 -0
- {anthropic-0.70.0/tests/lib → anthropic-0.71.1/tests/lib/streaming}/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/fixtures/basic_response.txt +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/fixtures/incomplete_partial_json_response.txt +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/fixtures/tool_use_response.txt +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/helpers.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/test_beta_messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/streaming/test_messages.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/test_bedrock.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/test_vertex.py +0 -0
- {anthropic-0.70.0/tests/lib/streaming → anthropic-0.71.1/tests/lib/tools}/__init__.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/tools/__inline_snapshot__/test_runners/TestSyncRunTools.test_max_iterations/ef758469-6fa6-454c-b2e6-19d0b450a8c5.json +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/tools/__inline_snapshot__/test_runners/TestSyncRunTools.test_streaming_call_sync_events/9cb114c8-69bd-4111-841b-edee30333afd.json +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/tools/__inline_snapshot__/test_runners/test_streaming_call_sync/e2140c0f-07db-47ee-b86b-c2ec476866d5.json +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/tools/__inline_snapshot__/test_runners/test_streaming_call_sync_events/9cb114c8-69bd-4111-841b-edee30333afd.json +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/tools/test_functions.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/tools/test_runners.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/lib/utils.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/sample_file.txt +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_deepcopy.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_extract_files.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_files.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_legacy_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_models.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_qs.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_required_args.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_response.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_streaming.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_transform.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_utils/test_datetime_parse.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_utils/test_proxy.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/test_utils/test_typing.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tests/utils.py +0 -0
- {anthropic-0.70.0 → anthropic-0.71.1}/tools.md +0 -0
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.71.1 (2025-10-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.71.0...v0.71.1](https://github.com/anthropics/anthropic-sdk-python/compare/v0.71.0...v0.71.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **client:** resolve non-functional default socket options ([4606137](https://github.com/anthropics/anthropic-sdk-python/commit/4606137fcca27ab2d03669999b624c11394b090a))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **api:** mark older sonnet models as deprecated ([7906595](https://github.com/anthropics/anthropic-sdk-python/commit/7906595fe2f214cf0449d073145629ea8d3da437))
|
|
15
|
+
* bump `httpx-aiohttp` version to 0.1.9 ([5d27492](https://github.com/anthropics/anthropic-sdk-python/commit/5d2749222bb75201279c1877690c75687f3f8abc))
|
|
16
|
+
|
|
17
|
+
## 0.71.0 (2025-10-16)
|
|
18
|
+
|
|
19
|
+
Full Changelog: [v0.70.0...v0.71.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.70.0...v0.71.0)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* **api:** adding support for agent skills ([51a606f](https://github.com/anthropics/anthropic-sdk-python/commit/51a606f497fd278c96af00936aa98d94bdfc9ae4))
|
|
24
|
+
|
|
3
25
|
## 0.70.0 (2025-10-15)
|
|
4
26
|
|
|
5
27
|
Full Changelog: [v0.69.0...v0.70.0](https://github.com/anthropics/anthropic-sdk-python/compare/v0.69.0...v0.70.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anthropic
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.71.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
|
|
@@ -32,7 +32,7 @@ Requires-Dist: sniffio
|
|
|
32
32
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
33
33
|
Provides-Extra: aiohttp
|
|
34
34
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
35
|
-
Requires-Dist: httpx-aiohttp>=0.1.
|
|
35
|
+
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
36
36
|
Provides-Extra: bedrock
|
|
37
37
|
Requires-Dist: boto3>=1.28.57; extra == 'bedrock'
|
|
38
38
|
Requires-Dist: botocore>=1.31.57; extra == 'bedrock'
|
|
@@ -243,6 +243,7 @@ from anthropic.types.beta import (
|
|
|
243
243
|
BetaCodeExecutionToolResultErrorCode,
|
|
244
244
|
BetaCodeExecutionToolResultErrorParam,
|
|
245
245
|
BetaContainer,
|
|
246
|
+
BetaContainerParams,
|
|
246
247
|
BetaContainerUploadBlock,
|
|
247
248
|
BetaContainerUploadBlockParam,
|
|
248
249
|
BetaContentBlock,
|
|
@@ -295,6 +296,8 @@ from anthropic.types.beta import (
|
|
|
295
296
|
BetaServerToolUseBlock,
|
|
296
297
|
BetaServerToolUseBlockParam,
|
|
297
298
|
BetaSignatureDelta,
|
|
299
|
+
BetaSkill,
|
|
300
|
+
BetaSkillParams,
|
|
298
301
|
BetaStopReason,
|
|
299
302
|
BetaTextBlock,
|
|
300
303
|
BetaTextBlockParam,
|
|
@@ -409,3 +412,43 @@ Methods:
|
|
|
409
412
|
- <code title="get /v1/files/{file_id}/content?beta=true">client.beta.files.<a href="./src/anthropic/resources/beta/files.py">download</a>(file_id) -> BinaryAPIResponse</code>
|
|
410
413
|
- <code title="get /v1/files/{file_id}?beta=true">client.beta.files.<a href="./src/anthropic/resources/beta/files.py">retrieve_metadata</a>(file_id) -> <a href="./src/anthropic/types/beta/file_metadata.py">FileMetadata</a></code>
|
|
411
414
|
- <code title="post /v1/files?beta=true">client.beta.files.<a href="./src/anthropic/resources/beta/files.py">upload</a>(\*\*<a href="src/anthropic/types/beta/file_upload_params.py">params</a>) -> <a href="./src/anthropic/types/beta/file_metadata.py">FileMetadata</a></code>
|
|
415
|
+
|
|
416
|
+
## Skills
|
|
417
|
+
|
|
418
|
+
Types:
|
|
419
|
+
|
|
420
|
+
```python
|
|
421
|
+
from anthropic.types.beta import (
|
|
422
|
+
SkillCreateResponse,
|
|
423
|
+
SkillRetrieveResponse,
|
|
424
|
+
SkillListResponse,
|
|
425
|
+
SkillDeleteResponse,
|
|
426
|
+
)
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
Methods:
|
|
430
|
+
|
|
431
|
+
- <code title="post /v1/skills?beta=true">client.beta.skills.<a href="./src/anthropic/resources/beta/skills/skills.py">create</a>(\*\*<a href="src/anthropic/types/beta/skill_create_params.py">params</a>) -> <a href="./src/anthropic/types/beta/skill_create_response.py">SkillCreateResponse</a></code>
|
|
432
|
+
- <code title="get /v1/skills/{skill_id}?beta=true">client.beta.skills.<a href="./src/anthropic/resources/beta/skills/skills.py">retrieve</a>(skill_id) -> <a href="./src/anthropic/types/beta/skill_retrieve_response.py">SkillRetrieveResponse</a></code>
|
|
433
|
+
- <code title="get /v1/skills?beta=true">client.beta.skills.<a href="./src/anthropic/resources/beta/skills/skills.py">list</a>(\*\*<a href="src/anthropic/types/beta/skill_list_params.py">params</a>) -> <a href="./src/anthropic/types/beta/skill_list_response.py">SyncPageCursor[SkillListResponse]</a></code>
|
|
434
|
+
- <code title="delete /v1/skills/{skill_id}?beta=true">client.beta.skills.<a href="./src/anthropic/resources/beta/skills/skills.py">delete</a>(skill_id) -> <a href="./src/anthropic/types/beta/skill_delete_response.py">SkillDeleteResponse</a></code>
|
|
435
|
+
|
|
436
|
+
### Versions
|
|
437
|
+
|
|
438
|
+
Types:
|
|
439
|
+
|
|
440
|
+
```python
|
|
441
|
+
from anthropic.types.beta.skills import (
|
|
442
|
+
VersionCreateResponse,
|
|
443
|
+
VersionRetrieveResponse,
|
|
444
|
+
VersionListResponse,
|
|
445
|
+
VersionDeleteResponse,
|
|
446
|
+
)
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
Methods:
|
|
450
|
+
|
|
451
|
+
- <code title="post /v1/skills/{skill_id}/versions?beta=true">client.beta.skills.versions.<a href="./src/anthropic/resources/beta/skills/versions.py">create</a>(skill_id, \*\*<a href="src/anthropic/types/beta/skills/version_create_params.py">params</a>) -> <a href="./src/anthropic/types/beta/skills/version_create_response.py">VersionCreateResponse</a></code>
|
|
452
|
+
- <code title="get /v1/skills/{skill_id}/versions/{version}?beta=true">client.beta.skills.versions.<a href="./src/anthropic/resources/beta/skills/versions.py">retrieve</a>(version, \*, skill_id) -> <a href="./src/anthropic/types/beta/skills/version_retrieve_response.py">VersionRetrieveResponse</a></code>
|
|
453
|
+
- <code title="get /v1/skills/{skill_id}/versions?beta=true">client.beta.skills.versions.<a href="./src/anthropic/resources/beta/skills/versions.py">list</a>(skill_id, \*\*<a href="src/anthropic/types/beta/skills/version_list_params.py">params</a>) -> <a href="./src/anthropic/types/beta/skills/version_list_response.py">SyncPageCursor[VersionListResponse]</a></code>
|
|
454
|
+
- <code title="delete /v1/skills/{skill_id}/versions/{version}?beta=true">client.beta.skills.versions.<a href="./src/anthropic/resources/beta/skills/versions.py">delete</a>(version, \*, skill_id) -> <a href="./src/anthropic/types/beta/skills/version_delete_response.py">VersionDeleteResponse</a></code>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "anthropic"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.71.1"
|
|
4
4
|
description = "The official Python library for the anthropic API"
|
|
5
5
|
dynamic = ["readme"]
|
|
6
6
|
license = "MIT"
|
|
@@ -37,7 +37,7 @@ classifiers = [
|
|
|
37
37
|
]
|
|
38
38
|
|
|
39
39
|
[project.optional-dependencies]
|
|
40
|
-
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.
|
|
40
|
+
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
|
|
41
41
|
vertex = ["google-auth[requests] >=2, <3"]
|
|
42
42
|
bedrock = ["boto3 >= 1.28.57", "botocore >= 1.31.57"]
|
|
43
43
|
|
|
@@ -15,10 +15,10 @@ asttokens==3.0.0
|
|
|
15
15
|
# via inline-snapshot
|
|
16
16
|
astunparse==1.6.3 ; python_full_version < '3.9'
|
|
17
17
|
# via griffe
|
|
18
|
-
boto3-stubs==1.40.
|
|
18
|
+
boto3-stubs==1.40.54
|
|
19
19
|
botocore-stubs==1.38.30 ; python_full_version < '3.9'
|
|
20
20
|
# via boto3-stubs
|
|
21
|
-
botocore-stubs==1.40.
|
|
21
|
+
botocore-stubs==1.40.54 ; python_full_version >= '3.9'
|
|
22
22
|
# via boto3-stubs
|
|
23
23
|
certifi==2024.12.14
|
|
24
24
|
# via
|
|
@@ -59,7 +59,7 @@ importlib-metadata==8.5.0 ; python_full_version < '3.9'
|
|
|
59
59
|
importlib-metadata==8.6.1 ; python_full_version >= '3.9'
|
|
60
60
|
iniconfig==2.0.0
|
|
61
61
|
# via pytest
|
|
62
|
-
inline-snapshot==0.
|
|
62
|
+
inline-snapshot==0.30.0
|
|
63
63
|
jiter==0.9.1 ; python_full_version < '3.9'
|
|
64
64
|
# via anthropic
|
|
65
65
|
jiter==0.11.0 ; python_full_version >= '3.9'
|
|
@@ -126,9 +126,9 @@ tomli==2.2.1 ; python_full_version < '3.11'
|
|
|
126
126
|
# inline-snapshot
|
|
127
127
|
# mypy
|
|
128
128
|
# pytest
|
|
129
|
-
types-awscrt==0.
|
|
129
|
+
types-awscrt==0.28.1
|
|
130
130
|
# via botocore-stubs
|
|
131
|
-
types-s3transfer==0.
|
|
131
|
+
types-s3transfer==0.14.0
|
|
132
132
|
# via boto3-stubs
|
|
133
133
|
typing-extensions==4.12.2
|
|
134
134
|
# via
|
|
@@ -843,6 +843,8 @@ class _DefaultHttpxClient(httpx.Client):
|
|
|
843
843
|
arg: kwargs[arg] for arg in ("verify", "cert", "trust_env", "http1", "http2", "limits") if arg in kwargs
|
|
844
844
|
}
|
|
845
845
|
|
|
846
|
+
transport_kwargs["socket_options"] = socket_options
|
|
847
|
+
|
|
846
848
|
proxy_mounts = {
|
|
847
849
|
key: None if proxy is None else HTTPTransport(proxy=proxy, **transport_kwargs)
|
|
848
850
|
for key, proxy in proxy_map.items()
|
|
@@ -854,7 +856,7 @@ class _DefaultHttpxClient(httpx.Client):
|
|
|
854
856
|
kwargs["mounts"] = proxy_mounts
|
|
855
857
|
|
|
856
858
|
# Sets the default transport so that HTTPX won't automatically configure proxies.
|
|
857
|
-
kwargs["transport"] =
|
|
859
|
+
kwargs["transport"] = default_transport
|
|
858
860
|
|
|
859
861
|
super().__init__(**kwargs)
|
|
860
862
|
|
|
@@ -1404,6 +1406,8 @@ class _DefaultAsyncHttpxClient(httpx.AsyncClient):
|
|
|
1404
1406
|
arg: kwargs[arg] for arg in ("verify", "cert", "trust_env", "http1", "http2", "limits") if arg in kwargs
|
|
1405
1407
|
}
|
|
1406
1408
|
|
|
1409
|
+
transport_kwargs["socket_options"] = socket_options
|
|
1410
|
+
|
|
1407
1411
|
proxy_mounts = {
|
|
1408
1412
|
key: None if proxy is None else AsyncHTTPTransport(proxy=proxy, **transport_kwargs)
|
|
1409
1413
|
for key, proxy in proxy_map.items()
|
|
@@ -1415,7 +1419,7 @@ class _DefaultAsyncHttpxClient(httpx.AsyncClient):
|
|
|
1415
1419
|
kwargs["mounts"] = proxy_mounts
|
|
1416
1420
|
|
|
1417
1421
|
# Sets the default transport so that HTTPX won't automatically configure proxies.
|
|
1418
|
-
kwargs["transport"] =
|
|
1422
|
+
kwargs["transport"] = default_transport
|
|
1419
1423
|
|
|
1420
1424
|
super().__init__(**kwargs)
|
|
1421
1425
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from ._files import files_from_dir as files_from_dir, async_files_from_dir as async_files_from_dir
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
|
|
6
|
+
import anyio
|
|
7
|
+
|
|
8
|
+
from .._types import FileTypes
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def files_from_dir(directory: str | os.PathLike[str]) -> list[FileTypes]:
|
|
12
|
+
path = Path(directory)
|
|
13
|
+
|
|
14
|
+
files: list[FileTypes] = []
|
|
15
|
+
_collect_files(path, path.parent, files)
|
|
16
|
+
return files
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def _collect_files(directory: Path, relative_to: Path, files: list[FileTypes]) -> None:
|
|
20
|
+
for path in directory.iterdir():
|
|
21
|
+
if path.is_dir():
|
|
22
|
+
_collect_files(path, relative_to, files)
|
|
23
|
+
continue
|
|
24
|
+
|
|
25
|
+
files.append((str(path.relative_to(relative_to)), path.read_bytes()))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
async def async_files_from_dir(directory: str | os.PathLike[str]) -> list[FileTypes]:
|
|
29
|
+
path = anyio.Path(directory)
|
|
30
|
+
|
|
31
|
+
files: list[FileTypes] = []
|
|
32
|
+
await _async_collect_files(path, path.parent, files)
|
|
33
|
+
return files
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
async def _async_collect_files(directory: anyio.Path, relative_to: anyio.Path, files: list[FileTypes]) -> None:
|
|
37
|
+
async for path in directory.iterdir():
|
|
38
|
+
if await path.is_dir():
|
|
39
|
+
await _async_collect_files(path, relative_to, files)
|
|
40
|
+
continue
|
|
41
|
+
|
|
42
|
+
files.append((str(path.relative_to(relative_to)), await path.read_bytes()))
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Generic, TypeVar, Optional
|
|
4
|
+
from typing_extensions import override
|
|
5
|
+
|
|
6
|
+
from ._base_client import BasePage, PageInfo, BaseSyncPage, BaseAsyncPage
|
|
7
|
+
|
|
8
|
+
__all__ = ["SyncPage", "AsyncPage", "SyncTokenPage", "AsyncTokenPage", "SyncPageCursor", "AsyncPageCursor"]
|
|
9
|
+
|
|
10
|
+
_T = TypeVar("_T")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class SyncPage(BaseSyncPage[_T], BasePage[_T], Generic[_T]):
|
|
14
|
+
data: List[_T]
|
|
15
|
+
has_more: Optional[bool] = None
|
|
16
|
+
first_id: Optional[str] = None
|
|
17
|
+
last_id: Optional[str] = None
|
|
18
|
+
|
|
19
|
+
@override
|
|
20
|
+
def _get_page_items(self) -> List[_T]:
|
|
21
|
+
data = self.data
|
|
22
|
+
if not data:
|
|
23
|
+
return []
|
|
24
|
+
return data
|
|
25
|
+
|
|
26
|
+
@override
|
|
27
|
+
def has_next_page(self) -> bool:
|
|
28
|
+
has_more = self.has_more
|
|
29
|
+
if has_more is not None and has_more is False:
|
|
30
|
+
return False
|
|
31
|
+
|
|
32
|
+
return super().has_next_page()
|
|
33
|
+
|
|
34
|
+
@override
|
|
35
|
+
def next_page_info(self) -> Optional[PageInfo]:
|
|
36
|
+
if self._options.params.get("before_id"):
|
|
37
|
+
first_id = self.first_id
|
|
38
|
+
if not first_id:
|
|
39
|
+
return None
|
|
40
|
+
|
|
41
|
+
return PageInfo(params={"before_id": first_id})
|
|
42
|
+
|
|
43
|
+
last_id = self.last_id
|
|
44
|
+
if not last_id:
|
|
45
|
+
return None
|
|
46
|
+
|
|
47
|
+
return PageInfo(params={"after_id": last_id})
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class AsyncPage(BaseAsyncPage[_T], BasePage[_T], Generic[_T]):
|
|
51
|
+
data: List[_T]
|
|
52
|
+
has_more: Optional[bool] = None
|
|
53
|
+
first_id: Optional[str] = None
|
|
54
|
+
last_id: Optional[str] = None
|
|
55
|
+
|
|
56
|
+
@override
|
|
57
|
+
def _get_page_items(self) -> List[_T]:
|
|
58
|
+
data = self.data
|
|
59
|
+
if not data:
|
|
60
|
+
return []
|
|
61
|
+
return data
|
|
62
|
+
|
|
63
|
+
@override
|
|
64
|
+
def has_next_page(self) -> bool:
|
|
65
|
+
has_more = self.has_more
|
|
66
|
+
if has_more is not None and has_more is False:
|
|
67
|
+
return False
|
|
68
|
+
|
|
69
|
+
return super().has_next_page()
|
|
70
|
+
|
|
71
|
+
@override
|
|
72
|
+
def next_page_info(self) -> Optional[PageInfo]:
|
|
73
|
+
if self._options.params.get("before_id"):
|
|
74
|
+
first_id = self.first_id
|
|
75
|
+
if not first_id:
|
|
76
|
+
return None
|
|
77
|
+
|
|
78
|
+
return PageInfo(params={"before_id": first_id})
|
|
79
|
+
|
|
80
|
+
last_id = self.last_id
|
|
81
|
+
if not last_id:
|
|
82
|
+
return None
|
|
83
|
+
|
|
84
|
+
return PageInfo(params={"after_id": last_id})
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class SyncTokenPage(BaseSyncPage[_T], BasePage[_T], Generic[_T]):
|
|
88
|
+
data: List[_T]
|
|
89
|
+
has_more: Optional[bool] = None
|
|
90
|
+
next_page: Optional[str] = None
|
|
91
|
+
|
|
92
|
+
@override
|
|
93
|
+
def _get_page_items(self) -> List[_T]:
|
|
94
|
+
data = self.data
|
|
95
|
+
if not data:
|
|
96
|
+
return []
|
|
97
|
+
return data
|
|
98
|
+
|
|
99
|
+
@override
|
|
100
|
+
def has_next_page(self) -> bool:
|
|
101
|
+
has_more = self.has_more
|
|
102
|
+
if has_more is not None and has_more is False:
|
|
103
|
+
return False
|
|
104
|
+
|
|
105
|
+
return super().has_next_page()
|
|
106
|
+
|
|
107
|
+
@override
|
|
108
|
+
def next_page_info(self) -> Optional[PageInfo]:
|
|
109
|
+
next_page = self.next_page
|
|
110
|
+
if not next_page:
|
|
111
|
+
return None
|
|
112
|
+
|
|
113
|
+
return PageInfo(params={"page_token": next_page})
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AsyncTokenPage(BaseAsyncPage[_T], BasePage[_T], Generic[_T]):
|
|
117
|
+
data: List[_T]
|
|
118
|
+
has_more: Optional[bool] = None
|
|
119
|
+
next_page: Optional[str] = None
|
|
120
|
+
|
|
121
|
+
@override
|
|
122
|
+
def _get_page_items(self) -> List[_T]:
|
|
123
|
+
data = self.data
|
|
124
|
+
if not data:
|
|
125
|
+
return []
|
|
126
|
+
return data
|
|
127
|
+
|
|
128
|
+
@override
|
|
129
|
+
def has_next_page(self) -> bool:
|
|
130
|
+
has_more = self.has_more
|
|
131
|
+
if has_more is not None and has_more is False:
|
|
132
|
+
return False
|
|
133
|
+
|
|
134
|
+
return super().has_next_page()
|
|
135
|
+
|
|
136
|
+
@override
|
|
137
|
+
def next_page_info(self) -> Optional[PageInfo]:
|
|
138
|
+
next_page = self.next_page
|
|
139
|
+
if not next_page:
|
|
140
|
+
return None
|
|
141
|
+
|
|
142
|
+
return PageInfo(params={"page_token": next_page})
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
class SyncPageCursor(BaseSyncPage[_T], BasePage[_T], Generic[_T]):
|
|
146
|
+
data: List[_T]
|
|
147
|
+
has_more: Optional[bool] = None
|
|
148
|
+
next_page: Optional[str] = None
|
|
149
|
+
|
|
150
|
+
@override
|
|
151
|
+
def _get_page_items(self) -> List[_T]:
|
|
152
|
+
data = self.data
|
|
153
|
+
if not data:
|
|
154
|
+
return []
|
|
155
|
+
return data
|
|
156
|
+
|
|
157
|
+
@override
|
|
158
|
+
def has_next_page(self) -> bool:
|
|
159
|
+
has_more = self.has_more
|
|
160
|
+
if has_more is not None and has_more is False:
|
|
161
|
+
return False
|
|
162
|
+
|
|
163
|
+
return super().has_next_page()
|
|
164
|
+
|
|
165
|
+
@override
|
|
166
|
+
def next_page_info(self) -> Optional[PageInfo]:
|
|
167
|
+
next_page = self.next_page
|
|
168
|
+
if not next_page:
|
|
169
|
+
return None
|
|
170
|
+
|
|
171
|
+
return PageInfo(params={"page": next_page})
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
class AsyncPageCursor(BaseAsyncPage[_T], BasePage[_T], Generic[_T]):
|
|
175
|
+
data: List[_T]
|
|
176
|
+
has_more: Optional[bool] = None
|
|
177
|
+
next_page: Optional[str] = None
|
|
178
|
+
|
|
179
|
+
@override
|
|
180
|
+
def _get_page_items(self) -> List[_T]:
|
|
181
|
+
data = self.data
|
|
182
|
+
if not data:
|
|
183
|
+
return []
|
|
184
|
+
return data
|
|
185
|
+
|
|
186
|
+
@override
|
|
187
|
+
def has_next_page(self) -> bool:
|
|
188
|
+
has_more = self.has_more
|
|
189
|
+
if has_more is not None and has_more is False:
|
|
190
|
+
return False
|
|
191
|
+
|
|
192
|
+
return super().has_next_page()
|
|
193
|
+
|
|
194
|
+
@override
|
|
195
|
+
def next_page_info(self) -> Optional[PageInfo]:
|
|
196
|
+
next_page = self.next_page
|
|
197
|
+
if not next_page:
|
|
198
|
+
return None
|
|
199
|
+
|
|
200
|
+
return PageInfo(params={"page": next_page})
|
|
@@ -24,6 +24,14 @@ from .models import (
|
|
|
24
24
|
ModelsWithStreamingResponse,
|
|
25
25
|
AsyncModelsWithStreamingResponse,
|
|
26
26
|
)
|
|
27
|
+
from .skills import (
|
|
28
|
+
Skills,
|
|
29
|
+
AsyncSkills,
|
|
30
|
+
SkillsWithRawResponse,
|
|
31
|
+
AsyncSkillsWithRawResponse,
|
|
32
|
+
SkillsWithStreamingResponse,
|
|
33
|
+
AsyncSkillsWithStreamingResponse,
|
|
34
|
+
)
|
|
27
35
|
from .messages import (
|
|
28
36
|
Messages,
|
|
29
37
|
AsyncMessages,
|
|
@@ -52,6 +60,12 @@ __all__ = [
|
|
|
52
60
|
"AsyncFilesWithRawResponse",
|
|
53
61
|
"FilesWithStreamingResponse",
|
|
54
62
|
"AsyncFilesWithStreamingResponse",
|
|
63
|
+
"Skills",
|
|
64
|
+
"AsyncSkills",
|
|
65
|
+
"SkillsWithRawResponse",
|
|
66
|
+
"AsyncSkillsWithRawResponse",
|
|
67
|
+
"SkillsWithStreamingResponse",
|
|
68
|
+
"AsyncSkillsWithStreamingResponse",
|
|
55
69
|
"Beta",
|
|
56
70
|
"AsyncBeta",
|
|
57
71
|
"BetaWithRawResponse",
|
|
@@ -20,6 +20,14 @@ from .models import (
|
|
|
20
20
|
)
|
|
21
21
|
from ..._compat import cached_property
|
|
22
22
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
23
|
+
from .skills.skills import (
|
|
24
|
+
Skills,
|
|
25
|
+
AsyncSkills,
|
|
26
|
+
SkillsWithRawResponse,
|
|
27
|
+
AsyncSkillsWithRawResponse,
|
|
28
|
+
SkillsWithStreamingResponse,
|
|
29
|
+
AsyncSkillsWithStreamingResponse,
|
|
30
|
+
)
|
|
23
31
|
from .messages.messages import (
|
|
24
32
|
Messages,
|
|
25
33
|
AsyncMessages,
|
|
@@ -45,6 +53,10 @@ class Beta(SyncAPIResource):
|
|
|
45
53
|
def files(self) -> Files:
|
|
46
54
|
return Files(self._client)
|
|
47
55
|
|
|
56
|
+
@cached_property
|
|
57
|
+
def skills(self) -> Skills:
|
|
58
|
+
return Skills(self._client)
|
|
59
|
+
|
|
48
60
|
@cached_property
|
|
49
61
|
def with_raw_response(self) -> BetaWithRawResponse:
|
|
50
62
|
"""
|
|
@@ -78,6 +90,10 @@ class AsyncBeta(AsyncAPIResource):
|
|
|
78
90
|
def files(self) -> AsyncFiles:
|
|
79
91
|
return AsyncFiles(self._client)
|
|
80
92
|
|
|
93
|
+
@cached_property
|
|
94
|
+
def skills(self) -> AsyncSkills:
|
|
95
|
+
return AsyncSkills(self._client)
|
|
96
|
+
|
|
81
97
|
@cached_property
|
|
82
98
|
def with_raw_response(self) -> AsyncBetaWithRawResponse:
|
|
83
99
|
"""
|
|
@@ -114,6 +130,10 @@ class BetaWithRawResponse:
|
|
|
114
130
|
def files(self) -> FilesWithRawResponse:
|
|
115
131
|
return FilesWithRawResponse(self._beta.files)
|
|
116
132
|
|
|
133
|
+
@cached_property
|
|
134
|
+
def skills(self) -> SkillsWithRawResponse:
|
|
135
|
+
return SkillsWithRawResponse(self._beta.skills)
|
|
136
|
+
|
|
117
137
|
|
|
118
138
|
class AsyncBetaWithRawResponse:
|
|
119
139
|
def __init__(self, beta: AsyncBeta) -> None:
|
|
@@ -131,6 +151,10 @@ class AsyncBetaWithRawResponse:
|
|
|
131
151
|
def files(self) -> AsyncFilesWithRawResponse:
|
|
132
152
|
return AsyncFilesWithRawResponse(self._beta.files)
|
|
133
153
|
|
|
154
|
+
@cached_property
|
|
155
|
+
def skills(self) -> AsyncSkillsWithRawResponse:
|
|
156
|
+
return AsyncSkillsWithRawResponse(self._beta.skills)
|
|
157
|
+
|
|
134
158
|
|
|
135
159
|
class BetaWithStreamingResponse:
|
|
136
160
|
def __init__(self, beta: Beta) -> None:
|
|
@@ -148,6 +172,10 @@ class BetaWithStreamingResponse:
|
|
|
148
172
|
def files(self) -> FilesWithStreamingResponse:
|
|
149
173
|
return FilesWithStreamingResponse(self._beta.files)
|
|
150
174
|
|
|
175
|
+
@cached_property
|
|
176
|
+
def skills(self) -> SkillsWithStreamingResponse:
|
|
177
|
+
return SkillsWithStreamingResponse(self._beta.skills)
|
|
178
|
+
|
|
151
179
|
|
|
152
180
|
class AsyncBetaWithStreamingResponse:
|
|
153
181
|
def __init__(self, beta: AsyncBeta) -> None:
|
|
@@ -164,3 +192,7 @@ class AsyncBetaWithStreamingResponse:
|
|
|
164
192
|
@cached_property
|
|
165
193
|
def files(self) -> AsyncFilesWithStreamingResponse:
|
|
166
194
|
return AsyncFilesWithStreamingResponse(self._beta.files)
|
|
195
|
+
|
|
196
|
+
@cached_property
|
|
197
|
+
def skills(self) -> AsyncSkillsWithStreamingResponse:
|
|
198
|
+
return AsyncSkillsWithStreamingResponse(self._beta.skills)
|