anthropic 1.0.0 → 1.1.1
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 +30 -0
- data/README.md +33 -9
- data/lib/anthropic/client.rb +30 -0
- data/lib/anthropic/helpers/bedrock/client.rb +3 -1
- data/lib/anthropic/helpers/vertex/client.rb +4 -2
- data/lib/anthropic/internal/util.rb +10 -2
- data/lib/anthropic/models/anthropic_beta.rb +26 -8
- data/lib/anthropic/models/base64_image_source.rb +3 -3
- data/lib/anthropic/models/beta/beta_base64_image_source.rb +3 -3
- data/lib/anthropic/models/beta/beta_base64_pdf_block.rb +10 -8
- data/lib/anthropic/models/beta/beta_cache_control_ephemeral.rb +39 -1
- data/lib/anthropic/models/beta/beta_cache_creation.rb +28 -0
- data/lib/anthropic/models/beta/beta_citations_delta.rb +4 -4
- data/lib/anthropic/models/beta/beta_code_execution_output_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_code_execution_output_block_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_code_execution_result_block.rb +44 -0
- data/lib/anthropic/models/beta/beta_code_execution_result_block_param.rb +44 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_20250522.rb +40 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_block.rb +31 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_block_content.rb +20 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_block_param.rb +41 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_block_param_content.rb +20 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_error.rb +25 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_error_code.rb +21 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_result_error_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_container.rb +31 -0
- data/lib/anthropic/models/beta/beta_container_upload_block.rb +27 -0
- data/lib/anthropic/models/beta/beta_container_upload_block_param.rb +37 -0
- data/lib/anthropic/models/beta/beta_content_block.rb +11 -1
- data/lib/anthropic/models/beta/beta_content_block_param.rb +23 -5
- data/lib/anthropic/models/beta/beta_content_block_source.rb +5 -5
- data/lib/anthropic/models/beta/beta_content_block_source_content.rb +1 -1
- data/lib/anthropic/models/beta/beta_file_document_source.rb +25 -0
- data/lib/anthropic/models/beta/beta_file_image_source.rb +25 -0
- data/lib/anthropic/models/beta/beta_image_block_param.rb +8 -6
- data/lib/anthropic/models/beta/beta_mcp_tool_result_block.rb +52 -0
- data/lib/anthropic/models/beta/beta_mcp_tool_use_block.rb +49 -0
- data/lib/anthropic/models/beta/beta_mcp_tool_use_block_param.rb +56 -0
- data/lib/anthropic/models/beta/beta_message.rb +19 -10
- data/lib/anthropic/models/beta/beta_message_delta_usage.rb +2 -2
- data/lib/anthropic/models/beta/beta_message_param.rb +8 -8
- data/lib/anthropic/models/beta/beta_message_tokens_count.rb +1 -1
- data/lib/anthropic/models/beta/beta_metadata.rb +1 -1
- data/lib/anthropic/models/beta/beta_model_info.rb +1 -1
- data/lib/anthropic/models/beta/beta_raw_content_block_delta.rb +1 -1
- data/lib/anthropic/models/beta/beta_raw_content_block_delta_event.rb +2 -2
- data/lib/anthropic/models/beta/beta_raw_content_block_start_event.rb +18 -4
- data/lib/anthropic/models/beta/beta_raw_message_delta_event.rb +22 -9
- data/lib/anthropic/models/beta/beta_raw_message_start_event.rb +2 -2
- data/lib/anthropic/models/beta/beta_raw_message_stream_event.rb +1 -1
- data/lib/anthropic/models/beta/beta_request_mcp_server_tool_configuration.rb +25 -0
- data/lib/anthropic/models/beta/beta_request_mcp_server_url_definition.rb +47 -0
- data/lib/anthropic/models/beta/beta_request_mcp_tool_result_block_param.rb +65 -0
- data/lib/anthropic/models/beta/beta_server_tool_use_block.rb +15 -4
- data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +17 -6
- data/lib/anthropic/models/beta/beta_text_block.rb +3 -3
- data/lib/anthropic/models/beta/beta_text_block_param.rb +4 -4
- data/lib/anthropic/models/beta/beta_text_citation.rb +1 -1
- data/lib/anthropic/models/beta/beta_text_citation_param.rb +1 -1
- data/lib/anthropic/models/beta/beta_thinking_config_enabled.rb +1 -1
- data/lib/anthropic/models/beta/beta_thinking_config_param.rb +1 -1
- data/lib/anthropic/models/beta/beta_tool.rb +9 -9
- data/lib/anthropic/models/beta/beta_tool_bash_20241022.rb +3 -3
- data/lib/anthropic/models/beta/beta_tool_bash_20250124.rb +3 -3
- data/lib/anthropic/models/beta/beta_tool_choice.rb +1 -1
- data/lib/anthropic/models/beta/beta_tool_choice_any.rb +1 -1
- data/lib/anthropic/models/beta/beta_tool_choice_auto.rb +1 -1
- data/lib/anthropic/models/beta/beta_tool_choice_tool.rb +1 -1
- data/lib/anthropic/models/beta/beta_tool_computer_use_20241022.rb +3 -3
- data/lib/anthropic/models/beta/beta_tool_computer_use_20250124.rb +3 -3
- data/lib/anthropic/models/beta/beta_tool_result_block_param.rb +8 -8
- data/lib/anthropic/models/beta/beta_tool_text_editor_20241022.rb +3 -3
- data/lib/anthropic/models/beta/beta_tool_text_editor_20250124.rb +3 -3
- data/lib/anthropic/models/beta/beta_tool_text_editor_20250429.rb +40 -0
- data/lib/anthropic/models/beta/beta_tool_union.rb +5 -1
- data/lib/anthropic/models/beta/beta_tool_use_block_param.rb +2 -2
- data/lib/anthropic/models/beta/beta_usage.rb +33 -3
- data/lib/anthropic/models/beta/beta_web_search_tool_20250305.rb +8 -7
- data/lib/anthropic/models/beta/beta_web_search_tool_request_error.rb +3 -17
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block.rb +2 -2
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block_content.rb +2 -2
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block_param.rb +4 -4
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rb +2 -4
- data/lib/anthropic/models/beta/beta_web_search_tool_result_error.rb +3 -17
- data/lib/anthropic/models/beta/beta_web_search_tool_result_error_code.rb +22 -0
- data/lib/anthropic/models/beta/deleted_file.rb +46 -0
- data/lib/anthropic/models/beta/file_delete_params.rb +24 -0
- data/lib/anthropic/models/beta/file_download_params.rb +24 -0
- data/lib/anthropic/models/beta/file_list_params.rb +55 -0
- data/lib/anthropic/models/beta/file_metadata.rb +74 -0
- data/lib/anthropic/models/beta/file_retrieve_metadata_params.rb +24 -0
- data/lib/anthropic/models/beta/file_upload_params.rb +32 -0
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +31 -18
- data/lib/anthropic/models/beta/message_create_params.rb +63 -19
- data/lib/anthropic/models/beta/messages/batch_cancel_params.rb +2 -2
- data/lib/anthropic/models/beta/messages/batch_create_params.rb +77 -29
- data/lib/anthropic/models/beta/messages/batch_delete_params.rb +2 -2
- data/lib/anthropic/models/beta/messages/batch_list_params.rb +2 -2
- data/lib/anthropic/models/beta/messages/batch_results_params.rb +2 -2
- data/lib/anthropic/models/beta/messages/batch_retrieve_params.rb +2 -2
- data/lib/anthropic/models/beta/messages/beta_deleted_message_batch.rb +1 -1
- data/lib/anthropic/models/beta/messages/beta_message_batch.rb +6 -6
- data/lib/anthropic/models/beta/messages/beta_message_batch_errored_result.rb +2 -2
- data/lib/anthropic/models/beta/messages/beta_message_batch_individual_response.rb +3 -3
- data/lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb +2 -1
- data/lib/anthropic/models/beta/messages/beta_message_batch_result.rb +1 -1
- data/lib/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rb +2 -2
- data/lib/anthropic/models/beta/model_list_params.rb +2 -2
- data/lib/anthropic/models/beta/model_retrieve_params.rb +2 -2
- data/lib/anthropic/models/beta_error.rb +1 -1
- data/lib/anthropic/models/beta_error_response.rb +2 -2
- data/lib/anthropic/models/citations_delta.rb +4 -4
- data/lib/anthropic/models/completion.rb +4 -4
- data/lib/anthropic/models/completion_create_params.rb +6 -6
- data/lib/anthropic/models/content_block.rb +1 -1
- data/lib/anthropic/models/content_block_param.rb +13 -5
- data/lib/anthropic/models/content_block_source.rb +5 -5
- data/lib/anthropic/models/content_block_source_content.rb +1 -1
- data/lib/anthropic/models/document_block_param.rb +8 -8
- data/lib/anthropic/models/error_object.rb +1 -1
- data/lib/anthropic/models/error_response.rb +2 -2
- data/lib/anthropic/models/image_block_param.rb +6 -6
- data/lib/anthropic/models/message.rb +10 -10
- data/lib/anthropic/models/message_count_tokens_params.rb +14 -14
- data/lib/anthropic/models/message_count_tokens_tool.rb +1 -1
- data/lib/anthropic/models/message_create_params.rb +44 -17
- data/lib/anthropic/models/message_delta_usage.rb +2 -2
- data/lib/anthropic/models/message_param.rb +8 -8
- data/lib/anthropic/models/message_tokens_count.rb +1 -1
- data/lib/anthropic/models/messages/batch_create_params.rb +58 -27
- data/lib/anthropic/models/messages/deleted_message_batch.rb +1 -1
- data/lib/anthropic/models/messages/message_batch.rb +6 -6
- data/lib/anthropic/models/messages/message_batch_errored_result.rb +2 -2
- data/lib/anthropic/models/messages/message_batch_individual_response.rb +3 -3
- data/lib/anthropic/models/messages/message_batch_request_counts.rb +1 -1
- data/lib/anthropic/models/messages/message_batch_result.rb +1 -1
- data/lib/anthropic/models/messages/message_batch_succeeded_result.rb +2 -2
- data/lib/anthropic/models/metadata.rb +2 -2
- data/lib/anthropic/models/model.rb +45 -15
- data/lib/anthropic/models/model_info.rb +2 -2
- data/lib/anthropic/models/model_list_params.rb +2 -2
- data/lib/anthropic/models/model_retrieve_params.rb +2 -2
- data/lib/anthropic/models/raw_content_block_delta.rb +1 -1
- data/lib/anthropic/models/raw_content_block_delta_event.rb +2 -2
- data/lib/anthropic/models/raw_content_block_start_event.rb +4 -4
- data/lib/anthropic/models/raw_message_delta_event.rb +8 -8
- data/lib/anthropic/models/raw_message_start_event.rb +2 -2
- data/lib/anthropic/models/raw_message_stream_event.rb +1 -1
- data/lib/anthropic/models/server_tool_use_block_param.rb +2 -2
- data/lib/anthropic/models/text_block.rb +4 -4
- data/lib/anthropic/models/text_block_param.rb +4 -4
- data/lib/anthropic/models/text_citation.rb +1 -1
- data/lib/anthropic/models/text_citation_param.rb +1 -1
- data/lib/anthropic/models/thinking_config_enabled.rb +1 -1
- data/lib/anthropic/models/thinking_config_param.rb +1 -1
- data/lib/anthropic/models/tool.rb +10 -10
- data/lib/anthropic/models/tool_bash_20250124.rb +3 -3
- data/lib/anthropic/models/tool_choice.rb +1 -1
- data/lib/anthropic/models/tool_choice_any.rb +2 -2
- data/lib/anthropic/models/tool_choice_auto.rb +1 -1
- data/lib/anthropic/models/tool_choice_tool.rb +1 -1
- data/lib/anthropic/models/tool_result_block_param.rb +8 -8
- data/lib/anthropic/models/tool_text_editor_20250124.rb +3 -3
- data/lib/anthropic/models/tool_union.rb +1 -1
- data/lib/anthropic/models/tool_use_block_param.rb +2 -2
- data/lib/anthropic/models/usage.rb +25 -3
- data/lib/anthropic/models/web_search_tool_20250305.rb +7 -7
- data/lib/anthropic/models/web_search_tool_request_error.rb +3 -3
- data/lib/anthropic/models/web_search_tool_result_block.rb +2 -2
- data/lib/anthropic/models/web_search_tool_result_block_content.rb +2 -2
- data/lib/anthropic/models/web_search_tool_result_block_param.rb +4 -4
- data/lib/anthropic/models/web_search_tool_result_block_param_content.rb +2 -2
- data/lib/anthropic/models/web_search_tool_result_error.rb +3 -3
- data/lib/anthropic/resources/beta/files.rb +153 -0
- data/lib/anthropic/resources/beta/messages/batches.rb +13 -13
- data/lib/anthropic/resources/beta/messages.rb +57 -30
- data/lib/anthropic/resources/beta/models.rb +4 -4
- data/lib/anthropic/resources/beta.rb +4 -0
- data/lib/anthropic/resources/completions.rb +8 -8
- data/lib/anthropic/resources/messages/batches.rb +7 -7
- data/lib/anthropic/resources/messages.rb +43 -26
- data/lib/anthropic/resources/models.rb +4 -4
- data/lib/anthropic/version.rb +1 -1
- data/lib/anthropic.rb +37 -1
- data/rbi/anthropic/models/anthropic_beta.rbi +24 -0
- data/rbi/anthropic/models/beta/beta_base64_pdf_block.rbi +8 -4
- data/rbi/anthropic/models/beta/beta_cache_control_ephemeral.rbi +87 -3
- data/rbi/anthropic/models/beta/beta_cache_creation.rbi +52 -0
- data/rbi/anthropic/models/beta/beta_code_execution_output_block.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_code_execution_output_block_param.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_code_execution_result_block.rbi +67 -0
- data/rbi/anthropic/models/beta/beta_code_execution_result_block_param.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_20250522.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_block.rbi +59 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_block_content.rbi +32 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_block_param.rbi +88 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_block_param_content.rbi +32 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_error.rbi +51 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_error_code.rbi +51 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_result_error_param.rbi +52 -0
- data/rbi/anthropic/models/beta/beta_container.rbi +39 -0
- data/rbi/anthropic/models/beta/beta_container_upload_block.rbi +34 -0
- data/rbi/anthropic/models/beta/beta_container_upload_block_param.rbi +68 -0
- data/rbi/anthropic/models/beta/beta_content_block.rbi +5 -0
- data/rbi/anthropic/models/beta/beta_content_block_param.rbi +8 -3
- data/rbi/anthropic/models/beta/beta_file_document_source.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_file_image_source.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_image_block_param.rbi +8 -4
- data/rbi/anthropic/models/beta/beta_mcp_tool_result_block.rbi +85 -0
- data/rbi/anthropic/models/beta/beta_mcp_tool_use_block.rbi +70 -0
- data/rbi/anthropic/models/beta/beta_mcp_tool_use_block_param.rbi +86 -0
- data/rbi/anthropic/models/beta/beta_message.rbi +21 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi +16 -1
- data/rbi/anthropic/models/beta/beta_raw_message_delta_event.rbi +21 -1
- data/rbi/anthropic/models/beta/beta_request_mcp_server_tool_configuration.rbi +46 -0
- data/rbi/anthropic/models/beta/beta_request_mcp_server_url_definition.rbi +86 -0
- data/rbi/anthropic/models/beta/beta_request_mcp_tool_result_block_param.rbi +125 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +42 -4
- data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +38 -4
- data/rbi/anthropic/models/beta/beta_tool_text_editor_20250429.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_tool_union.rbi +3 -1
- data/rbi/anthropic/models/beta/beta_usage.rbi +66 -3
- data/rbi/anthropic/models/beta/beta_web_search_tool_request_error.rbi +3 -54
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_error.rbi +3 -52
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_error_code.rbi +55 -0
- data/rbi/anthropic/models/beta/deleted_file.rbi +81 -0
- data/rbi/anthropic/models/beta/file_delete_params.rbi +62 -0
- data/rbi/anthropic/models/beta/file_download_params.rbi +62 -0
- data/rbi/anthropic/models/beta/file_list_params.rbi +100 -0
- data/rbi/anthropic/models/beta/file_metadata.rbi +98 -0
- data/rbi/anthropic/models/beta/file_retrieve_metadata_params.rbi +62 -0
- data/rbi/anthropic/models/beta/file_upload_params.rbi +70 -0
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +43 -5
- data/rbi/anthropic/models/beta/message_create_params.rbi +116 -4
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +121 -4
- data/rbi/anthropic/models/content_block_param.rbi +3 -2
- data/rbi/anthropic/models/message_create_params.rbi +61 -0
- data/rbi/anthropic/models/messages/batch_create_params.rbi +71 -0
- data/rbi/anthropic/models/model.rbi +26 -2
- data/rbi/anthropic/models/usage.rbi +32 -3
- data/rbi/anthropic/resources/beta/files.rbi +109 -0
- data/rbi/anthropic/resources/beta/messages.rbi +49 -3
- data/rbi/anthropic/resources/beta.rbi +3 -0
- data/rbi/anthropic/resources/messages.rbi +14 -0
- data/sig/anthropic/models/anthropic_beta.rbs +12 -0
- data/sig/anthropic/models/api_error_object.rbs +2 -0
- data/sig/anthropic/models/authentication_error.rbs +2 -0
- data/sig/anthropic/models/base64_image_source.rbs +10 -4
- data/sig/anthropic/models/base64_pdf_source.rbs +6 -0
- data/sig/anthropic/models/beta/beta_base64_image_source.rbs +10 -4
- data/sig/anthropic/models/beta/beta_base64_pdf_block.rbs +14 -4
- data/sig/anthropic/models/beta/beta_base64_pdf_source.rbs +6 -0
- data/sig/anthropic/models/beta/beta_cache_control_ephemeral.rbs +31 -2
- data/sig/anthropic/models/beta/beta_cache_creation.rbs +29 -0
- data/sig/anthropic/models/beta/beta_citation_char_location.rbs +9 -0
- data/sig/anthropic/models/beta/beta_citation_char_location_param.rbs +9 -0
- data/sig/anthropic/models/beta/beta_citation_content_block_location.rbs +9 -0
- data/sig/anthropic/models/beta/beta_citation_content_block_location_param.rbs +9 -0
- data/sig/anthropic/models/beta/beta_citation_page_location.rbs +9 -0
- data/sig/anthropic/models/beta/beta_citation_page_location_param.rbs +9 -0
- data/sig/anthropic/models/beta/beta_citation_web_search_result_location_param.rbs +8 -0
- data/sig/anthropic/models/beta/beta_citations_config_param.rbs +2 -0
- data/sig/anthropic/models/beta/beta_citations_delta.rbs +9 -4
- data/sig/anthropic/models/beta/beta_citations_web_search_result_location.rbs +8 -0
- data/sig/anthropic/models/beta/beta_code_execution_output_block.rbs +20 -0
- data/sig/anthropic/models/beta/beta_code_execution_output_block_param.rbs +20 -0
- data/sig/anthropic/models/beta/beta_code_execution_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_code_execution_result_block_param.rbs +44 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_20250522.rbs +34 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_block.rbs +34 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_block_content.rbs +17 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_block_param.rbs +39 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_block_param_content.rbs +17 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_error.rbs +29 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_error_code.rbs +24 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_result_error_param.rbs +29 -0
- data/sig/anthropic/models/beta/beta_container.rbs +19 -0
- data/sig/anthropic/models/beta/beta_container_upload_block.rbs +20 -0
- data/sig/anthropic/models/beta/beta_container_upload_block_param.rbs +34 -0
- data/sig/anthropic/models/beta/beta_content_block.rbs +4 -0
- data/sig/anthropic/models/beta/beta_content_block_param.rbs +7 -3
- data/sig/anthropic/models/beta/beta_content_block_source.rbs +9 -4
- data/sig/anthropic/models/beta/beta_file_document_source.rbs +19 -0
- data/sig/anthropic/models/beta/beta_file_image_source.rbs +19 -0
- data/sig/anthropic/models/beta/beta_image_block_param.rbs +11 -4
- data/sig/anthropic/models/beta/beta_input_json_delta.rbs +2 -0
- data/sig/anthropic/models/beta/beta_mcp_tool_result_block.rbs +49 -0
- data/sig/anthropic/models/beta/beta_mcp_tool_use_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_mcp_tool_use_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_message.rbs +16 -0
- data/sig/anthropic/models/beta/beta_message_delta_usage.rbs +8 -0
- data/sig/anthropic/models/beta/beta_message_param.rbs +13 -8
- data/sig/anthropic/models/beta/beta_message_tokens_count.rbs +2 -0
- data/sig/anthropic/models/beta/beta_metadata.rbs +2 -0
- data/sig/anthropic/models/beta/beta_model_info.rbs +7 -0
- data/sig/anthropic/models/beta/beta_plain_text_source.rbs +2 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_delta_event.rbs +6 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs +14 -4
- data/sig/anthropic/models/beta/beta_raw_content_block_stop_event.rbs +2 -0
- data/sig/anthropic/models/beta/beta_raw_message_delta_event.rbs +16 -0
- data/sig/anthropic/models/beta/beta_raw_message_start_event.rbs +5 -0
- data/sig/anthropic/models/beta/beta_raw_message_stop_event.rbs +2 -0
- data/sig/anthropic/models/beta/beta_redacted_thinking_block.rbs +2 -0
- data/sig/anthropic/models/beta/beta_redacted_thinking_block_param.rbs +2 -0
- data/sig/anthropic/models/beta/beta_request_mcp_server_tool_configuration.rbs +23 -0
- data/sig/anthropic/models/beta/beta_request_mcp_server_url_definition.rbs +44 -0
- data/sig/anthropic/models/beta/beta_request_mcp_tool_result_block_param.rbs +60 -0
- data/sig/anthropic/models/beta/beta_server_tool_usage.rbs +2 -0
- data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +26 -3
- data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +22 -3
- data/sig/anthropic/models/beta/beta_signature_delta.rbs +2 -0
- data/sig/anthropic/models/beta/beta_text_block.rbs +6 -0
- data/sig/anthropic/models/beta/beta_text_block_param.rbs +7 -0
- data/sig/anthropic/models/beta/beta_text_delta.rbs +2 -0
- data/sig/anthropic/models/beta/beta_thinking_block.rbs +2 -0
- data/sig/anthropic/models/beta/beta_thinking_block_param.rbs +2 -0
- data/sig/anthropic/models/beta/beta_thinking_config_disabled.rbs +2 -0
- data/sig/anthropic/models/beta/beta_thinking_config_enabled.rbs +2 -0
- data/sig/anthropic/models/beta/beta_thinking_delta.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool.rbs +14 -4
- data/sig/anthropic/models/beta/beta_tool_bash_20241022.rbs +6 -0
- data/sig/anthropic/models/beta/beta_tool_bash_20250124.rbs +6 -0
- data/sig/anthropic/models/beta/beta_tool_choice_any.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool_choice_auto.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool_choice_none.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool_choice_tool.rbs +6 -0
- data/sig/anthropic/models/beta/beta_tool_computer_use_20241022.rbs +9 -0
- data/sig/anthropic/models/beta/beta_tool_computer_use_20250124.rbs +9 -0
- data/sig/anthropic/models/beta/beta_tool_result_block_param.rbs +16 -8
- data/sig/anthropic/models/beta/beta_tool_text_editor_20241022.rbs +6 -0
- data/sig/anthropic/models/beta/beta_tool_text_editor_20250124.rbs +6 -0
- data/sig/anthropic/models/beta/beta_tool_text_editor_20250429.rbs +34 -0
- data/sig/anthropic/models/beta/beta_tool_union.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool_use_block.rbs +7 -0
- data/sig/anthropic/models/beta/beta_tool_use_block_param.rbs +8 -0
- data/sig/anthropic/models/beta/beta_url_image_source.rbs +2 -0
- data/sig/anthropic/models/beta/beta_url_pdf_source.rbs +2 -0
- data/sig/anthropic/models/beta/beta_usage.rbs +32 -2
- data/sig/anthropic/models/beta/beta_web_search_result_block.rbs +8 -0
- data/sig/anthropic/models/beta/beta_web_search_result_block_param.rbs +8 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_20250305.rbs +18 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_request_error.rbs +7 -21
- data/sig/anthropic/models/beta/beta_web_search_tool_result_block.rbs +6 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_block_param.rbs +7 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_error.rbs +7 -21
- data/sig/anthropic/models/beta/beta_web_search_tool_result_error_code.rbs +26 -0
- data/sig/anthropic/models/beta/deleted_file.rbs +38 -0
- data/sig/anthropic/models/beta/file_delete_params.rbs +30 -0
- data/sig/anthropic/models/beta/file_download_params.rbs +30 -0
- data/sig/anthropic/models/beta/file_list_params.rbs +53 -0
- data/sig/anthropic/models/beta/file_metadata.rbs +54 -0
- data/sig/anthropic/models/beta/file_retrieve_metadata_params.rbs +30 -0
- data/sig/anthropic/models/beta/file_upload_params.rbs +37 -0
- data/sig/anthropic/models/beta/message_count_tokens_params.rbs +28 -6
- data/sig/anthropic/models/beta/message_create_params.rbs +51 -0
- data/sig/anthropic/models/beta/messages/batch_cancel_params.rbs +5 -0
- data/sig/anthropic/models/beta/messages/batch_create_params.rbs +67 -6
- data/sig/anthropic/models/beta/messages/batch_delete_params.rbs +5 -0
- data/sig/anthropic/models/beta/messages/batch_list_params.rbs +8 -0
- data/sig/anthropic/models/beta/messages/batch_results_params.rbs +5 -0
- data/sig/anthropic/models/beta/messages/batch_retrieve_params.rbs +5 -0
- data/sig/anthropic/models/beta/messages/beta_deleted_message_batch.rbs +2 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch.rbs +17 -4
- data/sig/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbs +2 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_errored_result.rbs +5 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_expired_result.rbs +2 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_individual_response.rbs +5 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_request_counts.rbs +8 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbs +5 -0
- data/sig/anthropic/models/beta/model_list_params.rbs +8 -0
- data/sig/anthropic/models/beta/model_retrieve_params.rbs +5 -0
- data/sig/anthropic/models/beta_api_error.rbs +2 -0
- data/sig/anthropic/models/beta_authentication_error.rbs +2 -0
- data/sig/anthropic/models/beta_billing_error.rbs +2 -0
- data/sig/anthropic/models/beta_error_response.rbs +2 -0
- data/sig/anthropic/models/beta_gateway_timeout_error.rbs +2 -0
- data/sig/anthropic/models/beta_invalid_request_error.rbs +2 -0
- data/sig/anthropic/models/beta_not_found_error.rbs +2 -0
- data/sig/anthropic/models/beta_overloaded_error.rbs +2 -0
- data/sig/anthropic/models/beta_permission_error.rbs +2 -0
- data/sig/anthropic/models/beta_rate_limit_error.rbs +2 -0
- data/sig/anthropic/models/billing_error.rbs +2 -0
- data/sig/anthropic/models/cache_control_ephemeral.rbs +2 -0
- data/sig/anthropic/models/citation_char_location.rbs +9 -0
- data/sig/anthropic/models/citation_char_location_param.rbs +9 -0
- data/sig/anthropic/models/citation_content_block_location.rbs +9 -0
- data/sig/anthropic/models/citation_content_block_location_param.rbs +9 -0
- data/sig/anthropic/models/citation_page_location.rbs +9 -0
- data/sig/anthropic/models/citation_page_location_param.rbs +9 -0
- data/sig/anthropic/models/citation_web_search_result_location_param.rbs +8 -0
- data/sig/anthropic/models/citations_config_param.rbs +2 -0
- data/sig/anthropic/models/citations_delta.rbs +12 -4
- data/sig/anthropic/models/citations_web_search_result_location.rbs +8 -0
- data/sig/anthropic/models/completion.rbs +8 -0
- data/sig/anthropic/models/completion_create_params.rbs +13 -0
- data/sig/anthropic/models/content_block_param.rbs +3 -3
- data/sig/anthropic/models/content_block_source.rbs +12 -4
- data/sig/anthropic/models/document_block_param.rbs +13 -4
- data/sig/anthropic/models/error_response.rbs +2 -0
- data/sig/anthropic/models/gateway_timeout_error.rbs +2 -0
- data/sig/anthropic/models/image_block_param.rbs +10 -4
- data/sig/anthropic/models/input_json_delta.rbs +2 -0
- data/sig/anthropic/models/invalid_request_error.rbs +2 -0
- data/sig/anthropic/models/message.rbs +11 -0
- data/sig/anthropic/models/message_count_tokens_params.rbs +10 -0
- data/sig/anthropic/models/message_create_params.rbs +36 -0
- data/sig/anthropic/models/message_delta_usage.rbs +8 -0
- data/sig/anthropic/models/message_param.rbs +13 -8
- data/sig/anthropic/models/message_tokens_count.rbs +2 -0
- data/sig/anthropic/models/messages/batch_cancel_params.rbs +2 -0
- data/sig/anthropic/models/messages/batch_create_params.rbs +52 -6
- data/sig/anthropic/models/messages/batch_delete_params.rbs +2 -0
- data/sig/anthropic/models/messages/batch_list_params.rbs +7 -0
- data/sig/anthropic/models/messages/batch_results_params.rbs +2 -0
- data/sig/anthropic/models/messages/batch_retrieve_params.rbs +2 -0
- data/sig/anthropic/models/messages/deleted_message_batch.rbs +2 -0
- data/sig/anthropic/models/messages/message_batch.rbs +17 -4
- data/sig/anthropic/models/messages/message_batch_canceled_result.rbs +2 -0
- data/sig/anthropic/models/messages/message_batch_errored_result.rbs +2 -0
- data/sig/anthropic/models/messages/message_batch_expired_result.rbs +2 -0
- data/sig/anthropic/models/messages/message_batch_individual_response.rbs +5 -0
- data/sig/anthropic/models/messages/message_batch_request_counts.rbs +8 -0
- data/sig/anthropic/models/messages/message_batch_succeeded_result.rbs +2 -0
- data/sig/anthropic/models/metadata.rbs +2 -0
- data/sig/anthropic/models/model.rbs +26 -2
- data/sig/anthropic/models/model_info.rbs +7 -0
- data/sig/anthropic/models/model_list_params.rbs +8 -0
- data/sig/anthropic/models/model_retrieve_params.rbs +5 -0
- data/sig/anthropic/models/not_found_error.rbs +2 -0
- data/sig/anthropic/models/overloaded_error.rbs +2 -0
- data/sig/anthropic/models/permission_error.rbs +2 -0
- data/sig/anthropic/models/plain_text_source.rbs +2 -0
- data/sig/anthropic/models/rate_limit_error.rbs +2 -0
- data/sig/anthropic/models/raw_content_block_delta_event.rbs +6 -0
- data/sig/anthropic/models/raw_content_block_start_event.rbs +10 -4
- data/sig/anthropic/models/raw_content_block_stop_event.rbs +2 -0
- data/sig/anthropic/models/raw_message_delta_event.rbs +11 -0
- data/sig/anthropic/models/raw_message_start_event.rbs +2 -0
- data/sig/anthropic/models/raw_message_stop_event.rbs +2 -0
- data/sig/anthropic/models/redacted_thinking_block.rbs +2 -0
- data/sig/anthropic/models/redacted_thinking_block_param.rbs +2 -0
- data/sig/anthropic/models/server_tool_usage.rbs +2 -0
- data/sig/anthropic/models/server_tool_use_block.rbs +7 -0
- data/sig/anthropic/models/server_tool_use_block_param.rbs +8 -0
- data/sig/anthropic/models/signature_delta.rbs +2 -0
- data/sig/anthropic/models/text_block.rbs +6 -0
- data/sig/anthropic/models/text_block_param.rbs +7 -0
- data/sig/anthropic/models/text_delta.rbs +2 -0
- data/sig/anthropic/models/thinking_block.rbs +2 -0
- data/sig/anthropic/models/thinking_block_param.rbs +2 -0
- data/sig/anthropic/models/thinking_config_disabled.rbs +2 -0
- data/sig/anthropic/models/thinking_config_enabled.rbs +2 -0
- data/sig/anthropic/models/thinking_delta.rbs +2 -0
- data/sig/anthropic/models/tool.rbs +14 -4
- data/sig/anthropic/models/tool_bash_20250124.rbs +6 -0
- data/sig/anthropic/models/tool_choice_any.rbs +2 -0
- data/sig/anthropic/models/tool_choice_auto.rbs +2 -0
- data/sig/anthropic/models/tool_choice_none.rbs +2 -0
- data/sig/anthropic/models/tool_choice_tool.rbs +6 -0
- data/sig/anthropic/models/tool_result_block_param.rbs +17 -8
- data/sig/anthropic/models/tool_text_editor_20250124.rbs +6 -0
- data/sig/anthropic/models/tool_use_block.rbs +2 -0
- data/sig/anthropic/models/tool_use_block_param.rbs +8 -0
- data/sig/anthropic/models/url_image_source.rbs +2 -0
- data/sig/anthropic/models/url_pdf_source.rbs +2 -0
- data/sig/anthropic/models/usage.rbs +27 -2
- data/sig/anthropic/models/web_search_result_block.rbs +8 -0
- data/sig/anthropic/models/web_search_result_block_param.rbs +8 -0
- data/sig/anthropic/models/web_search_tool_20250305.rbs +18 -0
- data/sig/anthropic/models/web_search_tool_request_error.rbs +9 -4
- data/sig/anthropic/models/web_search_tool_result_block.rbs +6 -0
- data/sig/anthropic/models/web_search_tool_result_block_param.rbs +7 -0
- data/sig/anthropic/models/web_search_tool_result_error.rbs +9 -4
- data/sig/anthropic/resources/beta/files.rbs +41 -0
- data/sig/anthropic/resources/beta/messages.rbs +8 -1
- data/sig/anthropic/resources/beta.rbs +2 -0
- data/sig/anthropic/resources/messages.rbs +2 -0
- metadata +104 -2
@@ -112,7 +112,7 @@ module Anthropic
|
|
112
112
|
#
|
113
113
|
# There is a limit of 100000 messages in a single request.
|
114
114
|
#
|
115
|
-
# @return [Array<Anthropic::Beta::BetaMessageParam>]
|
115
|
+
# @return [Array<Anthropic::Models::Beta::BetaMessageParam>]
|
116
116
|
required :messages, -> { Anthropic::Internal::Type::ArrayOf[Anthropic::Beta::BetaMessageParam] }
|
117
117
|
|
118
118
|
# @!attribute model
|
@@ -120,15 +120,38 @@ module Anthropic
|
|
120
120
|
# [models](https://docs.anthropic.com/en/docs/models-overview) for additional
|
121
121
|
# details and options.
|
122
122
|
#
|
123
|
-
# @return [Symbol, String, Anthropic::Model]
|
123
|
+
# @return [Symbol, String, Anthropic::Models::Model]
|
124
124
|
required :model, union: -> { Anthropic::Model }
|
125
125
|
|
126
|
+
# @!attribute container
|
127
|
+
# Container identifier for reuse across requests.
|
128
|
+
#
|
129
|
+
# @return [String, nil]
|
130
|
+
optional :container, String, nil?: true
|
131
|
+
|
132
|
+
# @!attribute mcp_servers
|
133
|
+
# MCP servers to be utilized in this request
|
134
|
+
#
|
135
|
+
# @return [Array<Anthropic::Models::Beta::BetaRequestMCPServerURLDefinition>, nil]
|
136
|
+
optional :mcp_servers,
|
137
|
+
-> { Anthropic::Internal::Type::ArrayOf[Anthropic::Beta::BetaRequestMCPServerURLDefinition] }
|
138
|
+
|
126
139
|
# @!attribute metadata
|
127
140
|
# An object describing metadata about the request.
|
128
141
|
#
|
129
|
-
# @return [Anthropic::Beta::BetaMetadata, nil]
|
142
|
+
# @return [Anthropic::Models::Beta::BetaMetadata, nil]
|
130
143
|
optional :metadata, -> { Anthropic::Beta::BetaMetadata }
|
131
144
|
|
145
|
+
# @!attribute service_tier
|
146
|
+
# Determines whether to use priority capacity (if available) or standard capacity
|
147
|
+
# for this request.
|
148
|
+
#
|
149
|
+
# Anthropic offers different levels of service for your API requests. See
|
150
|
+
# [service-tiers](https://docs.anthropic.com/en/api/service-tiers) for details.
|
151
|
+
#
|
152
|
+
# @return [Symbol, Anthropic::Models::Beta::MessageCreateParams::ServiceTier, nil]
|
153
|
+
optional :service_tier, enum: -> { Anthropic::Beta::MessageCreateParams::ServiceTier }
|
154
|
+
|
132
155
|
# @!attribute stop_sequences
|
133
156
|
# Custom text sequences that will cause the model to stop generating.
|
134
157
|
#
|
@@ -150,7 +173,7 @@ module Anthropic
|
|
150
173
|
# as specifying a particular goal or role. See our
|
151
174
|
# [guide to system prompts](https://docs.anthropic.com/en/docs/system-prompts).
|
152
175
|
#
|
153
|
-
# @return [String, Array<Anthropic::Beta::BetaTextBlockParam>, nil]
|
176
|
+
# @return [String, Array<Anthropic::Models::Beta::BetaTextBlockParam>, nil]
|
154
177
|
optional :system_, union: -> { Anthropic::Beta::MessageCreateParams::System }, api_name: :system
|
155
178
|
|
156
179
|
# @!attribute temperature
|
@@ -177,14 +200,14 @@ module Anthropic
|
|
177
200
|
# [extended thinking](https://docs.anthropic.com/en/docs/build-with-claude/extended-thinking)
|
178
201
|
# for details.
|
179
202
|
#
|
180
|
-
# @return [Anthropic::Beta::BetaThinkingConfigEnabled, Anthropic::Beta::BetaThinkingConfigDisabled, nil]
|
203
|
+
# @return [Anthropic::Models::Beta::BetaThinkingConfigEnabled, Anthropic::Models::Beta::BetaThinkingConfigDisabled, nil]
|
181
204
|
optional :thinking, union: -> { Anthropic::Beta::BetaThinkingConfigParam }
|
182
205
|
|
183
206
|
# @!attribute tool_choice
|
184
207
|
# How the model should use the provided tools. The model can use a specific tool,
|
185
208
|
# any available tool, decide by itself, or not use tools at all.
|
186
209
|
#
|
187
|
-
# @return [Anthropic::Beta::BetaToolChoiceAuto, Anthropic::Beta::BetaToolChoiceAny, Anthropic::Beta::BetaToolChoiceTool, Anthropic::Beta::BetaToolChoiceNone, nil]
|
210
|
+
# @return [Anthropic::Models::Beta::BetaToolChoiceAuto, Anthropic::Models::Beta::BetaToolChoiceAny, Anthropic::Models::Beta::BetaToolChoiceTool, Anthropic::Models::Beta::BetaToolChoiceNone, nil]
|
188
211
|
optional :tool_choice, union: -> { Anthropic::Beta::BetaToolChoice }
|
189
212
|
|
190
213
|
# @!attribute tools
|
@@ -258,7 +281,7 @@ module Anthropic
|
|
258
281
|
#
|
259
282
|
# See our [guide](https://docs.anthropic.com/en/docs/tool-use) for more details.
|
260
283
|
#
|
261
|
-
# @return [Array<Anthropic::Beta::BetaTool, Anthropic::Beta::BetaToolComputerUse20241022, Anthropic::Beta::BetaToolBash20241022, Anthropic::Beta::BetaToolTextEditor20241022, Anthropic::Beta::BetaToolComputerUse20250124, Anthropic::Beta::BetaToolBash20250124, Anthropic::Beta::BetaToolTextEditor20250124, Anthropic::Beta::BetaWebSearchTool20250305>, nil]
|
284
|
+
# @return [Array<Anthropic::Models::Beta::BetaTool, Anthropic::Models::Beta::BetaToolComputerUse20241022, Anthropic::Models::Beta::BetaToolBash20241022, Anthropic::Models::Beta::BetaToolTextEditor20241022, Anthropic::Models::Beta::BetaToolComputerUse20250124, Anthropic::Models::Beta::BetaToolBash20250124, Anthropic::Models::Beta::BetaToolTextEditor20250124, Anthropic::Models::Beta::BetaToolTextEditor20250429, Anthropic::Models::Beta::BetaWebSearchTool20250305, Anthropic::Models::Beta::BetaCodeExecutionTool20250522>, nil]
|
262
285
|
optional :tools, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::Beta::BetaToolUnion] }
|
263
286
|
|
264
287
|
# @!attribute top_k
|
@@ -290,41 +313,62 @@ module Anthropic
|
|
290
313
|
# @!attribute betas
|
291
314
|
# Optional header to specify the beta version(s) you want to use.
|
292
315
|
#
|
293
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
316
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
294
317
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
295
318
|
|
296
|
-
# @!method initialize(max_tokens:, messages:, model:, metadata: nil, stop_sequences: nil, system_: nil, temperature: nil, thinking: nil, tool_choice: nil, tools: nil, top_k: nil, top_p: nil, betas: nil, request_options: {})
|
319
|
+
# @!method initialize(max_tokens:, messages:, model:, container: nil, mcp_servers: nil, metadata: nil, service_tier: nil, stop_sequences: nil, system_: nil, temperature: nil, thinking: nil, tool_choice: nil, tools: nil, top_k: nil, top_p: nil, betas: nil, request_options: {})
|
297
320
|
# Some parameter documentations has been truncated, see
|
298
321
|
# {Anthropic::Models::Beta::MessageCreateParams} for more details.
|
299
322
|
#
|
300
323
|
# @param max_tokens [Integer] The maximum number of tokens to generate before stopping.
|
301
324
|
#
|
302
|
-
# @param messages [Array<Anthropic::Beta::BetaMessageParam>] Input messages.
|
325
|
+
# @param messages [Array<Anthropic::Models::Beta::BetaMessageParam>] Input messages.
|
326
|
+
#
|
327
|
+
# @param model [Symbol, String, Anthropic::Models::Model] The model that will complete your prompt.\n\nSee [models](https://docs.anthropic
|
303
328
|
#
|
304
|
-
# @param
|
329
|
+
# @param container [String, nil] Container identifier for reuse across requests.
|
305
330
|
#
|
306
|
-
# @param
|
331
|
+
# @param mcp_servers [Array<Anthropic::Models::Beta::BetaRequestMCPServerURLDefinition>] MCP servers to be utilized in this request
|
332
|
+
#
|
333
|
+
# @param metadata [Anthropic::Models::Beta::BetaMetadata] An object describing metadata about the request.
|
334
|
+
#
|
335
|
+
# @param service_tier [Symbol, Anthropic::Models::Beta::MessageCreateParams::ServiceTier] Determines whether to use priority capacity (if available) or standard capacity
|
307
336
|
#
|
308
337
|
# @param stop_sequences [Array<String>] Custom text sequences that will cause the model to stop generating.
|
309
338
|
#
|
310
|
-
# @param system_ [String, Array<Anthropic::Beta::BetaTextBlockParam>] System prompt.
|
339
|
+
# @param system_ [String, Array<Anthropic::Models::Beta::BetaTextBlockParam>] System prompt.
|
311
340
|
#
|
312
341
|
# @param temperature [Float] Amount of randomness injected into the response.
|
313
342
|
#
|
314
|
-
# @param thinking [Anthropic::Beta::BetaThinkingConfigEnabled, Anthropic::Beta::BetaThinkingConfigDisabled] Configuration for enabling Claude's extended thinking.
|
343
|
+
# @param thinking [Anthropic::Models::Beta::BetaThinkingConfigEnabled, Anthropic::Models::Beta::BetaThinkingConfigDisabled] Configuration for enabling Claude's extended thinking.
|
315
344
|
#
|
316
|
-
# @param tool_choice [Anthropic::Beta::BetaToolChoiceAuto, Anthropic::Beta::BetaToolChoiceAny, Anthropic::Beta::BetaToolChoiceTool, Anthropic::Beta::BetaToolChoiceNone] How the model should use the provided tools. The model can use a specific tool,
|
345
|
+
# @param tool_choice [Anthropic::Models::Beta::BetaToolChoiceAuto, Anthropic::Models::Beta::BetaToolChoiceAny, Anthropic::Models::Beta::BetaToolChoiceTool, Anthropic::Models::Beta::BetaToolChoiceNone] How the model should use the provided tools. The model can use a specific tool,
|
317
346
|
#
|
318
|
-
# @param tools [Array<Anthropic::Beta::BetaTool, Anthropic::Beta::BetaToolComputerUse20241022, Anthropic::Beta::BetaToolBash20241022, Anthropic::Beta::BetaToolTextEditor20241022, Anthropic::Beta::BetaToolComputerUse20250124, Anthropic::Beta::BetaToolBash20250124, Anthropic::Beta::BetaToolTextEditor20250124, Anthropic::Beta::BetaWebSearchTool20250305>] Definitions of tools that the model may use.
|
347
|
+
# @param tools [Array<Anthropic::Models::Beta::BetaTool, Anthropic::Models::Beta::BetaToolComputerUse20241022, Anthropic::Models::Beta::BetaToolBash20241022, Anthropic::Models::Beta::BetaToolTextEditor20241022, Anthropic::Models::Beta::BetaToolComputerUse20250124, Anthropic::Models::Beta::BetaToolBash20250124, Anthropic::Models::Beta::BetaToolTextEditor20250124, Anthropic::Models::Beta::BetaToolTextEditor20250429, Anthropic::Models::Beta::BetaWebSearchTool20250305, Anthropic::Models::Beta::BetaCodeExecutionTool20250522>] Definitions of tools that the model may use.
|
319
348
|
#
|
320
349
|
# @param top_k [Integer] Only sample from the top K options for each subsequent token.
|
321
350
|
#
|
322
351
|
# @param top_p [Float] Use nucleus sampling.
|
323
352
|
#
|
324
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
353
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
325
354
|
#
|
326
355
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
327
356
|
|
357
|
+
# Determines whether to use priority capacity (if available) or standard capacity
|
358
|
+
# for this request.
|
359
|
+
#
|
360
|
+
# Anthropic offers different levels of service for your API requests. See
|
361
|
+
# [service-tiers](https://docs.anthropic.com/en/api/service-tiers) for details.
|
362
|
+
module ServiceTier
|
363
|
+
extend Anthropic::Internal::Type::Enum
|
364
|
+
|
365
|
+
AUTO = :auto
|
366
|
+
STANDARD_ONLY = :standard_only
|
367
|
+
|
368
|
+
# @!method self.values
|
369
|
+
# @return [Array<Symbol>]
|
370
|
+
end
|
371
|
+
|
328
372
|
# System prompt.
|
329
373
|
#
|
330
374
|
# A system prompt is a way of providing context and instructions to Claude, such
|
@@ -335,10 +379,10 @@ module Anthropic
|
|
335
379
|
|
336
380
|
variant String
|
337
381
|
|
338
|
-
variant -> { Anthropic::Beta::MessageCreateParams::System::BetaTextBlockParamArray }
|
382
|
+
variant -> { Anthropic::Models::Beta::MessageCreateParams::System::BetaTextBlockParamArray }
|
339
383
|
|
340
384
|
# @!method self.variants
|
341
|
-
# @return [Array(String, Array<Anthropic::Beta::BetaTextBlockParam>)]
|
385
|
+
# @return [Array(String, Array<Anthropic::Models::Beta::BetaTextBlockParam>)]
|
342
386
|
|
343
387
|
# @type [Anthropic::Internal::Type::Converter]
|
344
388
|
BetaTextBlockParamArray = Anthropic::Internal::Type::ArrayOf[-> {
|
@@ -12,11 +12,11 @@ module Anthropic
|
|
12
12
|
# @!attribute betas
|
13
13
|
# Optional header to specify the beta version(s) you want to use.
|
14
14
|
#
|
15
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
15
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
16
16
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
17
17
|
|
18
18
|
# @!method initialize(betas: nil, request_options: {})
|
19
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
19
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
20
20
|
#
|
21
21
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
22
22
|
end
|
@@ -13,7 +13,7 @@ module Anthropic
|
|
13
13
|
# List of requests for prompt completion. Each is an individual request to create
|
14
14
|
# a Message.
|
15
15
|
#
|
16
|
-
# @return [Array<Anthropic::Beta::Messages::BatchCreateParams::Request>]
|
16
|
+
# @return [Array<Anthropic::Models::Beta::Messages::BatchCreateParams::Request>]
|
17
17
|
required :requests,
|
18
18
|
-> {
|
19
19
|
Anthropic::Internal::Type::ArrayOf[Anthropic::Beta::Messages::BatchCreateParams::Request]
|
@@ -22,16 +22,16 @@ module Anthropic
|
|
22
22
|
# @!attribute betas
|
23
23
|
# Optional header to specify the beta version(s) you want to use.
|
24
24
|
#
|
25
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
25
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
26
26
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
27
27
|
|
28
28
|
# @!method initialize(requests:, betas: nil, request_options: {})
|
29
29
|
# Some parameter documentations has been truncated, see
|
30
30
|
# {Anthropic::Models::Beta::Messages::BatchCreateParams} for more details.
|
31
31
|
#
|
32
|
-
# @param requests [Array<Anthropic::Beta::Messages::BatchCreateParams::Request>] List of requests for prompt completion. Each is an individual request to create
|
32
|
+
# @param requests [Array<Anthropic::Models::Beta::Messages::BatchCreateParams::Request>] List of requests for prompt completion. Each is an individual request to create
|
33
33
|
#
|
34
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
34
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
35
35
|
#
|
36
36
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
37
37
|
|
@@ -51,18 +51,19 @@ module Anthropic
|
|
51
51
|
# See the [Messages API reference](/en/api/messages) for full documentation on
|
52
52
|
# available parameters.
|
53
53
|
#
|
54
|
-
# @return [Anthropic::Beta::Messages::BatchCreateParams::Request::Params]
|
54
|
+
# @return [Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params]
|
55
55
|
required :params, -> { Anthropic::Beta::Messages::BatchCreateParams::Request::Params }
|
56
56
|
|
57
57
|
# @!method initialize(custom_id:, params:)
|
58
58
|
# Some parameter documentations has been truncated, see
|
59
|
-
# {Anthropic::Beta::Messages::BatchCreateParams::Request} for more
|
59
|
+
# {Anthropic::Models::Beta::Messages::BatchCreateParams::Request} for more
|
60
|
+
# details.
|
60
61
|
#
|
61
62
|
# @param custom_id [String] Developer-provided ID created for each request in a Message Batch. Useful for ma
|
62
63
|
#
|
63
|
-
# @param params [Anthropic::Beta::Messages::BatchCreateParams::Request::Params] Messages API creation parameters for the individual request.
|
64
|
+
# @param params [Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params] Messages API creation parameters for the individual request.
|
64
65
|
|
65
|
-
# @see Anthropic::Beta::Messages::BatchCreateParams::Request#params
|
66
|
+
# @see Anthropic::Models::Beta::Messages::BatchCreateParams::Request#params
|
66
67
|
class Params < Anthropic::Internal::Type::BaseModel
|
67
68
|
# @!attribute max_tokens
|
68
69
|
# The maximum number of tokens to generate before stopping.
|
@@ -166,7 +167,7 @@ module Anthropic
|
|
166
167
|
#
|
167
168
|
# There is a limit of 100000 messages in a single request.
|
168
169
|
#
|
169
|
-
# @return [Array<Anthropic::Beta::BetaMessageParam>]
|
170
|
+
# @return [Array<Anthropic::Models::Beta::BetaMessageParam>]
|
170
171
|
required :messages, -> { Anthropic::Internal::Type::ArrayOf[Anthropic::Beta::BetaMessageParam] }
|
171
172
|
|
172
173
|
# @!attribute model
|
@@ -174,15 +175,41 @@ module Anthropic
|
|
174
175
|
# [models](https://docs.anthropic.com/en/docs/models-overview) for additional
|
175
176
|
# details and options.
|
176
177
|
#
|
177
|
-
# @return [Symbol, String, Anthropic::Model]
|
178
|
+
# @return [Symbol, String, Anthropic::Models::Model]
|
178
179
|
required :model, union: -> { Anthropic::Model }
|
179
180
|
|
181
|
+
# @!attribute container
|
182
|
+
# Container identifier for reuse across requests.
|
183
|
+
#
|
184
|
+
# @return [String, nil]
|
185
|
+
optional :container, String, nil?: true
|
186
|
+
|
187
|
+
# @!attribute mcp_servers
|
188
|
+
# MCP servers to be utilized in this request
|
189
|
+
#
|
190
|
+
# @return [Array<Anthropic::Models::Beta::BetaRequestMCPServerURLDefinition>, nil]
|
191
|
+
optional :mcp_servers,
|
192
|
+
-> {
|
193
|
+
Anthropic::Internal::Type::ArrayOf[Anthropic::Beta::BetaRequestMCPServerURLDefinition]
|
194
|
+
}
|
195
|
+
|
180
196
|
# @!attribute metadata
|
181
197
|
# An object describing metadata about the request.
|
182
198
|
#
|
183
|
-
# @return [Anthropic::Beta::BetaMetadata, nil]
|
199
|
+
# @return [Anthropic::Models::Beta::BetaMetadata, nil]
|
184
200
|
optional :metadata, -> { Anthropic::Beta::BetaMetadata }
|
185
201
|
|
202
|
+
# @!attribute service_tier
|
203
|
+
# Determines whether to use priority capacity (if available) or standard capacity
|
204
|
+
# for this request.
|
205
|
+
#
|
206
|
+
# Anthropic offers different levels of service for your API requests. See
|
207
|
+
# [service-tiers](https://docs.anthropic.com/en/api/service-tiers) for details.
|
208
|
+
#
|
209
|
+
# @return [Symbol, Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params::ServiceTier, nil]
|
210
|
+
optional :service_tier,
|
211
|
+
enum: -> { Anthropic::Beta::Messages::BatchCreateParams::Request::Params::ServiceTier }
|
212
|
+
|
186
213
|
# @!attribute stop_sequences
|
187
214
|
# Custom text sequences that will cause the model to stop generating.
|
188
215
|
#
|
@@ -213,7 +240,7 @@ module Anthropic
|
|
213
240
|
# as specifying a particular goal or role. See our
|
214
241
|
# [guide to system prompts](https://docs.anthropic.com/en/docs/system-prompts).
|
215
242
|
#
|
216
|
-
# @return [String, Array<Anthropic::Beta::BetaTextBlockParam>, nil]
|
243
|
+
# @return [String, Array<Anthropic::Models::Beta::BetaTextBlockParam>, nil]
|
217
244
|
optional :system_,
|
218
245
|
union: -> { Anthropic::Beta::Messages::BatchCreateParams::Request::Params::System },
|
219
246
|
api_name: :system
|
@@ -242,14 +269,14 @@ module Anthropic
|
|
242
269
|
# [extended thinking](https://docs.anthropic.com/en/docs/build-with-claude/extended-thinking)
|
243
270
|
# for details.
|
244
271
|
#
|
245
|
-
# @return [Anthropic::Beta::BetaThinkingConfigEnabled, Anthropic::Beta::BetaThinkingConfigDisabled, nil]
|
272
|
+
# @return [Anthropic::Models::Beta::BetaThinkingConfigEnabled, Anthropic::Models::Beta::BetaThinkingConfigDisabled, nil]
|
246
273
|
optional :thinking, union: -> { Anthropic::Beta::BetaThinkingConfigParam }
|
247
274
|
|
248
275
|
# @!attribute tool_choice
|
249
276
|
# How the model should use the provided tools. The model can use a specific tool,
|
250
277
|
# any available tool, decide by itself, or not use tools at all.
|
251
278
|
#
|
252
|
-
# @return [Anthropic::Beta::BetaToolChoiceAuto, Anthropic::Beta::BetaToolChoiceAny, Anthropic::Beta::BetaToolChoiceTool, Anthropic::Beta::BetaToolChoiceNone, nil]
|
279
|
+
# @return [Anthropic::Models::Beta::BetaToolChoiceAuto, Anthropic::Models::Beta::BetaToolChoiceAny, Anthropic::Models::Beta::BetaToolChoiceTool, Anthropic::Models::Beta::BetaToolChoiceNone, nil]
|
253
280
|
optional :tool_choice, union: -> { Anthropic::Beta::BetaToolChoice }
|
254
281
|
|
255
282
|
# @!attribute tools
|
@@ -323,7 +350,7 @@ module Anthropic
|
|
323
350
|
#
|
324
351
|
# See our [guide](https://docs.anthropic.com/en/docs/tool-use) for more details.
|
325
352
|
#
|
326
|
-
# @return [Array<Anthropic::Beta::BetaTool, Anthropic::Beta::BetaToolComputerUse20241022, Anthropic::Beta::BetaToolBash20241022, Anthropic::Beta::BetaToolTextEditor20241022, Anthropic::Beta::BetaToolComputerUse20250124, Anthropic::Beta::BetaToolBash20250124, Anthropic::Beta::BetaToolTextEditor20250124, Anthropic::Beta::BetaWebSearchTool20250305>, nil]
|
353
|
+
# @return [Array<Anthropic::Models::Beta::BetaTool, Anthropic::Models::Beta::BetaToolComputerUse20241022, Anthropic::Models::Beta::BetaToolBash20241022, Anthropic::Models::Beta::BetaToolTextEditor20241022, Anthropic::Models::Beta::BetaToolComputerUse20250124, Anthropic::Models::Beta::BetaToolBash20250124, Anthropic::Models::Beta::BetaToolTextEditor20250124, Anthropic::Models::Beta::BetaToolTextEditor20250429, Anthropic::Models::Beta::BetaWebSearchTool20250305, Anthropic::Models::Beta::BetaCodeExecutionTool20250522>, nil]
|
327
354
|
optional :tools,
|
328
355
|
-> {
|
329
356
|
Anthropic::Internal::Type::ArrayOf[union: Anthropic::Beta::BetaToolUnion]
|
@@ -355,9 +382,9 @@ module Anthropic
|
|
355
382
|
# @return [Float, nil]
|
356
383
|
optional :top_p, Float
|
357
384
|
|
358
|
-
# @!method initialize(max_tokens:, messages:, model:, metadata: nil, stop_sequences: nil, stream: nil, system_: nil, temperature: nil, thinking: nil, tool_choice: nil, tools: nil, top_k: nil, top_p: nil)
|
385
|
+
# @!method initialize(max_tokens:, messages:, model:, container: nil, mcp_servers: nil, metadata: nil, service_tier: nil, stop_sequences: nil, stream: nil, system_: nil, temperature: nil, thinking: nil, tool_choice: nil, tools: nil, top_k: nil, top_p: nil)
|
359
386
|
# Some parameter documentations has been truncated, see
|
360
|
-
# {Anthropic::Beta::Messages::BatchCreateParams::Request::Params} for more
|
387
|
+
# {Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params} for more
|
361
388
|
# details.
|
362
389
|
#
|
363
390
|
# Messages API creation parameters for the individual request.
|
@@ -367,48 +394,69 @@ module Anthropic
|
|
367
394
|
#
|
368
395
|
# @param max_tokens [Integer] The maximum number of tokens to generate before stopping.
|
369
396
|
#
|
370
|
-
# @param messages [Array<Anthropic::Beta::BetaMessageParam>] Input messages.
|
397
|
+
# @param messages [Array<Anthropic::Models::Beta::BetaMessageParam>] Input messages.
|
371
398
|
#
|
372
|
-
# @param model [Symbol, String, Anthropic::Model] The model that will complete your prompt.\n\nSee [models](https://docs.anthropic
|
399
|
+
# @param model [Symbol, String, Anthropic::Models::Model] The model that will complete your prompt.\n\nSee [models](https://docs.anthropic
|
373
400
|
#
|
374
|
-
# @param
|
401
|
+
# @param container [String, nil] Container identifier for reuse across requests.
|
402
|
+
#
|
403
|
+
# @param mcp_servers [Array<Anthropic::Models::Beta::BetaRequestMCPServerURLDefinition>] MCP servers to be utilized in this request
|
404
|
+
#
|
405
|
+
# @param metadata [Anthropic::Models::Beta::BetaMetadata] An object describing metadata about the request.
|
406
|
+
#
|
407
|
+
# @param service_tier [Symbol, Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params::ServiceTier] Determines whether to use priority capacity (if available) or standard capacity
|
375
408
|
#
|
376
409
|
# @param stop_sequences [Array<String>] Custom text sequences that will cause the model to stop generating.
|
377
410
|
#
|
378
411
|
# @param stream [Boolean] Whether to incrementally stream the response using server-sent events.
|
379
412
|
#
|
380
|
-
# @param system_ [String, Array<Anthropic::Beta::BetaTextBlockParam>] System prompt.
|
413
|
+
# @param system_ [String, Array<Anthropic::Models::Beta::BetaTextBlockParam>] System prompt.
|
381
414
|
#
|
382
415
|
# @param temperature [Float] Amount of randomness injected into the response.
|
383
416
|
#
|
384
|
-
# @param thinking [Anthropic::Beta::BetaThinkingConfigEnabled, Anthropic::Beta::BetaThinkingConfigDisabled] Configuration for enabling Claude's extended thinking.
|
417
|
+
# @param thinking [Anthropic::Models::Beta::BetaThinkingConfigEnabled, Anthropic::Models::Beta::BetaThinkingConfigDisabled] Configuration for enabling Claude's extended thinking.
|
385
418
|
#
|
386
|
-
# @param tool_choice [Anthropic::Beta::BetaToolChoiceAuto, Anthropic::Beta::BetaToolChoiceAny, Anthropic::Beta::BetaToolChoiceTool, Anthropic::Beta::BetaToolChoiceNone] How the model should use the provided tools. The model can use a specific tool,
|
419
|
+
# @param tool_choice [Anthropic::Models::Beta::BetaToolChoiceAuto, Anthropic::Models::Beta::BetaToolChoiceAny, Anthropic::Models::Beta::BetaToolChoiceTool, Anthropic::Models::Beta::BetaToolChoiceNone] How the model should use the provided tools. The model can use a specific tool,
|
387
420
|
#
|
388
|
-
# @param tools [Array<Anthropic::Beta::BetaTool, Anthropic::Beta::BetaToolComputerUse20241022, Anthropic::Beta::BetaToolBash20241022, Anthropic::Beta::BetaToolTextEditor20241022, Anthropic::Beta::BetaToolComputerUse20250124, Anthropic::Beta::BetaToolBash20250124, Anthropic::Beta::BetaToolTextEditor20250124, Anthropic::Beta::BetaWebSearchTool20250305>] Definitions of tools that the model may use.
|
421
|
+
# @param tools [Array<Anthropic::Models::Beta::BetaTool, Anthropic::Models::Beta::BetaToolComputerUse20241022, Anthropic::Models::Beta::BetaToolBash20241022, Anthropic::Models::Beta::BetaToolTextEditor20241022, Anthropic::Models::Beta::BetaToolComputerUse20250124, Anthropic::Models::Beta::BetaToolBash20250124, Anthropic::Models::Beta::BetaToolTextEditor20250124, Anthropic::Models::Beta::BetaToolTextEditor20250429, Anthropic::Models::Beta::BetaWebSearchTool20250305, Anthropic::Models::Beta::BetaCodeExecutionTool20250522>] Definitions of tools that the model may use.
|
389
422
|
#
|
390
423
|
# @param top_k [Integer] Only sample from the top K options for each subsequent token.
|
391
424
|
#
|
392
425
|
# @param top_p [Float] Use nucleus sampling.
|
393
426
|
|
427
|
+
# Determines whether to use priority capacity (if available) or standard capacity
|
428
|
+
# for this request.
|
429
|
+
#
|
430
|
+
# Anthropic offers different levels of service for your API requests. See
|
431
|
+
# [service-tiers](https://docs.anthropic.com/en/api/service-tiers) for details.
|
432
|
+
#
|
433
|
+
# @see Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params#service_tier
|
434
|
+
module ServiceTier
|
435
|
+
extend Anthropic::Internal::Type::Enum
|
436
|
+
|
437
|
+
AUTO = :auto
|
438
|
+
STANDARD_ONLY = :standard_only
|
439
|
+
|
440
|
+
# @!method self.values
|
441
|
+
# @return [Array<Symbol>]
|
442
|
+
end
|
443
|
+
|
394
444
|
# System prompt.
|
395
445
|
#
|
396
446
|
# A system prompt is a way of providing context and instructions to Claude, such
|
397
447
|
# as specifying a particular goal or role. See our
|
398
448
|
# [guide to system prompts](https://docs.anthropic.com/en/docs/system-prompts).
|
399
449
|
#
|
400
|
-
# @see Anthropic::Beta::Messages::BatchCreateParams::Request::Params#system_
|
450
|
+
# @see Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params#system_
|
401
451
|
module System
|
402
452
|
extend Anthropic::Internal::Type::Union
|
403
453
|
|
404
454
|
variant String
|
405
455
|
|
406
|
-
variant -> {
|
407
|
-
Anthropic::Beta::Messages::BatchCreateParams::Request::Params::System::BetaTextBlockParamArray
|
408
|
-
}
|
456
|
+
variant -> { Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params::System::BetaTextBlockParamArray }
|
409
457
|
|
410
458
|
# @!method self.variants
|
411
|
-
# @return [Array(String, Array<Anthropic::Beta::BetaTextBlockParam>)]
|
459
|
+
# @return [Array(String, Array<Anthropic::Models::Beta::BetaTextBlockParam>)]
|
412
460
|
|
413
461
|
# @type [Anthropic::Internal::Type::Converter]
|
414
462
|
BetaTextBlockParamArray = Anthropic::Internal::Type::ArrayOf[-> {
|
@@ -12,11 +12,11 @@ module Anthropic
|
|
12
12
|
# @!attribute betas
|
13
13
|
# Optional header to specify the beta version(s) you want to use.
|
14
14
|
#
|
15
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
15
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
16
16
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
17
17
|
|
18
18
|
# @!method initialize(betas: nil, request_options: {})
|
19
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
19
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
20
20
|
#
|
21
21
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
22
22
|
end
|
@@ -34,7 +34,7 @@ module Anthropic
|
|
34
34
|
# @!attribute betas
|
35
35
|
# Optional header to specify the beta version(s) you want to use.
|
36
36
|
#
|
37
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
37
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
38
38
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
39
39
|
|
40
40
|
# @!method initialize(after_id: nil, before_id: nil, limit: nil, betas: nil, request_options: {})
|
@@ -47,7 +47,7 @@ module Anthropic
|
|
47
47
|
#
|
48
48
|
# @param limit [Integer] Number of items to return per page.
|
49
49
|
#
|
50
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
50
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
51
51
|
#
|
52
52
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
53
53
|
end
|
@@ -12,11 +12,11 @@ module Anthropic
|
|
12
12
|
# @!attribute betas
|
13
13
|
# Optional header to specify the beta version(s) you want to use.
|
14
14
|
#
|
15
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
15
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
16
16
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
17
17
|
|
18
18
|
# @!method initialize(betas: nil, request_options: {})
|
19
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
19
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
20
20
|
#
|
21
21
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
22
22
|
end
|
@@ -12,11 +12,11 @@ module Anthropic
|
|
12
12
|
# @!attribute betas
|
13
13
|
# Optional header to specify the beta version(s) you want to use.
|
14
14
|
#
|
15
|
-
# @return [Array<String, Symbol, Anthropic::AnthropicBeta>, nil]
|
15
|
+
# @return [Array<String, Symbol, Anthropic::Models::AnthropicBeta>, nil]
|
16
16
|
optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] }
|
17
17
|
|
18
18
|
# @!method initialize(betas: nil, request_options: {})
|
19
|
-
# @param betas [Array<String, Symbol, Anthropic::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
19
|
+
# @param betas [Array<String, Symbol, Anthropic::Models::AnthropicBeta>] Optional header to specify the beta version(s) you want to use.
|
20
20
|
#
|
21
21
|
# @param request_options [Anthropic::RequestOptions, Hash{Symbol=>Object}]
|
22
22
|
end
|
@@ -22,7 +22,7 @@ module Anthropic
|
|
22
22
|
|
23
23
|
# @!method initialize(id:, type: :message_batch_deleted)
|
24
24
|
# Some parameter documentations has been truncated, see
|
25
|
-
# {Anthropic::Beta::Messages::BetaDeletedMessageBatch} for more details.
|
25
|
+
# {Anthropic::Models::Beta::Messages::BetaDeletedMessageBatch} for more details.
|
26
26
|
#
|
27
27
|
# @param id [String] ID of the Message Batch.
|
28
28
|
#
|
@@ -55,7 +55,7 @@ module Anthropic
|
|
55
55
|
# @!attribute processing_status
|
56
56
|
# Processing status of the Message Batch.
|
57
57
|
#
|
58
|
-
# @return [Symbol, Anthropic::Beta::Messages::BetaMessageBatch::ProcessingStatus]
|
58
|
+
# @return [Symbol, Anthropic::Models::Beta::Messages::BetaMessageBatch::ProcessingStatus]
|
59
59
|
required :processing_status,
|
60
60
|
enum: -> {
|
61
61
|
Anthropic::Beta::Messages::BetaMessageBatch::ProcessingStatus
|
@@ -68,7 +68,7 @@ module Anthropic
|
|
68
68
|
# processing of the entire batch ends. The sum of all values always matches the
|
69
69
|
# total number of requests in the batch.
|
70
70
|
#
|
71
|
-
# @return [Anthropic::Beta::Messages::BetaMessageBatchRequestCounts]
|
71
|
+
# @return [Anthropic::Models::Beta::Messages::BetaMessageBatchRequestCounts]
|
72
72
|
required :request_counts, -> { Anthropic::Beta::Messages::BetaMessageBatchRequestCounts }
|
73
73
|
|
74
74
|
# @!attribute results_url
|
@@ -91,7 +91,7 @@ module Anthropic
|
|
91
91
|
|
92
92
|
# @!method initialize(id:, archived_at:, cancel_initiated_at:, created_at:, ended_at:, expires_at:, processing_status:, request_counts:, results_url:, type: :message_batch)
|
93
93
|
# Some parameter documentations has been truncated, see
|
94
|
-
# {Anthropic::Beta::Messages::BetaMessageBatch} for more details.
|
94
|
+
# {Anthropic::Models::Beta::Messages::BetaMessageBatch} for more details.
|
95
95
|
#
|
96
96
|
# @param id [String] Unique object identifier.
|
97
97
|
#
|
@@ -105,9 +105,9 @@ module Anthropic
|
|
105
105
|
#
|
106
106
|
# @param expires_at [Time] RFC 3339 datetime string representing the time at which the Message Batch will e
|
107
107
|
#
|
108
|
-
# @param processing_status [Symbol, Anthropic::Beta::Messages::BetaMessageBatch::ProcessingStatus] Processing status of the Message Batch.
|
108
|
+
# @param processing_status [Symbol, Anthropic::Models::Beta::Messages::BetaMessageBatch::ProcessingStatus] Processing status of the Message Batch.
|
109
109
|
#
|
110
|
-
# @param request_counts [Anthropic::Beta::Messages::BetaMessageBatchRequestCounts] Tallies requests within the Message Batch, categorized by their status.
|
110
|
+
# @param request_counts [Anthropic::Models::Beta::Messages::BetaMessageBatchRequestCounts] Tallies requests within the Message Batch, categorized by their status.
|
111
111
|
#
|
112
112
|
# @param results_url [String, nil] URL to a `.jsonl` file containing the results of the Message Batch requests. Spe
|
113
113
|
#
|
@@ -115,7 +115,7 @@ module Anthropic
|
|
115
115
|
|
116
116
|
# Processing status of the Message Batch.
|
117
117
|
#
|
118
|
-
# @see Anthropic::Beta::Messages::BetaMessageBatch#processing_status
|
118
|
+
# @see Anthropic::Models::Beta::Messages::BetaMessageBatch#processing_status
|
119
119
|
module ProcessingStatus
|
120
120
|
extend Anthropic::Internal::Type::Enum
|
121
121
|
|
@@ -7,7 +7,7 @@ module Anthropic
|
|
7
7
|
class BetaMessageBatchErroredResult < Anthropic::Internal::Type::BaseModel
|
8
8
|
# @!attribute error
|
9
9
|
#
|
10
|
-
# @return [Anthropic::BetaErrorResponse]
|
10
|
+
# @return [Anthropic::Models::BetaErrorResponse]
|
11
11
|
required :error, -> { Anthropic::BetaErrorResponse }
|
12
12
|
|
13
13
|
# @!attribute type
|
@@ -16,7 +16,7 @@ module Anthropic
|
|
16
16
|
required :type, const: :errored
|
17
17
|
|
18
18
|
# @!method initialize(error:, type: :errored)
|
19
|
-
# @param error [Anthropic::BetaErrorResponse]
|
19
|
+
# @param error [Anthropic::Models::BetaErrorResponse]
|
20
20
|
# @param type [Symbol, :errored]
|
21
21
|
end
|
22
22
|
end
|
@@ -22,12 +22,12 @@ module Anthropic
|
|
22
22
|
# processing failed, or the reason why processing was not attempted, such as
|
23
23
|
# cancellation or expiration.
|
24
24
|
#
|
25
|
-
# @return [Anthropic::Beta::Messages::BetaMessageBatchSucceededResult, Anthropic::Beta::Messages::BetaMessageBatchErroredResult, Anthropic::Beta::Messages::BetaMessageBatchCanceledResult, Anthropic::Beta::Messages::BetaMessageBatchExpiredResult]
|
25
|
+
# @return [Anthropic::Models::Beta::Messages::BetaMessageBatchSucceededResult, Anthropic::Models::Beta::Messages::BetaMessageBatchErroredResult, Anthropic::Models::Beta::Messages::BetaMessageBatchCanceledResult, Anthropic::Models::Beta::Messages::BetaMessageBatchExpiredResult]
|
26
26
|
required :result, union: -> { Anthropic::Beta::Messages::BetaMessageBatchResult }
|
27
27
|
|
28
28
|
# @!method initialize(custom_id:, result:)
|
29
29
|
# Some parameter documentations has been truncated, see
|
30
|
-
# {Anthropic::Beta::Messages::BetaMessageBatchIndividualResponse} for more
|
30
|
+
# {Anthropic::Models::Beta::Messages::BetaMessageBatchIndividualResponse} for more
|
31
31
|
# details.
|
32
32
|
#
|
33
33
|
# This is a single line in the response `.jsonl` file and does not represent the
|
@@ -35,7 +35,7 @@ module Anthropic
|
|
35
35
|
#
|
36
36
|
# @param custom_id [String] Developer-provided ID created for each request in a Message Batch. Useful for ma
|
37
37
|
#
|
38
|
-
# @param result [Anthropic::Beta::Messages::BetaMessageBatchSucceededResult, Anthropic::Beta::Messages::BetaMessageBatchErroredResult, Anthropic::Beta::Messages::BetaMessageBatchCanceledResult, Anthropic::Beta::Messages::BetaMessageBatchExpiredResult] Processing result for this request.
|
38
|
+
# @param result [Anthropic::Models::Beta::Messages::BetaMessageBatchSucceededResult, Anthropic::Models::Beta::Messages::BetaMessageBatchErroredResult, Anthropic::Models::Beta::Messages::BetaMessageBatchCanceledResult, Anthropic::Models::Beta::Messages::BetaMessageBatchExpiredResult] Processing result for this request.
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -45,7 +45,8 @@ module Anthropic
|
|
45
45
|
|
46
46
|
# @!method initialize(canceled:, errored:, expired:, processing:, succeeded:)
|
47
47
|
# Some parameter documentations has been truncated, see
|
48
|
-
# {Anthropic::Beta::Messages::BetaMessageBatchRequestCounts} for more
|
48
|
+
# {Anthropic::Models::Beta::Messages::BetaMessageBatchRequestCounts} for more
|
49
|
+
# details.
|
49
50
|
#
|
50
51
|
# @param canceled [Integer] Number of requests in the Message Batch that have been canceled.
|
51
52
|
#
|
@@ -23,7 +23,7 @@ module Anthropic
|
|
23
23
|
variant :expired, -> { Anthropic::Beta::Messages::BetaMessageBatchExpiredResult }
|
24
24
|
|
25
25
|
# @!method self.variants
|
26
|
-
# @return [Array(Anthropic::Beta::Messages::BetaMessageBatchSucceededResult, Anthropic::Beta::Messages::BetaMessageBatchErroredResult, Anthropic::Beta::Messages::BetaMessageBatchCanceledResult, Anthropic::Beta::Messages::BetaMessageBatchExpiredResult)]
|
26
|
+
# @return [Array(Anthropic::Models::Beta::Messages::BetaMessageBatchSucceededResult, Anthropic::Models::Beta::Messages::BetaMessageBatchErroredResult, Anthropic::Models::Beta::Messages::BetaMessageBatchCanceledResult, Anthropic::Models::Beta::Messages::BetaMessageBatchExpiredResult)]
|
27
27
|
end
|
28
28
|
end
|
29
29
|
end
|
@@ -7,7 +7,7 @@ module Anthropic
|
|
7
7
|
class BetaMessageBatchSucceededResult < Anthropic::Internal::Type::BaseModel
|
8
8
|
# @!attribute message
|
9
9
|
#
|
10
|
-
# @return [Anthropic::Beta::BetaMessage]
|
10
|
+
# @return [Anthropic::Models::Beta::BetaMessage]
|
11
11
|
required :message, -> { Anthropic::Beta::BetaMessage }
|
12
12
|
|
13
13
|
# @!attribute type
|
@@ -16,7 +16,7 @@ module Anthropic
|
|
16
16
|
required :type, const: :succeeded
|
17
17
|
|
18
18
|
# @!method initialize(message:, type: :succeeded)
|
19
|
-
# @param message [Anthropic::Beta::BetaMessage]
|
19
|
+
# @param message [Anthropic::Models::Beta::BetaMessage]
|
20
20
|
# @param type [Symbol, :succeeded]
|
21
21
|
end
|
22
22
|
end
|