anthropic 1.1.1 → 1.9.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +170 -0
- data/README.md +32 -16
- data/lib/anthropic/client.rb +5 -2
- data/lib/anthropic/errors.rb +22 -0
- data/lib/anthropic/helpers/bedrock/client.rb +34 -4
- data/lib/anthropic/helpers/input_schema/array_of.rb +41 -0
- data/lib/anthropic/helpers/input_schema/base_model.rb +86 -0
- data/lib/anthropic/helpers/input_schema/boolean.rb +29 -0
- data/lib/anthropic/helpers/input_schema/enum_of.rb +63 -0
- data/lib/anthropic/helpers/input_schema/json_schema_converter.rb +199 -0
- data/lib/anthropic/helpers/input_schema/parsed_json.rb +39 -0
- data/lib/anthropic/helpers/input_schema/property_mapping.rb +47 -0
- data/lib/anthropic/helpers/input_schema/union_of.rb +56 -0
- data/lib/anthropic/helpers/input_schema.rb +16 -0
- data/lib/anthropic/helpers/streaming/events.rb +141 -0
- data/lib/anthropic/helpers/streaming/message_stream.rb +278 -0
- data/lib/anthropic/helpers/streaming.rb +37 -0
- data/lib/anthropic/helpers/vertex/client.rb +4 -1
- data/lib/anthropic/input_schema.rb +10 -0
- data/lib/anthropic/internal/stream.rb +6 -3
- data/lib/anthropic/internal/transport/base_client.rb +30 -5
- data/lib/anthropic/internal/transport/pooled_net_requester.rb +1 -9
- data/lib/anthropic/internal/type/array_of.rb +7 -1
- data/lib/anthropic/internal/type/base_model.rb +81 -32
- data/lib/anthropic/internal/type/base_stream.rb +3 -1
- data/lib/anthropic/internal/type/boolean.rb +7 -1
- data/lib/anthropic/internal/type/converter.rb +69 -34
- data/lib/anthropic/internal/type/enum.rb +16 -5
- data/lib/anthropic/internal/type/file_input.rb +6 -1
- data/lib/anthropic/internal/type/hash_of.rb +7 -1
- data/lib/anthropic/internal/type/union.rb +26 -16
- data/lib/anthropic/internal/type/unknown.rb +7 -1
- data/lib/anthropic/internal/util.rb +10 -11
- data/lib/anthropic/models/anthropic_beta.rb +3 -0
- data/lib/anthropic/models/beta/beta_base64_pdf_block.rb +1 -65
- data/lib/anthropic/models/beta/beta_bash_code_execution_output_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_output_block_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_result_block.rb +44 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_result_block_param.rb +44 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rb +43 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rb +53 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rb +39 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rb +39 -0
- data/lib/anthropic/models/beta/beta_citation_char_location.rb +7 -1
- data/lib/anthropic/models/beta/beta_citation_config.rb +19 -0
- data/lib/anthropic/models/beta/beta_citation_content_block_location.rb +7 -1
- data/lib/anthropic/models/beta/beta_citation_page_location.rb +7 -1
- data/lib/anthropic/models/beta/beta_citation_search_result_location.rb +55 -0
- data/lib/anthropic/models/beta/beta_citation_search_result_location_param.rb +55 -0
- data/lib/anthropic/models/beta/beta_citations_delta.rb +5 -3
- data/lib/anthropic/models/beta/beta_code_execution_tool_20250825.rb +40 -0
- data/lib/anthropic/models/beta/beta_content_block.rb +12 -5
- data/lib/anthropic/models/beta/beta_content_block_param.rb +28 -17
- data/lib/anthropic/models/beta/beta_document_block.rb +56 -0
- data/lib/anthropic/models/beta/beta_message.rb +6 -2
- data/lib/anthropic/models/beta/beta_message_param.rb +3 -3
- data/lib/anthropic/models/beta/beta_raw_content_block_start_event.rb +14 -7
- data/lib/anthropic/models/beta/beta_request_document_block.rb +75 -0
- data/lib/anthropic/models/beta/beta_search_result_block_param.rb +55 -0
- data/lib/anthropic/models/beta/beta_server_tool_usage.rb +9 -1
- data/lib/anthropic/models/beta/beta_server_tool_use_block.rb +3 -0
- data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +3 -0
- data/lib/anthropic/models/beta/beta_text_block.rb +2 -2
- data/lib/anthropic/models/beta/beta_text_block_param.rb +2 -2
- data/lib/anthropic/models/beta/beta_text_citation.rb +3 -1
- data/lib/anthropic/models/beta/beta_text_citation_param.rb +3 -1
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rb +26 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rb +49 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rb +50 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rb +47 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rb +57 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rb +45 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rb +46 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rb +61 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rb +62 -0
- data/lib/anthropic/models/beta/beta_tool.rb +7 -1
- data/lib/anthropic/models/beta/beta_tool_result_block_param.rb +8 -4
- data/lib/anthropic/models/beta/beta_tool_text_editor_20250728.rb +49 -0
- data/lib/anthropic/models/beta/beta_tool_union.rb +12 -6
- data/lib/anthropic/models/beta/beta_web_fetch_block.rb +42 -0
- data/lib/anthropic/models/beta/beta_web_fetch_block_param.rb +42 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_20250910.rb +82 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_block.rb +43 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_block_param.rb +53 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_error_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_error_block_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_error_code.rb +25 -0
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +23 -36
- data/lib/anthropic/models/beta/message_create_params.rb +10 -27
- data/lib/anthropic/models/beta/messages/batch_create_params.rb +13 -37
- data/lib/anthropic/models/beta/messages/beta_message_batch.rb +1 -4
- data/lib/anthropic/models/beta_error_response.rb +7 -1
- data/lib/anthropic/models/cache_control_ephemeral.rb +39 -1
- data/lib/anthropic/models/cache_creation.rb +24 -0
- data/lib/anthropic/models/citation_char_location.rb +7 -1
- data/lib/anthropic/models/citation_content_block_location.rb +7 -1
- data/lib/anthropic/models/citation_page_location.rb +7 -1
- data/lib/anthropic/models/citation_search_result_location_param.rb +51 -0
- data/lib/anthropic/models/citations_delta.rb +5 -3
- data/lib/anthropic/models/citations_search_result_location.rb +51 -0
- data/lib/anthropic/models/content_block.rb +5 -5
- data/lib/anthropic/models/content_block_param.rb +14 -11
- data/lib/anthropic/models/document_block_param.rb +2 -2
- data/lib/anthropic/models/error_response.rb +7 -1
- data/lib/anthropic/models/message.rb +6 -2
- data/lib/anthropic/models/message_count_tokens_params.rb +10 -27
- data/lib/anthropic/models/message_count_tokens_tool.rb +5 -1
- data/lib/anthropic/models/message_create_params.rb +10 -27
- data/lib/anthropic/models/message_param.rb +3 -3
- data/lib/anthropic/models/messages/batch_create_params.rb +11 -31
- data/lib/anthropic/models/model.rb +16 -21
- data/lib/anthropic/models/raw_content_block_start_event.rb +7 -7
- data/lib/anthropic/models/search_result_block_param.rb +51 -0
- data/lib/anthropic/models/text_block.rb +2 -2
- data/lib/anthropic/models/text_block_param.rb +2 -2
- data/lib/anthropic/models/text_citation.rb +3 -1
- data/lib/anthropic/models/text_citation_param.rb +3 -1
- data/lib/anthropic/models/tool.rb +7 -1
- data/lib/anthropic/models/tool_result_block_param.rb +8 -4
- data/lib/anthropic/models/tool_text_editor_20250429.rb +36 -0
- data/lib/anthropic/models/tool_text_editor_20250728.rb +45 -0
- data/lib/anthropic/models/tool_union.rb +5 -1
- data/lib/anthropic/models/tool_use_block.rb +14 -0
- data/lib/anthropic/models/usage.rb +9 -1
- data/lib/anthropic/models.rb +16 -4
- data/lib/anthropic/resources/beta/messages.rb +73 -6
- data/lib/anthropic/resources/messages.rb +152 -7
- data/lib/anthropic/streaming.rb +5 -0
- data/lib/anthropic/version.rb +1 -1
- data/lib/anthropic.rb +54 -0
- data/rbi/anthropic/errors.rbi +18 -2
- data/rbi/anthropic/helpers/bedrock/client.rbi +17 -6
- data/rbi/anthropic/helpers/input_schema/array_of.rbi +16 -0
- data/rbi/anthropic/helpers/input_schema/base_model.rbi +21 -0
- data/rbi/anthropic/helpers/input_schema/boolean.rbi +11 -0
- data/rbi/anthropic/helpers/input_schema/enum_of.rbi +30 -0
- data/rbi/anthropic/helpers/input_schema/json_schema_converter.rbi +89 -0
- data/rbi/anthropic/helpers/input_schema/union_of.rbi +23 -0
- data/rbi/anthropic/helpers/streaming/events.rbi +95 -0
- data/rbi/anthropic/helpers/streaming/message_stream.rbi +73 -0
- data/rbi/anthropic/helpers/structured_output.rbi +16 -0
- data/rbi/anthropic/helpers/vertex/client.rbi +17 -6
- data/rbi/anthropic/input_schema.rbi +12 -0
- data/rbi/anthropic/internal/transport/base_client.rbi +1 -1
- data/rbi/anthropic/internal/type/base_stream.rbi +8 -1
- data/rbi/anthropic/internal/type/boolean.rbi +2 -0
- data/rbi/anthropic/internal/type/converter.rbi +69 -15
- data/rbi/anthropic/internal/type/union.rbi +14 -2
- data/rbi/anthropic/internal/type/unknown.rbi +2 -0
- data/rbi/anthropic/internal/util.rbi +2 -0
- data/rbi/anthropic/models/anthropic_beta.rbi +2 -0
- data/rbi/anthropic/models/beta/beta_base64_pdf_block.rbi +1 -128
- data/rbi/anthropic/models/beta/beta_bash_code_execution_output_block.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_output_block_param.rbi +34 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_result_block.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_result_block_param.rbi +77 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rbi +86 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rbi +110 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rbi +101 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rbi +101 -0
- data/rbi/anthropic/models/beta/beta_citation_char_location.rbi +6 -0
- data/rbi/anthropic/models/beta/beta_citation_config.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_citation_content_block_location.rbi +6 -0
- data/rbi/anthropic/models/beta/beta_citation_page_location.rbi +6 -0
- data/rbi/anthropic/models/beta/beta_citation_search_result_location.rbi +78 -0
- data/rbi/anthropic/models/beta/beta_citation_search_result_location_param.rbi +79 -0
- data/rbi/anthropic/models/beta/beta_citations_delta.rbi +4 -2
- data/rbi/anthropic/models/beta/beta_code_execution_tool_20250825.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_content_block.rbi +6 -3
- data/rbi/anthropic/models/beta/beta_content_block_param.rbi +11 -7
- data/rbi/anthropic/models/beta/beta_document_block.rbi +95 -0
- data/rbi/anthropic/models/beta/beta_message.rbi +14 -3
- data/rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi +12 -6
- data/rbi/anthropic/models/beta/beta_request_document_block.rbi +142 -0
- data/rbi/anthropic/models/beta/beta_search_result_block_param.rbi +91 -0
- data/rbi/anthropic/models/beta/beta_server_tool_usage.rbi +17 -2
- data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +15 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +15 -0
- data/rbi/anthropic/models/beta/beta_text_block.rbi +2 -1
- data/rbi/anthropic/models/beta/beta_text_block_param.rbi +6 -3
- data/rbi/anthropic/models/beta/beta_text_citation.rbi +2 -1
- data/rbi/anthropic/models/beta/beta_text_citation_param.rbi +2 -1
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rbi +41 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rbi +41 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rbi +73 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbi +73 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rbi +90 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rbi +118 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rbi +110 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rbi +110 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rbi +118 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rbi +118 -0
- data/rbi/anthropic/models/beta/beta_tool.rbi +14 -5
- data/rbi/anthropic/models/beta/beta_tool_result_block_param.rbi +3 -1
- data/rbi/anthropic/models/beta/beta_tool_text_editor_20250728.rbi +82 -0
- data/rbi/anthropic/models/beta/beta_tool_union.rbi +7 -4
- data/rbi/anthropic/models/beta/beta_web_fetch_block.rbi +67 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_block_param.rbi +71 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_20250910.rbi +125 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_block.rbi +81 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_block_param.rbi +109 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_error_block.rbi +51 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_error_block_param.rbi +50 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_error_code.rbi +70 -0
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +51 -70
- data/rbi/anthropic/models/beta/message_create_params.rbi +44 -66
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +44 -66
- data/rbi/anthropic/models/beta_error_response.rbi +10 -2
- data/rbi/anthropic/models/cache_control_ephemeral.rbi +68 -3
- data/rbi/anthropic/models/cache_creation.rbi +45 -0
- data/rbi/anthropic/models/citation_char_location.rbi +6 -0
- data/rbi/anthropic/models/citation_content_block_location.rbi +6 -0
- data/rbi/anthropic/models/citation_page_location.rbi +6 -0
- data/rbi/anthropic/models/citation_search_result_location_param.rbi +74 -0
- data/rbi/anthropic/models/citations_delta.rbi +4 -2
- data/rbi/anthropic/models/citations_search_result_location.rbi +74 -0
- data/rbi/anthropic/models/content_block.rbi +3 -3
- data/rbi/anthropic/models/content_block_param.rbi +6 -5
- data/rbi/anthropic/models/document_block_param.rbi +7 -3
- data/rbi/anthropic/models/error_response.rbi +10 -2
- data/rbi/anthropic/models/message.rbi +11 -3
- data/rbi/anthropic/models/message_count_tokens_params.rbi +24 -50
- data/rbi/anthropic/models/message_count_tokens_tool.rbi +2 -0
- data/rbi/anthropic/models/message_create_params.rbi +24 -50
- data/rbi/anthropic/models/messages/batch_create_params.rbi +24 -50
- data/rbi/anthropic/models/model.rbi +4 -8
- data/rbi/anthropic/models/raw_content_block_start_event.rbi +6 -6
- data/rbi/anthropic/models/search_result_block_param.rbi +77 -0
- data/rbi/anthropic/models/text_block.rbi +2 -1
- data/rbi/anthropic/models/text_block_param.rbi +6 -3
- data/rbi/anthropic/models/text_citation.rbi +2 -1
- data/rbi/anthropic/models/text_citation_param.rbi +2 -1
- data/rbi/anthropic/models/tool.rbi +16 -5
- data/rbi/anthropic/models/tool_result_block_param.rbi +6 -1
- data/rbi/anthropic/models/tool_text_editor_20250429.rbi +62 -0
- data/rbi/anthropic/models/tool_text_editor_20250728.rbi +72 -0
- data/rbi/anthropic/models/tool_union.rbi +2 -0
- data/rbi/anthropic/models/usage.rbi +13 -0
- data/rbi/anthropic/models.rbi +14 -0
- data/rbi/anthropic/resources/beta/messages.rbi +45 -87
- data/rbi/anthropic/resources/messages.rbi +315 -69
- data/rbi/anthropic/streaming.rbi +5 -0
- data/sig/anthropic/errors.rbs +9 -0
- data/sig/anthropic/helpers/streaming/events.rbs +117 -0
- data/sig/anthropic/helpers/streaming/message_stream.rbs +57 -0
- data/sig/anthropic/internal/transport/base_client.rbs +1 -1
- data/sig/anthropic/internal/type/base_stream.rbs +4 -0
- data/sig/anthropic/internal/type/converter.rbs +24 -1
- data/sig/anthropic/internal/type/union.rbs +2 -2
- data/sig/anthropic/models/anthropic_beta.rbs +2 -0
- data/sig/anthropic/models/beta/beta_base64_pdf_block.rbs +1 -58
- data/sig/anthropic/models/beta/beta_bash_code_execution_output_block.rbs +23 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_output_block_param.rbs +23 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_result_block_param.rbs +44 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rbs +48 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rbs +48 -0
- data/sig/anthropic/models/beta/beta_citation_char_location.rbs +5 -0
- data/sig/anthropic/models/beta/beta_citation_config.rbs +17 -0
- data/sig/anthropic/models/beta/beta_citation_content_block_location.rbs +5 -0
- data/sig/anthropic/models/beta/beta_citation_page_location.rbs +5 -0
- data/sig/anthropic/models/beta/beta_citation_search_result_location.rbs +54 -0
- data/sig/anthropic/models/beta/beta_citation_search_result_location_param.rbs +54 -0
- data/sig/anthropic/models/beta/beta_citations_delta.rbs +1 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_20250825.rbs +34 -0
- data/sig/anthropic/models/beta/beta_content_block.rbs +5 -2
- data/sig/anthropic/models/beta/beta_content_block_param.rbs +12 -8
- data/sig/anthropic/models/beta/beta_document_block.rbs +49 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs +5 -2
- data/sig/anthropic/models/beta/beta_request_document_block.rbs +62 -0
- data/sig/anthropic/models/beta/beta_search_result_block_param.rbs +53 -0
- data/sig/anthropic/models/beta/beta_server_tool_usage.rbs +12 -3
- data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +9 -1
- data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +9 -1
- data/sig/anthropic/models/beta/beta_text_citation.rbs +1 -0
- data/sig/anthropic/models/beta/beta_text_citation_param.rbs +1 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rbs +29 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rbs +29 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rbs +49 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rbs +46 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rbs +51 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rbs +53 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rbs +53 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rbs +61 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rbs +61 -0
- data/sig/anthropic/models/beta/beta_tool.rbs +14 -3
- data/sig/anthropic/models/beta/beta_tool_result_block_param.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool_text_editor_20250728.rbs +39 -0
- data/sig/anthropic/models/beta/beta_tool_union.rbs +7 -4
- data/sig/anthropic/models/beta/beta_web_fetch_block.rbs +39 -0
- data/sig/anthropic/models/beta/beta_web_fetch_block_param.rbs +39 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_20250910.rbs +59 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_error_block.rbs +29 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_error_block_param.rbs +29 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_error_code.rbs +32 -0
- data/sig/anthropic/models/beta/message_count_tokens_params.rbs +7 -4
- data/sig/anthropic/models/beta_error_response.rbs +13 -2
- data/sig/anthropic/models/cache_control_ephemeral.rbs +27 -3
- data/sig/anthropic/models/cache_creation.rbs +25 -0
- data/sig/anthropic/models/citation_char_location.rbs +5 -0
- data/sig/anthropic/models/citation_content_block_location.rbs +5 -0
- data/sig/anthropic/models/citation_page_location.rbs +5 -0
- data/sig/anthropic/models/citation_search_result_location_param.rbs +50 -0
- data/sig/anthropic/models/citations_delta.rbs +1 -0
- data/sig/anthropic/models/citations_search_result_location.rbs +50 -0
- data/sig/anthropic/models/content_block.rbs +2 -2
- data/sig/anthropic/models/content_block_param.rbs +6 -5
- data/sig/anthropic/models/document_block_param.rbs +4 -8
- data/sig/anthropic/models/error_response.rbs +13 -2
- data/sig/anthropic/models/message_count_tokens_tool.rbs +2 -0
- data/sig/anthropic/models/model.rbs +4 -10
- data/sig/anthropic/models/raw_content_block_start_event.rbs +2 -2
- data/sig/anthropic/models/search_result_block_param.rbs +49 -0
- data/sig/anthropic/models/text_citation.rbs +1 -0
- data/sig/anthropic/models/text_citation_param.rbs +1 -0
- data/sig/anthropic/models/tool.rbs +14 -3
- data/sig/anthropic/models/tool_result_block_param.rbs +5 -1
- data/sig/anthropic/models/tool_text_editor_20250429.rbs +30 -0
- data/sig/anthropic/models/tool_text_editor_20250728.rbs +35 -0
- data/sig/anthropic/models/tool_union.rbs +2 -0
- data/sig/anthropic/models/usage.rbs +5 -0
- data/sig/anthropic/models.rbs +12 -0
- data/sig/anthropic/streaming.rbs +3 -0
- metadata +152 -3
@@ -0,0 +1,51 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultBlockParam = Beta::BetaTextEditorCodeExecutionToolResultBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_block_param =
|
7
|
+
{
|
8
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content,
|
9
|
+
tool_use_id: String,
|
10
|
+
type: :text_editor_code_execution_tool_result,
|
11
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaTextEditorCodeExecutionToolResultBlockParam < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content
|
16
|
+
|
17
|
+
attr_accessor tool_use_id: String
|
18
|
+
|
19
|
+
attr_accessor type: :text_editor_code_execution_tool_result
|
20
|
+
|
21
|
+
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content,
|
25
|
+
tool_use_id: String,
|
26
|
+
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
27
|
+
?type: :text_editor_code_execution_tool_result
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content,
|
32
|
+
tool_use_id: String,
|
33
|
+
type: :text_editor_code_execution_tool_result,
|
34
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
35
|
+
}
|
36
|
+
|
37
|
+
type content =
|
38
|
+
Anthropic::Beta::BetaTextEditorCodeExecutionToolResultErrorParam
|
39
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionViewResultBlockParam
|
40
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionCreateResultBlockParam
|
41
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionStrReplaceResultBlockParam
|
42
|
+
|
43
|
+
module Content
|
44
|
+
extend Anthropic::Internal::Type::Union
|
45
|
+
|
46
|
+
def self?.variants: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content]
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultError = Beta::BetaTextEditorCodeExecutionToolResultError
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_error =
|
7
|
+
{
|
8
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code,
|
9
|
+
error_message: String?,
|
10
|
+
type: :text_editor_code_execution_tool_result_error
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaTextEditorCodeExecutionToolResultError < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code
|
15
|
+
|
16
|
+
attr_accessor error_message: String?
|
17
|
+
|
18
|
+
attr_accessor type: :text_editor_code_execution_tool_result_error
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code,
|
22
|
+
error_message: String?,
|
23
|
+
?type: :text_editor_code_execution_tool_result_error
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code,
|
28
|
+
error_message: String?,
|
29
|
+
type: :text_editor_code_execution_tool_result_error
|
30
|
+
}
|
31
|
+
|
32
|
+
type error_code =
|
33
|
+
:invalid_tool_input
|
34
|
+
| :unavailable
|
35
|
+
| :too_many_requests
|
36
|
+
| :execution_time_exceeded
|
37
|
+
| :file_not_found
|
38
|
+
|
39
|
+
module ErrorCode
|
40
|
+
extend Anthropic::Internal::Type::Enum
|
41
|
+
|
42
|
+
INVALID_TOOL_INPUT: :invalid_tool_input
|
43
|
+
UNAVAILABLE: :unavailable
|
44
|
+
TOO_MANY_REQUESTS: :too_many_requests
|
45
|
+
EXECUTION_TIME_EXCEEDED: :execution_time_exceeded
|
46
|
+
FILE_NOT_FOUND: :file_not_found
|
47
|
+
|
48
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultErrorParam = Beta::BetaTextEditorCodeExecutionToolResultErrorParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_error_param =
|
7
|
+
{
|
8
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code,
|
9
|
+
type: :text_editor_code_execution_tool_result_error,
|
10
|
+
error_message: String?
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaTextEditorCodeExecutionToolResultErrorParam < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code
|
15
|
+
|
16
|
+
attr_accessor type: :text_editor_code_execution_tool_result_error
|
17
|
+
|
18
|
+
attr_accessor error_message: String?
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code,
|
22
|
+
?error_message: String?,
|
23
|
+
?type: :text_editor_code_execution_tool_result_error
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code,
|
28
|
+
type: :text_editor_code_execution_tool_result_error,
|
29
|
+
error_message: String?
|
30
|
+
}
|
31
|
+
|
32
|
+
type error_code =
|
33
|
+
:invalid_tool_input
|
34
|
+
| :unavailable
|
35
|
+
| :too_many_requests
|
36
|
+
| :execution_time_exceeded
|
37
|
+
| :file_not_found
|
38
|
+
|
39
|
+
module ErrorCode
|
40
|
+
extend Anthropic::Internal::Type::Enum
|
41
|
+
|
42
|
+
INVALID_TOOL_INPUT: :invalid_tool_input
|
43
|
+
UNAVAILABLE: :unavailable
|
44
|
+
TOO_MANY_REQUESTS: :too_many_requests
|
45
|
+
EXECUTION_TIME_EXCEEDED: :execution_time_exceeded
|
46
|
+
FILE_NOT_FOUND: :file_not_found
|
47
|
+
|
48
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionViewResultBlock = Beta::BetaTextEditorCodeExecutionViewResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_view_result_block =
|
7
|
+
{
|
8
|
+
content: String,
|
9
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type,
|
10
|
+
num_lines: Integer?,
|
11
|
+
start_line: Integer?,
|
12
|
+
total_lines: Integer?,
|
13
|
+
type: :text_editor_code_execution_view_result
|
14
|
+
}
|
15
|
+
|
16
|
+
class BetaTextEditorCodeExecutionViewResultBlock < Anthropic::Internal::Type::BaseModel
|
17
|
+
attr_accessor content: String
|
18
|
+
|
19
|
+
attr_accessor file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type
|
20
|
+
|
21
|
+
attr_accessor num_lines: Integer?
|
22
|
+
|
23
|
+
attr_accessor start_line: Integer?
|
24
|
+
|
25
|
+
attr_accessor total_lines: Integer?
|
26
|
+
|
27
|
+
attr_accessor type: :text_editor_code_execution_view_result
|
28
|
+
|
29
|
+
def initialize: (
|
30
|
+
content: String,
|
31
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type,
|
32
|
+
num_lines: Integer?,
|
33
|
+
start_line: Integer?,
|
34
|
+
total_lines: Integer?,
|
35
|
+
?type: :text_editor_code_execution_view_result
|
36
|
+
) -> void
|
37
|
+
|
38
|
+
def to_hash: -> {
|
39
|
+
content: String,
|
40
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type,
|
41
|
+
num_lines: Integer?,
|
42
|
+
start_line: Integer?,
|
43
|
+
total_lines: Integer?,
|
44
|
+
type: :text_editor_code_execution_view_result
|
45
|
+
}
|
46
|
+
|
47
|
+
type file_type = :text | :image | :pdf
|
48
|
+
|
49
|
+
module FileType
|
50
|
+
extend Anthropic::Internal::Type::Enum
|
51
|
+
|
52
|
+
TEXT: :text
|
53
|
+
IMAGE: :image
|
54
|
+
PDF: :pdf
|
55
|
+
|
56
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type]
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionViewResultBlockParam = Beta::BetaTextEditorCodeExecutionViewResultBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_view_result_block_param =
|
7
|
+
{
|
8
|
+
content: String,
|
9
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlockParam::file_type,
|
10
|
+
type: :text_editor_code_execution_view_result,
|
11
|
+
num_lines: Integer?,
|
12
|
+
start_line: Integer?,
|
13
|
+
total_lines: Integer?
|
14
|
+
}
|
15
|
+
|
16
|
+
class BetaTextEditorCodeExecutionViewResultBlockParam < Anthropic::Internal::Type::BaseModel
|
17
|
+
attr_accessor content: String
|
18
|
+
|
19
|
+
attr_accessor file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlockParam::file_type
|
20
|
+
|
21
|
+
attr_accessor type: :text_editor_code_execution_view_result
|
22
|
+
|
23
|
+
attr_accessor num_lines: Integer?
|
24
|
+
|
25
|
+
attr_accessor start_line: Integer?
|
26
|
+
|
27
|
+
attr_accessor total_lines: Integer?
|
28
|
+
|
29
|
+
def initialize: (
|
30
|
+
content: String,
|
31
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlockParam::file_type,
|
32
|
+
?num_lines: Integer?,
|
33
|
+
?start_line: Integer?,
|
34
|
+
?total_lines: Integer?,
|
35
|
+
?type: :text_editor_code_execution_view_result
|
36
|
+
) -> void
|
37
|
+
|
38
|
+
def to_hash: -> {
|
39
|
+
content: String,
|
40
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlockParam::file_type,
|
41
|
+
type: :text_editor_code_execution_view_result,
|
42
|
+
num_lines: Integer?,
|
43
|
+
start_line: Integer?,
|
44
|
+
total_lines: Integer?
|
45
|
+
}
|
46
|
+
|
47
|
+
type file_type = :text | :image | :pdf
|
48
|
+
|
49
|
+
module FileType
|
50
|
+
extend Anthropic::Internal::Type::Enum
|
51
|
+
|
52
|
+
TEXT: :text
|
53
|
+
IMAGE: :image
|
54
|
+
PDF: :pdf
|
55
|
+
|
56
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlockParam::file_type]
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -41,16 +41,27 @@ module Anthropic
|
|
41
41
|
type: Anthropic::Models::Beta::BetaTool::type_?
|
42
42
|
}
|
43
43
|
|
44
|
-
type input_schema =
|
44
|
+
type input_schema =
|
45
|
+
{ type: :object, properties: top?, required: ::Array[String]? }
|
45
46
|
|
46
47
|
class InputSchema < Anthropic::Internal::Type::BaseModel
|
47
48
|
attr_accessor type: :object
|
48
49
|
|
49
50
|
attr_accessor properties: top?
|
50
51
|
|
51
|
-
|
52
|
+
attr_accessor required: ::Array[String]?
|
52
53
|
|
53
|
-
def
|
54
|
+
def initialize: (
|
55
|
+
?properties: top?,
|
56
|
+
?required: ::Array[String]?,
|
57
|
+
?type: :object
|
58
|
+
) -> void
|
59
|
+
|
60
|
+
def to_hash: -> {
|
61
|
+
type: :object,
|
62
|
+
properties: top?,
|
63
|
+
required: ::Array[String]?
|
64
|
+
}
|
54
65
|
end
|
55
66
|
|
56
67
|
type type_ = :custom
|
@@ -55,6 +55,8 @@ module Anthropic
|
|
55
55
|
type content =
|
56
56
|
Anthropic::Beta::BetaTextBlockParam
|
57
57
|
| Anthropic::Beta::BetaImageBlockParam
|
58
|
+
| Anthropic::Beta::BetaSearchResultBlockParam
|
59
|
+
| Anthropic::Beta::BetaRequestDocumentBlock
|
58
60
|
|
59
61
|
module Content
|
60
62
|
extend Anthropic::Internal::Type::Union
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaToolTextEditor20250728 = Beta::BetaToolTextEditor20250728
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_tool_text_editor20250728 =
|
7
|
+
{
|
8
|
+
name: :str_replace_based_edit_tool,
|
9
|
+
type: :text_editor_20250728,
|
10
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
11
|
+
max_characters: Integer?
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaToolTextEditor20250728 < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor name: :str_replace_based_edit_tool
|
16
|
+
|
17
|
+
attr_accessor type: :text_editor_20250728
|
18
|
+
|
19
|
+
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
20
|
+
|
21
|
+
attr_accessor max_characters: Integer?
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
25
|
+
?max_characters: Integer?,
|
26
|
+
?name: :str_replace_based_edit_tool,
|
27
|
+
?type: :text_editor_20250728
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
name: :str_replace_based_edit_tool,
|
32
|
+
type: :text_editor_20250728,
|
33
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
34
|
+
max_characters: Integer?
|
35
|
+
}
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -5,15 +5,18 @@ module Anthropic
|
|
5
5
|
module Beta
|
6
6
|
type beta_tool_union =
|
7
7
|
Anthropic::Beta::BetaTool
|
8
|
-
| Anthropic::Beta::BetaToolComputerUse20241022
|
9
8
|
| Anthropic::Beta::BetaToolBash20241022
|
10
|
-
| Anthropic::Beta::BetaToolTextEditor20241022
|
11
|
-
| Anthropic::Beta::BetaToolComputerUse20250124
|
12
9
|
| Anthropic::Beta::BetaToolBash20250124
|
10
|
+
| Anthropic::Beta::BetaCodeExecutionTool20250522
|
11
|
+
| Anthropic::Beta::BetaCodeExecutionTool20250825
|
12
|
+
| Anthropic::Beta::BetaToolComputerUse20241022
|
13
|
+
| Anthropic::Beta::BetaToolComputerUse20250124
|
14
|
+
| Anthropic::Beta::BetaToolTextEditor20241022
|
13
15
|
| Anthropic::Beta::BetaToolTextEditor20250124
|
14
16
|
| Anthropic::Beta::BetaToolTextEditor20250429
|
17
|
+
| Anthropic::Beta::BetaToolTextEditor20250728
|
15
18
|
| Anthropic::Beta::BetaWebSearchTool20250305
|
16
|
-
| Anthropic::Beta::
|
19
|
+
| Anthropic::Beta::BetaWebFetchTool20250910
|
17
20
|
|
18
21
|
module BetaToolUnion
|
19
22
|
extend Anthropic::Internal::Type::Union
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchBlock = Beta::BetaWebFetchBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_block =
|
7
|
+
{
|
8
|
+
content: Anthropic::Beta::BetaDocumentBlock,
|
9
|
+
retrieved_at: String?,
|
10
|
+
type: :web_fetch_result,
|
11
|
+
url: String
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaWebFetchBlock < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor content: Anthropic::Beta::BetaDocumentBlock
|
16
|
+
|
17
|
+
attr_accessor retrieved_at: String?
|
18
|
+
|
19
|
+
attr_accessor type: :web_fetch_result
|
20
|
+
|
21
|
+
attr_accessor url: String
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
content: Anthropic::Beta::BetaDocumentBlock,
|
25
|
+
retrieved_at: String?,
|
26
|
+
url: String,
|
27
|
+
?type: :web_fetch_result
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
content: Anthropic::Beta::BetaDocumentBlock,
|
32
|
+
retrieved_at: String?,
|
33
|
+
type: :web_fetch_result,
|
34
|
+
url: String
|
35
|
+
}
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchBlockParam = Beta::BetaWebFetchBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_block_param =
|
7
|
+
{
|
8
|
+
content: Anthropic::Beta::BetaRequestDocumentBlock,
|
9
|
+
type: :web_fetch_result,
|
10
|
+
url: String,
|
11
|
+
retrieved_at: String?
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaWebFetchBlockParam < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor content: Anthropic::Beta::BetaRequestDocumentBlock
|
16
|
+
|
17
|
+
attr_accessor type: :web_fetch_result
|
18
|
+
|
19
|
+
attr_accessor url: String
|
20
|
+
|
21
|
+
attr_accessor retrieved_at: String?
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
content: Anthropic::Beta::BetaRequestDocumentBlock,
|
25
|
+
url: String,
|
26
|
+
?retrieved_at: String?,
|
27
|
+
?type: :web_fetch_result
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
content: Anthropic::Beta::BetaRequestDocumentBlock,
|
32
|
+
type: :web_fetch_result,
|
33
|
+
url: String,
|
34
|
+
retrieved_at: String?
|
35
|
+
}
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchTool20250910 = Beta::BetaWebFetchTool20250910
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_tool20250910 =
|
7
|
+
{
|
8
|
+
name: :web_fetch,
|
9
|
+
type: :web_fetch_20250910,
|
10
|
+
allowed_domains: ::Array[String]?,
|
11
|
+
blocked_domains: ::Array[String]?,
|
12
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
13
|
+
citations: Anthropic::Beta::BetaCitationsConfigParam?,
|
14
|
+
max_content_tokens: Integer?,
|
15
|
+
max_uses: Integer?
|
16
|
+
}
|
17
|
+
|
18
|
+
class BetaWebFetchTool20250910 < Anthropic::Internal::Type::BaseModel
|
19
|
+
attr_accessor name: :web_fetch
|
20
|
+
|
21
|
+
attr_accessor type: :web_fetch_20250910
|
22
|
+
|
23
|
+
attr_accessor allowed_domains: ::Array[String]?
|
24
|
+
|
25
|
+
attr_accessor blocked_domains: ::Array[String]?
|
26
|
+
|
27
|
+
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
28
|
+
|
29
|
+
attr_accessor citations: Anthropic::Beta::BetaCitationsConfigParam?
|
30
|
+
|
31
|
+
attr_accessor max_content_tokens: Integer?
|
32
|
+
|
33
|
+
attr_accessor max_uses: Integer?
|
34
|
+
|
35
|
+
def initialize: (
|
36
|
+
?allowed_domains: ::Array[String]?,
|
37
|
+
?blocked_domains: ::Array[String]?,
|
38
|
+
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
39
|
+
?citations: Anthropic::Beta::BetaCitationsConfigParam?,
|
40
|
+
?max_content_tokens: Integer?,
|
41
|
+
?max_uses: Integer?,
|
42
|
+
?name: :web_fetch,
|
43
|
+
?type: :web_fetch_20250910
|
44
|
+
) -> void
|
45
|
+
|
46
|
+
def to_hash: -> {
|
47
|
+
name: :web_fetch,
|
48
|
+
type: :web_fetch_20250910,
|
49
|
+
allowed_domains: ::Array[String]?,
|
50
|
+
blocked_domains: ::Array[String]?,
|
51
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
52
|
+
citations: Anthropic::Beta::BetaCitationsConfigParam?,
|
53
|
+
max_content_tokens: Integer?,
|
54
|
+
max_uses: Integer?
|
55
|
+
}
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchToolResultBlock = Beta::BetaWebFetchToolResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_tool_result_block =
|
7
|
+
{
|
8
|
+
content: Anthropic::Models::Beta::BetaWebFetchToolResultBlock::content,
|
9
|
+
tool_use_id: String,
|
10
|
+
type: :web_fetch_tool_result
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaWebFetchToolResultBlock < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor content: Anthropic::Models::Beta::BetaWebFetchToolResultBlock::content
|
15
|
+
|
16
|
+
attr_accessor tool_use_id: String
|
17
|
+
|
18
|
+
attr_accessor type: :web_fetch_tool_result
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
content: Anthropic::Models::Beta::BetaWebFetchToolResultBlock::content,
|
22
|
+
tool_use_id: String,
|
23
|
+
?type: :web_fetch_tool_result
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
content: Anthropic::Models::Beta::BetaWebFetchToolResultBlock::content,
|
28
|
+
tool_use_id: String,
|
29
|
+
type: :web_fetch_tool_result
|
30
|
+
}
|
31
|
+
|
32
|
+
type content =
|
33
|
+
Anthropic::Beta::BetaWebFetchToolResultErrorBlock
|
34
|
+
| Anthropic::Beta::BetaWebFetchBlock
|
35
|
+
|
36
|
+
module Content
|
37
|
+
extend Anthropic::Internal::Type::Union
|
38
|
+
|
39
|
+
def self?.variants: -> ::Array[Anthropic::Models::Beta::BetaWebFetchToolResultBlock::content]
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchToolResultBlockParam = Beta::BetaWebFetchToolResultBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_tool_result_block_param =
|
7
|
+
{
|
8
|
+
content: Anthropic::Models::Beta::BetaWebFetchToolResultBlockParam::content,
|
9
|
+
tool_use_id: String,
|
10
|
+
type: :web_fetch_tool_result,
|
11
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaWebFetchToolResultBlockParam < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor content: Anthropic::Models::Beta::BetaWebFetchToolResultBlockParam::content
|
16
|
+
|
17
|
+
attr_accessor tool_use_id: String
|
18
|
+
|
19
|
+
attr_accessor type: :web_fetch_tool_result
|
20
|
+
|
21
|
+
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
content: Anthropic::Models::Beta::BetaWebFetchToolResultBlockParam::content,
|
25
|
+
tool_use_id: String,
|
26
|
+
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
27
|
+
?type: :web_fetch_tool_result
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
content: Anthropic::Models::Beta::BetaWebFetchToolResultBlockParam::content,
|
32
|
+
tool_use_id: String,
|
33
|
+
type: :web_fetch_tool_result,
|
34
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
35
|
+
}
|
36
|
+
|
37
|
+
type content =
|
38
|
+
Anthropic::Beta::BetaWebFetchToolResultErrorBlockParam
|
39
|
+
| Anthropic::Beta::BetaWebFetchBlockParam
|
40
|
+
|
41
|
+
module Content
|
42
|
+
extend Anthropic::Internal::Type::Union
|
43
|
+
|
44
|
+
def self?.variants: -> ::Array[Anthropic::Models::Beta::BetaWebFetchToolResultBlockParam::content]
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchToolResultErrorBlock = Beta::BetaWebFetchToolResultErrorBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_tool_result_error_block =
|
7
|
+
{
|
8
|
+
error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code,
|
9
|
+
type: :web_fetch_tool_result_error
|
10
|
+
}
|
11
|
+
|
12
|
+
class BetaWebFetchToolResultErrorBlock < Anthropic::Internal::Type::BaseModel
|
13
|
+
attr_accessor error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code
|
14
|
+
|
15
|
+
attr_accessor type: :web_fetch_tool_result_error
|
16
|
+
|
17
|
+
def initialize: (
|
18
|
+
error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code,
|
19
|
+
?type: :web_fetch_tool_result_error
|
20
|
+
) -> void
|
21
|
+
|
22
|
+
def to_hash: -> {
|
23
|
+
error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code,
|
24
|
+
type: :web_fetch_tool_result_error
|
25
|
+
}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaWebFetchToolResultErrorBlockParam = Beta::BetaWebFetchToolResultErrorBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_web_fetch_tool_result_error_block_param =
|
7
|
+
{
|
8
|
+
error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code,
|
9
|
+
type: :web_fetch_tool_result_error
|
10
|
+
}
|
11
|
+
|
12
|
+
class BetaWebFetchToolResultErrorBlockParam < Anthropic::Internal::Type::BaseModel
|
13
|
+
attr_accessor error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code
|
14
|
+
|
15
|
+
attr_accessor type: :web_fetch_tool_result_error
|
16
|
+
|
17
|
+
def initialize: (
|
18
|
+
error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code,
|
19
|
+
?type: :web_fetch_tool_result_error
|
20
|
+
) -> void
|
21
|
+
|
22
|
+
def to_hash: -> {
|
23
|
+
error_code: Anthropic::Models::Beta::beta_web_fetch_tool_result_error_code,
|
24
|
+
type: :web_fetch_tool_result_error
|
25
|
+
}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|