anthropic 0.4.1 → 1.0.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/.ignore +2 -0
- data/CHANGELOG.md +636 -29
- data/README.md +251 -285
- data/SECURITY.md +27 -0
- data/lib/anthropic/bedrock.rb +5 -0
- data/lib/anthropic/client.rb +90 -97
- data/lib/anthropic/errors.rb +192 -0
- data/lib/anthropic/file_part.rb +55 -0
- data/lib/anthropic/helpers/bedrock/client.rb +259 -0
- data/lib/anthropic/helpers/vertex/client.rb +218 -0
- data/lib/anthropic/internal/jsonl_stream.rb +26 -0
- data/lib/anthropic/internal/page.rb +99 -0
- data/lib/anthropic/internal/stream.rb +58 -0
- data/lib/anthropic/internal/transport/base_client.rb +558 -0
- data/lib/anthropic/internal/transport/pooled_net_requester.rb +209 -0
- data/lib/anthropic/internal/type/array_of.rb +162 -0
- data/lib/anthropic/internal/type/base_model.rb +481 -0
- data/lib/anthropic/internal/type/base_page.rb +55 -0
- data/lib/anthropic/internal/type/base_stream.rb +90 -0
- data/lib/anthropic/internal/type/boolean.rb +71 -0
- data/lib/anthropic/internal/type/converter.rb +292 -0
- data/lib/anthropic/internal/type/enum.rb +145 -0
- data/lib/anthropic/internal/type/file_input.rb +103 -0
- data/lib/anthropic/internal/type/hash_of.rb +182 -0
- data/lib/anthropic/internal/type/request_parameters.rb +42 -0
- data/lib/anthropic/internal/type/union.rb +252 -0
- data/lib/anthropic/internal/type/unknown.rb +75 -0
- data/lib/anthropic/internal/util.rb +907 -0
- data/lib/anthropic/internal.rb +20 -0
- data/lib/anthropic/models/anthropic_beta.rb +47 -0
- data/lib/anthropic/models/api_error_object.rb +21 -0
- data/lib/anthropic/models/authentication_error.rb +21 -0
- data/lib/anthropic/models/base64_image_source.rb +40 -0
- data/lib/anthropic/models/base64_pdf_source.rb +27 -0
- data/lib/anthropic/models/beta/beta_base64_image_source.rb +44 -0
- data/lib/anthropic/models/beta/beta_base64_pdf_block.rb +73 -0
- data/lib/anthropic/models/beta/beta_base64_pdf_source.rb +31 -0
- data/lib/anthropic/models/beta/beta_cache_control_ephemeral.rb +19 -0
- data/lib/anthropic/models/beta/beta_citation_char_location.rb +49 -0
- data/lib/anthropic/models/beta/beta_citation_char_location_param.rb +49 -0
- data/lib/anthropic/models/beta/beta_citation_content_block_location.rb +49 -0
- data/lib/anthropic/models/beta/beta_citation_content_block_location_param.rb +49 -0
- data/lib/anthropic/models/beta/beta_citation_page_location.rb +49 -0
- data/lib/anthropic/models/beta/beta_citation_page_location_param.rb +49 -0
- data/lib/anthropic/models/beta/beta_citation_web_search_result_location_param.rb +43 -0
- data/lib/anthropic/models/beta/beta_citations_config_param.rb +19 -0
- data/lib/anthropic/models/beta/beta_citations_delta.rb +43 -0
- data/lib/anthropic/models/beta/beta_citations_web_search_result_location.rb +43 -0
- data/lib/anthropic/models/beta/beta_content_block.rb +30 -0
- data/lib/anthropic/models/beta/beta_content_block_param.rb +36 -0
- data/lib/anthropic/models/beta/beta_content_block_source.rb +41 -0
- data/lib/anthropic/models/beta/beta_content_block_source_content.rb +22 -0
- data/lib/anthropic/models/beta/beta_image_block_param.rb +48 -0
- data/lib/anthropic/models/beta/beta_input_json_delta.rb +25 -0
- data/lib/anthropic/models/beta/beta_message.rb +148 -0
- data/lib/anthropic/models/beta/beta_message_delta_usage.rb +52 -0
- data/lib/anthropic/models/beta/beta_message_param.rb +52 -0
- data/lib/anthropic/models/beta/beta_message_tokens_count.rb +25 -0
- data/lib/anthropic/models/beta/beta_metadata.rb +27 -0
- data/lib/anthropic/models/beta/beta_model_info.rb +51 -0
- data/lib/anthropic/models/beta/beta_plain_text_source.rb +31 -0
- data/lib/anthropic/models/beta/beta_raw_content_block_delta.rb +28 -0
- data/lib/anthropic/models/beta/beta_raw_content_block_delta_event.rb +31 -0
- data/lib/anthropic/models/beta/beta_raw_content_block_start_event.rb +53 -0
- data/lib/anthropic/models/beta/beta_raw_content_block_stop_event.rb +25 -0
- data/lib/anthropic/models/beta/beta_raw_message_delta_event.rb +68 -0
- data/lib/anthropic/models/beta/beta_raw_message_start_event.rb +25 -0
- data/lib/anthropic/models/beta/beta_raw_message_stop_event.rb +19 -0
- data/lib/anthropic/models/beta/beta_raw_message_stream_event.rb +30 -0
- data/lib/anthropic/models/beta/beta_redacted_thinking_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_redacted_thinking_block_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_server_tool_usage.rb +20 -0
- data/lib/anthropic/models/beta/beta_server_tool_use_block.rb +37 -0
- data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +48 -0
- data/lib/anthropic/models/beta/beta_signature_delta.rb +25 -0
- data/lib/anthropic/models/beta/beta_stop_reason.rb +23 -0
- data/lib/anthropic/models/beta/beta_text_block.rb +43 -0
- data/lib/anthropic/models/beta/beta_text_block_param.rb +43 -0
- data/lib/anthropic/models/beta/beta_text_citation.rb +26 -0
- data/lib/anthropic/models/beta/beta_text_citation_param.rb +26 -0
- data/lib/anthropic/models/beta/beta_text_delta.rb +25 -0
- data/lib/anthropic/models/beta/beta_thinking_block.rb +31 -0
- data/lib/anthropic/models/beta/beta_thinking_block_param.rb +31 -0
- data/lib/anthropic/models/beta/beta_thinking_config_disabled.rb +19 -0
- data/lib/anthropic/models/beta/beta_thinking_config_enabled.rb +38 -0
- data/lib/anthropic/models/beta/beta_thinking_config_param.rb +31 -0
- data/lib/anthropic/models/beta/beta_thinking_delta.rb +25 -0
- data/lib/anthropic/models/beta/beta_tool.rb +96 -0
- data/lib/anthropic/models/beta/beta_tool_bash_20241022.rb +40 -0
- data/lib/anthropic/models/beta/beta_tool_bash_20250124.rb +40 -0
- data/lib/anthropic/models/beta/beta_tool_choice.rb +32 -0
- data/lib/anthropic/models/beta/beta_tool_choice_any.rb +35 -0
- data/lib/anthropic/models/beta/beta_tool_choice_auto.rb +35 -0
- data/lib/anthropic/models/beta/beta_tool_choice_none.rb +21 -0
- data/lib/anthropic/models/beta/beta_tool_choice_tool.rb +43 -0
- data/lib/anthropic/models/beta/beta_tool_computer_use_20241022.rb +64 -0
- data/lib/anthropic/models/beta/beta_tool_computer_use_20250124.rb +64 -0
- data/lib/anthropic/models/beta/beta_tool_result_block_param.rb +79 -0
- data/lib/anthropic/models/beta/beta_tool_text_editor_20241022.rb +40 -0
- data/lib/anthropic/models/beta/beta_tool_text_editor_20250124.rb +40 -0
- data/lib/anthropic/models/beta/beta_tool_union.rb +32 -0
- data/lib/anthropic/models/beta/beta_tool_use_block.rb +37 -0
- data/lib/anthropic/models/beta/beta_tool_use_block_param.rb +48 -0
- data/lib/anthropic/models/beta/beta_url_image_source.rb +25 -0
- data/lib/anthropic/models/beta/beta_url_pdf_source.rb +25 -0
- data/lib/anthropic/models/beta/beta_usage.rb +52 -0
- data/lib/anthropic/models/beta/beta_web_search_result_block.rb +43 -0
- data/lib/anthropic/models/beta/beta_web_search_result_block_param.rb +43 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_20250305.rb +126 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_request_error.rb +39 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block.rb +31 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block_content.rb +24 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block_param.rb +41 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rb +26 -0
- data/lib/anthropic/models/beta/beta_web_search_tool_result_error.rb +39 -0
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +292 -0
- data/lib/anthropic/models/beta/message_create_params.rb +351 -0
- data/lib/anthropic/models/beta/messages/batch_cancel_params.rb +26 -0
- data/lib/anthropic/models/beta/messages/batch_create_params.rb +424 -0
- data/lib/anthropic/models/beta/messages/batch_delete_params.rb +26 -0
- data/lib/anthropic/models/beta/messages/batch_list_params.rb +57 -0
- data/lib/anthropic/models/beta/messages/batch_results_params.rb +26 -0
- data/lib/anthropic/models/beta/messages/batch_retrieve_params.rb +26 -0
- data/lib/anthropic/models/beta/messages/beta_deleted_message_batch.rb +34 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch.rb +133 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_canceled_result.rb +19 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_errored_result.rb +25 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_expired_result.rb +19 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_individual_response.rb +43 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb +63 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_result.rb +31 -0
- data/lib/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rb +25 -0
- data/lib/anthropic/models/beta/model_list_params.rb +55 -0
- data/lib/anthropic/models/beta/model_retrieve_params.rb +24 -0
- data/lib/anthropic/models/beta_api_error.rb +21 -0
- data/lib/anthropic/models/beta_authentication_error.rb +21 -0
- data/lib/anthropic/models/beta_billing_error.rb +21 -0
- data/lib/anthropic/models/beta_error.rb +32 -0
- data/lib/anthropic/models/beta_error_response.rb +21 -0
- data/lib/anthropic/models/beta_gateway_timeout_error.rb +21 -0
- data/lib/anthropic/models/beta_invalid_request_error.rb +21 -0
- data/lib/anthropic/models/beta_not_found_error.rb +21 -0
- data/lib/anthropic/models/beta_overloaded_error.rb +21 -0
- data/lib/anthropic/models/beta_permission_error.rb +21 -0
- data/lib/anthropic/models/beta_rate_limit_error.rb +21 -0
- data/lib/anthropic/models/billing_error.rb +21 -0
- data/lib/anthropic/models/cache_control_ephemeral.rb +15 -0
- data/lib/anthropic/models/citation_char_location.rb +45 -0
- data/lib/anthropic/models/citation_char_location_param.rb +45 -0
- data/lib/anthropic/models/citation_content_block_location.rb +45 -0
- data/lib/anthropic/models/citation_content_block_location_param.rb +45 -0
- data/lib/anthropic/models/citation_page_location.rb +45 -0
- data/lib/anthropic/models/citation_page_location_param.rb +45 -0
- data/lib/anthropic/models/citation_web_search_result_location_param.rb +39 -0
- data/lib/anthropic/models/citations_config_param.rb +15 -0
- data/lib/anthropic/models/citations_delta.rb +39 -0
- data/lib/anthropic/models/citations_web_search_result_location.rb +39 -0
- data/lib/anthropic/models/completion.rb +66 -0
- data/lib/anthropic/models/completion_create_params.rb +133 -0
- data/lib/anthropic/models/content_block.rb +26 -0
- data/lib/anthropic/models/content_block_param.rb +32 -0
- data/lib/anthropic/models/content_block_source.rb +37 -0
- data/lib/anthropic/models/content_block_source_content.rb +18 -0
- data/lib/anthropic/models/document_block_param.rb +69 -0
- data/lib/anthropic/models/error_object.rb +32 -0
- data/lib/anthropic/models/error_response.rb +21 -0
- data/lib/anthropic/models/gateway_timeout_error.rb +21 -0
- data/lib/anthropic/models/image_block_param.rb +44 -0
- data/lib/anthropic/models/input_json_delta.rb +21 -0
- data/lib/anthropic/models/invalid_request_error.rb +21 -0
- data/lib/anthropic/models/message.rb +144 -0
- data/lib/anthropic/models/message_count_tokens_params.rb +254 -0
- data/lib/anthropic/models/message_count_tokens_tool.rb +20 -0
- data/lib/anthropic/models/message_create_params.rb +339 -0
- data/lib/anthropic/models/message_delta_usage.rb +48 -0
- data/lib/anthropic/models/message_param.rb +49 -0
- data/lib/anthropic/models/message_tokens_count.rb +21 -0
- data/lib/anthropic/models/messages/batch_cancel_params.rb +16 -0
- data/lib/anthropic/models/messages/batch_create_params.rb +406 -0
- data/lib/anthropic/models/messages/batch_delete_params.rb +16 -0
- data/lib/anthropic/models/messages/batch_list_params.rb +47 -0
- data/lib/anthropic/models/messages/batch_results_params.rb +16 -0
- data/lib/anthropic/models/messages/batch_retrieve_params.rb +16 -0
- data/lib/anthropic/models/messages/deleted_message_batch.rb +32 -0
- data/lib/anthropic/models/messages/message_batch.rb +130 -0
- data/lib/anthropic/models/messages/message_batch_canceled_result.rb +19 -0
- data/lib/anthropic/models/messages/message_batch_errored_result.rb +25 -0
- data/lib/anthropic/models/messages/message_batch_expired_result.rb +19 -0
- data/lib/anthropic/models/messages/message_batch_individual_response.rb +42 -0
- data/lib/anthropic/models/messages/message_batch_request_counts.rb +63 -0
- data/lib/anthropic/models/messages/message_batch_result.rb +31 -0
- data/lib/anthropic/models/messages/message_batch_succeeded_result.rb +25 -0
- data/lib/anthropic/models/metadata.rb +23 -0
- data/lib/anthropic/models/model.rb +96 -0
- data/lib/anthropic/models/model_info.rb +47 -0
- data/lib/anthropic/models/model_list_params.rb +53 -0
- data/lib/anthropic/models/model_retrieve_params.rb +22 -0
- data/lib/anthropic/models/not_found_error.rb +21 -0
- data/lib/anthropic/models/overloaded_error.rb +21 -0
- data/lib/anthropic/models/permission_error.rb +21 -0
- data/lib/anthropic/models/plain_text_source.rb +27 -0
- data/lib/anthropic/models/rate_limit_error.rb +21 -0
- data/lib/anthropic/models/raw_content_block_delta.rb +24 -0
- data/lib/anthropic/models/raw_content_block_delta_event.rb +27 -0
- data/lib/anthropic/models/raw_content_block_start_event.rb +49 -0
- data/lib/anthropic/models/raw_content_block_stop_event.rb +21 -0
- data/lib/anthropic/models/raw_message_delta_event.rb +64 -0
- data/lib/anthropic/models/raw_message_start_event.rb +21 -0
- data/lib/anthropic/models/raw_message_stop_event.rb +15 -0
- data/lib/anthropic/models/raw_message_stream_event.rb +26 -0
- data/lib/anthropic/models/redacted_thinking_block.rb +21 -0
- data/lib/anthropic/models/redacted_thinking_block_param.rb +21 -0
- data/lib/anthropic/models/server_tool_usage.rb +16 -0
- data/lib/anthropic/models/server_tool_use_block.rb +33 -0
- data/lib/anthropic/models/server_tool_use_block_param.rb +44 -0
- data/lib/anthropic/models/signature_delta.rb +21 -0
- data/lib/anthropic/models/stop_reason.rb +19 -0
- data/lib/anthropic/models/text_block.rb +41 -0
- data/lib/anthropic/models/text_block_param.rb +39 -0
- data/lib/anthropic/models/text_citation.rb +22 -0
- data/lib/anthropic/models/text_citation_param.rb +22 -0
- data/lib/anthropic/models/text_delta.rb +21 -0
- data/lib/anthropic/models/thinking_block.rb +27 -0
- data/lib/anthropic/models/thinking_block_param.rb +27 -0
- data/lib/anthropic/models/thinking_config_disabled.rb +15 -0
- data/lib/anthropic/models/thinking_config_enabled.rb +34 -0
- data/lib/anthropic/models/thinking_config_param.rb +27 -0
- data/lib/anthropic/models/thinking_delta.rb +21 -0
- data/lib/anthropic/models/tool.rb +92 -0
- data/lib/anthropic/models/tool_bash_20250124.rb +36 -0
- data/lib/anthropic/models/tool_choice.rb +28 -0
- data/lib/anthropic/models/tool_choice_any.rb +31 -0
- data/lib/anthropic/models/tool_choice_auto.rb +31 -0
- data/lib/anthropic/models/tool_choice_none.rb +17 -0
- data/lib/anthropic/models/tool_choice_tool.rb +39 -0
- data/lib/anthropic/models/tool_result_block_param.rb +73 -0
- data/lib/anthropic/models/tool_text_editor_20250124.rb +36 -0
- data/lib/anthropic/models/tool_union.rb +20 -0
- data/lib/anthropic/models/tool_use_block.rb +33 -0
- data/lib/anthropic/models/tool_use_block_param.rb +44 -0
- data/lib/anthropic/models/url_image_source.rb +21 -0
- data/lib/anthropic/models/url_pdf_source.rb +21 -0
- data/lib/anthropic/models/usage.rb +48 -0
- data/lib/anthropic/models/web_search_result_block.rb +39 -0
- data/lib/anthropic/models/web_search_result_block_param.rb +39 -0
- data/lib/anthropic/models/web_search_tool_20250305.rb +122 -0
- data/lib/anthropic/models/web_search_tool_request_error.rb +35 -0
- data/lib/anthropic/models/web_search_tool_result_block.rb +27 -0
- data/lib/anthropic/models/web_search_tool_result_block_content.rb +19 -0
- data/lib/anthropic/models/web_search_tool_result_block_param.rb +37 -0
- data/lib/anthropic/models/web_search_tool_result_block_param_content.rb +20 -0
- data/lib/anthropic/models/web_search_tool_result_error.rb +35 -0
- data/lib/anthropic/models.rb +261 -0
- data/lib/anthropic/request_options.rb +77 -0
- data/lib/anthropic/resources/beta/messages/batches.rb +218 -0
- data/lib/anthropic/resources/beta/messages.rb +200 -0
- data/lib/anthropic/resources/beta/models.rb +80 -0
- data/lib/anthropic/resources/beta.rb +22 -0
- data/lib/anthropic/resources/completions.rb +132 -0
- data/lib/anthropic/resources/messages/batches.rb +193 -0
- data/lib/anthropic/resources/messages.rb +184 -0
- data/lib/anthropic/resources/models.rb +78 -0
- data/lib/anthropic/version.rb +3 -1
- data/lib/anthropic/vertex.rb +5 -0
- data/lib/anthropic.rb +286 -68
- data/manifest.yaml +15 -0
- data/rbi/anthropic/bedrock.rbi +5 -0
- data/rbi/anthropic/client.rbi +74 -0
- data/rbi/anthropic/errors.rbi +162 -0
- data/rbi/anthropic/file_part.rbi +37 -0
- data/rbi/anthropic/helpers/bedrock/client.rbi +82 -0
- data/rbi/anthropic/helpers/vertex/client.rbi +58 -0
- data/rbi/anthropic/internal/jsonl_stream.rbi +17 -0
- data/rbi/anthropic/internal/page.rbi +28 -0
- data/rbi/anthropic/internal/stream.rbi +20 -0
- data/rbi/anthropic/internal/transport/base_client.rbi +310 -0
- data/rbi/anthropic/internal/transport/pooled_net_requester.rbi +79 -0
- data/rbi/anthropic/internal/type/array_of.rbi +104 -0
- data/rbi/anthropic/internal/type/base_model.rbi +304 -0
- data/rbi/anthropic/internal/type/base_page.rbi +42 -0
- data/rbi/anthropic/internal/type/base_stream.rbi +68 -0
- data/rbi/anthropic/internal/type/boolean.rbi +56 -0
- data/rbi/anthropic/internal/type/converter.rbi +162 -0
- data/rbi/anthropic/internal/type/enum.rbi +82 -0
- data/rbi/anthropic/internal/type/file_input.rbi +59 -0
- data/rbi/anthropic/internal/type/hash_of.rbi +104 -0
- data/rbi/anthropic/internal/type/request_parameters.rbi +29 -0
- data/rbi/anthropic/internal/type/union.rbi +116 -0
- data/rbi/anthropic/internal/type/unknown.rbi +56 -0
- data/rbi/anthropic/internal/util.rbi +485 -0
- data/rbi/anthropic/internal.rbi +18 -0
- data/rbi/anthropic/models/anthropic_beta.rbi +54 -0
- data/rbi/anthropic/models/api_error_object.rbi +26 -0
- data/rbi/anthropic/models/authentication_error.rbi +26 -0
- data/rbi/anthropic/models/base64_image_source.rbi +82 -0
- data/rbi/anthropic/models/base64_pdf_source.rbi +35 -0
- data/rbi/anthropic/models/beta/beta_base64_image_source.rbi +95 -0
- data/rbi/anthropic/models/beta/beta_base64_pdf_block.rbi +134 -0
- data/rbi/anthropic/models/beta/beta_base64_pdf_source.rbi +42 -0
- data/rbi/anthropic/models/beta/beta_cache_control_ephemeral.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_citation_char_location.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_citation_char_location_param.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_citation_content_block_location.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_citation_content_block_location_param.rbi +73 -0
- data/rbi/anthropic/models/beta/beta_citation_page_location.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_citation_page_location_param.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_citation_web_search_result_location_param.rbi +67 -0
- data/rbi/anthropic/models/beta/beta_citations_config_param.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_citations_delta.rbi +73 -0
- data/rbi/anthropic/models/beta/beta_citations_web_search_result_location.rbi +67 -0
- data/rbi/anthropic/models/beta/beta_content_block.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_content_block_param.rbi +36 -0
- data/rbi/anthropic/models/beta/beta_content_block_source.rbi +80 -0
- data/rbi/anthropic/models/beta/beta_content_block_source_content.rbi +29 -0
- data/rbi/anthropic/models/beta/beta_image_block_param.rbi +101 -0
- data/rbi/anthropic/models/beta/beta_input_json_delta.rbi +35 -0
- data/rbi/anthropic/models/beta/beta_message.rbi +245 -0
- data/rbi/anthropic/models/beta/beta_message_delta_usage.rbi +85 -0
- data/rbi/anthropic/models/beta/beta_message_param.rbi +99 -0
- data/rbi/anthropic/models/beta/beta_message_tokens_count.rbi +36 -0
- data/rbi/anthropic/models/beta/beta_metadata.rbi +39 -0
- data/rbi/anthropic/models/beta/beta_model_info.rbi +66 -0
- data/rbi/anthropic/models/beta/beta_plain_text_source.rbi +42 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_delta.rbi +32 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_delta_event.rbi +57 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi +89 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_stop_event.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_raw_message_delta_event.rbi +135 -0
- data/rbi/anthropic/models/beta/beta_raw_message_start_event.rbi +45 -0
- data/rbi/anthropic/models/beta/beta_raw_message_stop_event.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_raw_message_stream_event.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_redacted_thinking_block.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_redacted_thinking_block_param.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_server_tool_usage.rbi +34 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +50 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +78 -0
- data/rbi/anthropic/models/beta/beta_signature_delta.rbi +35 -0
- data/rbi/anthropic/models/beta/beta_stop_reason.rbi +37 -0
- data/rbi/anthropic/models/beta/beta_text_block.rbi +78 -0
- data/rbi/anthropic/models/beta/beta_text_block_param.rbi +105 -0
- data/rbi/anthropic/models/beta/beta_text_citation.rbi +31 -0
- data/rbi/anthropic/models/beta/beta_text_citation_param.rbi +31 -0
- data/rbi/anthropic/models/beta/beta_text_delta.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_thinking_block.rbi +44 -0
- data/rbi/anthropic/models/beta/beta_thinking_block_param.rbi +44 -0
- data/rbi/anthropic/models/beta/beta_thinking_config_disabled.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_thinking_config_enabled.rbi +56 -0
- data/rbi/anthropic/models/beta/beta_thinking_config_param.rbi +38 -0
- data/rbi/anthropic/models/beta/beta_thinking_delta.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_tool.rbi +165 -0
- data/rbi/anthropic/models/beta/beta_tool_bash_20241022.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_tool_bash_20250124.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_tool_choice.rbi +31 -0
- data/rbi/anthropic/models/beta/beta_tool_choice_any.rbi +56 -0
- data/rbi/anthropic/models/beta/beta_tool_choice_auto.rbi +56 -0
- data/rbi/anthropic/models/beta/beta_tool_choice_none.rbi +31 -0
- data/rbi/anthropic/models/beta/beta_tool_choice_tool.rbi +68 -0
- data/rbi/anthropic/models/beta/beta_tool_computer_use_20241022.rbi +96 -0
- data/rbi/anthropic/models/beta/beta_tool_computer_use_20250124.rbi +96 -0
- data/rbi/anthropic/models/beta/beta_tool_result_block_param.rbi +152 -0
- data/rbi/anthropic/models/beta/beta_tool_text_editor_20241022.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_tool_text_editor_20250124.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_tool_union.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_tool_use_block.rbi +50 -0
- data/rbi/anthropic/models/beta/beta_tool_use_block_param.rbi +78 -0
- data/rbi/anthropic/models/beta/beta_url_image_source.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_url_pdf_source.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_usage.rbi +82 -0
- data/rbi/anthropic/models/beta/beta_web_search_result_block.rbi +66 -0
- data/rbi/anthropic/models/beta/beta_web_search_result_block_param.rbi +66 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_20250305.rbi +201 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_request_error.rbi +100 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_block.rbi +59 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_block_content.rbi +40 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_block_param.rbi +89 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rbi +40 -0
- data/rbi/anthropic/models/beta/beta_web_search_tool_result_error.rbi +100 -0
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +649 -0
- data/rbi/anthropic/models/beta/message_create_params.rbi +748 -0
- data/rbi/anthropic/models/beta/messages/batch_cancel_params.rbi +65 -0
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +897 -0
- data/rbi/anthropic/models/beta/messages/batch_delete_params.rbi +65 -0
- data/rbi/anthropic/models/beta/messages/batch_list_params.rbi +106 -0
- data/rbi/anthropic/models/beta/messages/batch_results_params.rbi +65 -0
- data/rbi/anthropic/models/beta/messages/batch_retrieve_params.rbi +65 -0
- data/rbi/anthropic/models/beta/messages/beta_deleted_message_batch.rbi +44 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch.rbi +214 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbi +30 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_errored_result.rbi +45 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_expired_result.rbi +30 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_individual_response.rbi +77 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_request_counts.rbi +92 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_result.rbi +38 -0
- data/rbi/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbi +45 -0
- data/rbi/anthropic/models/beta/model_list_params.rbi +103 -0
- data/rbi/anthropic/models/beta/model_retrieve_params.rbi +62 -0
- data/rbi/anthropic/models/beta_api_error.rbi +26 -0
- data/rbi/anthropic/models/beta_authentication_error.rbi +29 -0
- data/rbi/anthropic/models/beta_billing_error.rbi +26 -0
- data/rbi/anthropic/models/beta_error.rbi +28 -0
- data/rbi/anthropic/models/beta_error_response.rbi +46 -0
- data/rbi/anthropic/models/beta_gateway_timeout_error.rbi +29 -0
- data/rbi/anthropic/models/beta_invalid_request_error.rbi +29 -0
- data/rbi/anthropic/models/beta_not_found_error.rbi +26 -0
- data/rbi/anthropic/models/beta_overloaded_error.rbi +26 -0
- data/rbi/anthropic/models/beta_permission_error.rbi +26 -0
- data/rbi/anthropic/models/beta_rate_limit_error.rbi +26 -0
- data/rbi/anthropic/models/billing_error.rbi +26 -0
- data/rbi/anthropic/models/cache_control_ephemeral.rbi +23 -0
- data/rbi/anthropic/models/citation_char_location.rbi +65 -0
- data/rbi/anthropic/models/citation_char_location_param.rbi +68 -0
- data/rbi/anthropic/models/citation_content_block_location.rbi +68 -0
- data/rbi/anthropic/models/citation_content_block_location_param.rbi +68 -0
- data/rbi/anthropic/models/citation_page_location.rbi +65 -0
- data/rbi/anthropic/models/citation_page_location_param.rbi +68 -0
- data/rbi/anthropic/models/citation_web_search_result_location_param.rbi +62 -0
- data/rbi/anthropic/models/citations_config_param.rbi +26 -0
- data/rbi/anthropic/models/citations_delta.rbi +66 -0
- data/rbi/anthropic/models/citations_web_search_result_location.rbi +62 -0
- data/rbi/anthropic/models/completion.rbi +93 -0
- data/rbi/anthropic/models/completion_create_params.rbi +217 -0
- data/rbi/anthropic/models/content_block.rbi +25 -0
- data/rbi/anthropic/models/content_block_param.rbi +28 -0
- data/rbi/anthropic/models/content_block_source.rbi +66 -0
- data/rbi/anthropic/models/content_block_source_content.rbi +22 -0
- data/rbi/anthropic/models/document_block_param.rbi +120 -0
- data/rbi/anthropic/models/error_object.rbi +28 -0
- data/rbi/anthropic/models/error_response.rbi +46 -0
- data/rbi/anthropic/models/gateway_timeout_error.rbi +26 -0
- data/rbi/anthropic/models/image_block_param.rbi +80 -0
- data/rbi/anthropic/models/input_json_delta.rbi +28 -0
- data/rbi/anthropic/models/invalid_request_error.rbi +26 -0
- data/rbi/anthropic/models/message.rbi +236 -0
- data/rbi/anthropic/models/message_count_tokens_params.rbi +571 -0
- data/rbi/anthropic/models/message_count_tokens_tool.rbi +25 -0
- data/rbi/anthropic/models/message_create_params.rbi +697 -0
- data/rbi/anthropic/models/message_delta_usage.rbi +76 -0
- data/rbi/anthropic/models/message_param.rbi +81 -0
- data/rbi/anthropic/models/message_tokens_count.rbi +29 -0
- data/rbi/anthropic/models/messages/batch_cancel_params.rbi +32 -0
- data/rbi/anthropic/models/messages/batch_create_params.rbi +843 -0
- data/rbi/anthropic/models/messages/batch_delete_params.rbi +32 -0
- data/rbi/anthropic/models/messages/batch_list_params.rbi +81 -0
- data/rbi/anthropic/models/messages/batch_results_params.rbi +32 -0
- data/rbi/anthropic/models/messages/batch_retrieve_params.rbi +32 -0
- data/rbi/anthropic/models/messages/deleted_message_batch.rbi +42 -0
- data/rbi/anthropic/models/messages/message_batch.rbi +208 -0
- data/rbi/anthropic/models/messages/message_batch_canceled_result.rbi +30 -0
- data/rbi/anthropic/models/messages/message_batch_errored_result.rbi +42 -0
- data/rbi/anthropic/models/messages/message_batch_expired_result.rbi +30 -0
- data/rbi/anthropic/models/messages/message_batch_individual_response.rbi +74 -0
- data/rbi/anthropic/models/messages/message_batch_request_counts.rbi +92 -0
- data/rbi/anthropic/models/messages/message_batch_result.rbi +36 -0
- data/rbi/anthropic/models/messages/message_batch_succeeded_result.rbi +40 -0
- data/rbi/anthropic/models/metadata.rbi +35 -0
- data/rbi/anthropic/models/model.rbi +68 -0
- data/rbi/anthropic/models/model_info.rbi +62 -0
- data/rbi/anthropic/models/model_list_params.rbi +95 -0
- data/rbi/anthropic/models/model_retrieve_params.rbi +54 -0
- data/rbi/anthropic/models/not_found_error.rbi +26 -0
- data/rbi/anthropic/models/overloaded_error.rbi +26 -0
- data/rbi/anthropic/models/permission_error.rbi +26 -0
- data/rbi/anthropic/models/plain_text_source.rbi +35 -0
- data/rbi/anthropic/models/rate_limit_error.rbi +26 -0
- data/rbi/anthropic/models/raw_content_block_delta.rbi +26 -0
- data/rbi/anthropic/models/raw_content_block_delta_event.rbi +53 -0
- data/rbi/anthropic/models/raw_content_block_start_event.rbi +83 -0
- data/rbi/anthropic/models/raw_content_block_stop_event.rbi +29 -0
- data/rbi/anthropic/models/raw_message_delta_event.rbi +119 -0
- data/rbi/anthropic/models/raw_message_start_event.rbi +33 -0
- data/rbi/anthropic/models/raw_message_stop_event.rbi +23 -0
- data/rbi/anthropic/models/raw_message_stream_event.rbi +27 -0
- data/rbi/anthropic/models/redacted_thinking_block.rbi +26 -0
- data/rbi/anthropic/models/redacted_thinking_block_param.rbi +29 -0
- data/rbi/anthropic/models/server_tool_usage.rbi +27 -0
- data/rbi/anthropic/models/server_tool_use_block.rbi +43 -0
- data/rbi/anthropic/models/server_tool_use_block_param.rbi +71 -0
- data/rbi/anthropic/models/signature_delta.rbi +26 -0
- data/rbi/anthropic/models/stop_reason.rbi +23 -0
- data/rbi/anthropic/models/text_block.rbi +67 -0
- data/rbi/anthropic/models/text_block_param.rbi +95 -0
- data/rbi/anthropic/models/text_citation.rbi +23 -0
- data/rbi/anthropic/models/text_citation_param.rbi +23 -0
- data/rbi/anthropic/models/text_delta.rbi +26 -0
- data/rbi/anthropic/models/thinking_block.rbi +35 -0
- data/rbi/anthropic/models/thinking_block_param.rbi +35 -0
- data/rbi/anthropic/models/thinking_config_disabled.rbi +23 -0
- data/rbi/anthropic/models/thinking_config_enabled.rbi +49 -0
- data/rbi/anthropic/models/thinking_config_param.rbi +32 -0
- data/rbi/anthropic/models/thinking_delta.rbi +26 -0
- data/rbi/anthropic/models/tool.rbi +142 -0
- data/rbi/anthropic/models/tool_bash_20250124.rbi +62 -0
- data/rbi/anthropic/models/tool_choice.rbi +25 -0
- data/rbi/anthropic/models/tool_choice_any.rbi +49 -0
- data/rbi/anthropic/models/tool_choice_auto.rbi +49 -0
- data/rbi/anthropic/models/tool_choice_none.rbi +24 -0
- data/rbi/anthropic/models/tool_choice_tool.rbi +57 -0
- data/rbi/anthropic/models/tool_result_block_param.rbi +127 -0
- data/rbi/anthropic/models/tool_text_editor_20250124.rbi +62 -0
- data/rbi/anthropic/models/tool_union.rbi +23 -0
- data/rbi/anthropic/models/tool_use_block.rbi +43 -0
- data/rbi/anthropic/models/tool_use_block_param.rbi +68 -0
- data/rbi/anthropic/models/url_image_source.rbi +26 -0
- data/rbi/anthropic/models/url_pdf_source.rbi +26 -0
- data/rbi/anthropic/models/usage.rbi +74 -0
- data/rbi/anthropic/models/web_search_result_block.rbi +59 -0
- data/rbi/anthropic/models/web_search_result_block_param.rbi +62 -0
- data/rbi/anthropic/models/web_search_tool_20250305.rbi +181 -0
- data/rbi/anthropic/models/web_search_tool_request_error.rbi +88 -0
- data/rbi/anthropic/models/web_search_tool_result_block.rbi +50 -0
- data/rbi/anthropic/models/web_search_tool_result_block_content.rbi +31 -0
- data/rbi/anthropic/models/web_search_tool_result_block_param.rbi +80 -0
- data/rbi/anthropic/models/web_search_tool_result_block_param_content.rbi +33 -0
- data/rbi/anthropic/models/web_search_tool_result_error.rbi +90 -0
- data/rbi/anthropic/models.rbi +229 -0
- data/rbi/anthropic/request_options.rbi +59 -0
- data/rbi/anthropic/resources/beta/messages/batches.rbi +186 -0
- data/rbi/anthropic/resources/beta/messages.rbi +830 -0
- data/rbi/anthropic/resources/beta/models.rbi +64 -0
- data/rbi/anthropic/resources/beta.rbi +18 -0
- data/rbi/anthropic/resources/completions.rbi +199 -0
- data/rbi/anthropic/resources/messages/batches.rbi +156 -0
- data/rbi/anthropic/resources/messages.rbi +806 -0
- data/rbi/anthropic/resources/models.rbi +62 -0
- data/rbi/anthropic/version.rbi +5 -0
- data/rbi/anthropic/vertex.rbi +5 -0
- data/sig/anthropic/bedrock.rbs +3 -0
- data/sig/anthropic/client.rbs +39 -0
- data/sig/anthropic/errors.rbs +101 -0
- data/sig/anthropic/file_part.rbs +21 -0
- data/sig/anthropic/helpers/bedrock/client.rbs +43 -0
- data/sig/anthropic/helpers/vertex/client.rbs +36 -0
- data/sig/anthropic/internal/jsonl_stream.rbs +9 -0
- data/sig/anthropic/internal/page.rbs +17 -0
- data/sig/anthropic/internal/stream.rbs +9 -0
- data/sig/anthropic/internal/transport/base_client.rbs +131 -0
- data/sig/anthropic/internal/transport/pooled_net_requester.rbs +45 -0
- data/sig/anthropic/internal/type/array_of.rbs +48 -0
- data/sig/anthropic/internal/type/base_model.rbs +102 -0
- data/sig/anthropic/internal/type/base_page.rbs +24 -0
- data/sig/anthropic/internal/type/base_stream.rbs +33 -0
- data/sig/anthropic/internal/type/boolean.rbs +26 -0
- data/sig/anthropic/internal/type/converter.rbs +56 -0
- data/sig/anthropic/internal/type/enum.rbs +32 -0
- data/sig/anthropic/internal/type/file_input.rbs +25 -0
- data/sig/anthropic/internal/type/hash_of.rbs +48 -0
- data/sig/anthropic/internal/type/request_parameters.rbs +19 -0
- data/sig/anthropic/internal/type/union.rbs +52 -0
- data/sig/anthropic/internal/type/unknown.rbs +26 -0
- data/sig/anthropic/internal/util.rbs +185 -0
- data/sig/anthropic/internal.rbs +9 -0
- data/sig/anthropic/models/anthropic_beta.rbs +29 -0
- data/sig/anthropic/models/api_error_object.rbs +13 -0
- data/sig/anthropic/models/authentication_error.rbs +13 -0
- data/sig/anthropic/models/base64_image_source.rbs +38 -0
- data/sig/anthropic/models/base64_pdf_source.rbs +20 -0
- data/sig/anthropic/models/beta/beta_base64_image_source.rbs +42 -0
- data/sig/anthropic/models/beta/beta_base64_pdf_block.rbs +56 -0
- data/sig/anthropic/models/beta/beta_base64_pdf_source.rbs +24 -0
- data/sig/anthropic/models/beta/beta_cache_control_ephemeral.rbs +15 -0
- data/sig/anthropic/models/beta/beta_citation_char_location.rbs +40 -0
- data/sig/anthropic/models/beta/beta_citation_char_location_param.rbs +40 -0
- data/sig/anthropic/models/beta/beta_citation_content_block_location.rbs +40 -0
- data/sig/anthropic/models/beta/beta_citation_content_block_location_param.rbs +40 -0
- data/sig/anthropic/models/beta/beta_citation_page_location.rbs +40 -0
- data/sig/anthropic/models/beta/beta_citation_page_location_param.rbs +40 -0
- data/sig/anthropic/models/beta/beta_citation_web_search_result_location_param.rbs +36 -0
- data/sig/anthropic/models/beta/beta_citations_config_param.rbs +17 -0
- data/sig/anthropic/models/beta/beta_citations_delta.rbs +36 -0
- data/sig/anthropic/models/beta/beta_citations_web_search_result_location.rbs +36 -0
- data/sig/anthropic/models/beta/beta_content_block.rbs +21 -0
- data/sig/anthropic/models/beta/beta_content_block_param.rbs +24 -0
- data/sig/anthropic/models/beta/beta_content_block_source.rbs +36 -0
- data/sig/anthropic/models/beta/beta_content_block_source_content.rbs +17 -0
- data/sig/anthropic/models/beta/beta_image_block_param.rbs +38 -0
- data/sig/anthropic/models/beta/beta_input_json_delta.rbs +18 -0
- data/sig/anthropic/models/beta/beta_message.rbs +48 -0
- data/sig/anthropic/models/beta/beta_message_delta_usage.rbs +36 -0
- data/sig/anthropic/models/beta/beta_message_param.rbs +46 -0
- data/sig/anthropic/models/beta/beta_message_tokens_count.rbs +15 -0
- data/sig/anthropic/models/beta/beta_metadata.rbs +15 -0
- data/sig/anthropic/models/beta/beta_model_info.rbs +27 -0
- data/sig/anthropic/models/beta/beta_plain_text_source.rbs +24 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_delta.rbs +20 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_delta_event.rbs +28 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs +42 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_stop_event.rbs +18 -0
- data/sig/anthropic/models/beta/beta_raw_message_delta_event.rbs +45 -0
- data/sig/anthropic/models/beta/beta_raw_message_start_event.rbs +21 -0
- data/sig/anthropic/models/beta/beta_raw_message_stop_event.rbs +15 -0
- data/sig/anthropic/models/beta/beta_raw_message_stream_event.rbs +21 -0
- data/sig/anthropic/models/beta/beta_redacted_thinking_block.rbs +18 -0
- data/sig/anthropic/models/beta/beta_redacted_thinking_block_param.rbs +18 -0
- data/sig/anthropic/models/beta/beta_server_tool_usage.rbs +15 -0
- data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +27 -0
- data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +36 -0
- data/sig/anthropic/models/beta/beta_signature_delta.rbs +17 -0
- data/sig/anthropic/models/beta/beta_stop_reason.rbs +28 -0
- data/sig/anthropic/models/beta/beta_text_block.rbs +28 -0
- data/sig/anthropic/models/beta/beta_text_block_param.rbs +32 -0
- data/sig/anthropic/models/beta/beta_text_citation.rbs +19 -0
- data/sig/anthropic/models/beta/beta_text_citation_param.rbs +19 -0
- data/sig/anthropic/models/beta/beta_text_delta.rbs +17 -0
- data/sig/anthropic/models/beta/beta_thinking_block.rbs +24 -0
- data/sig/anthropic/models/beta/beta_thinking_block_param.rbs +24 -0
- data/sig/anthropic/models/beta/beta_thinking_config_disabled.rbs +15 -0
- data/sig/anthropic/models/beta/beta_thinking_config_enabled.rbs +18 -0
- data/sig/anthropic/models/beta/beta_thinking_config_param.rbs +17 -0
- data/sig/anthropic/models/beta/beta_thinking_delta.rbs +17 -0
- data/sig/anthropic/models/beta/beta_tool.rbs +58 -0
- data/sig/anthropic/models/beta/beta_tool_bash_20241022.rbs +28 -0
- data/sig/anthropic/models/beta/beta_tool_bash_20250124.rbs +28 -0
- data/sig/anthropic/models/beta/beta_tool_choice.rbs +19 -0
- data/sig/anthropic/models/beta/beta_tool_choice_any.rbs +20 -0
- data/sig/anthropic/models/beta/beta_tool_choice_auto.rbs +20 -0
- data/sig/anthropic/models/beta/beta_tool_choice_none.rbs +15 -0
- data/sig/anthropic/models/beta/beta_tool_choice_tool.rbs +26 -0
- data/sig/anthropic/models/beta/beta_tool_computer_use_20241022.rbs +40 -0
- data/sig/anthropic/models/beta/beta_tool_computer_use_20250124.rbs +40 -0
- data/sig/anthropic/models/beta/beta_tool_result_block_param.rbs +64 -0
- data/sig/anthropic/models/beta/beta_tool_text_editor_20241022.rbs +28 -0
- data/sig/anthropic/models/beta/beta_tool_text_editor_20250124.rbs +28 -0
- data/sig/anthropic/models/beta/beta_tool_union.rbs +23 -0
- data/sig/anthropic/models/beta/beta_tool_use_block.rbs +27 -0
- data/sig/anthropic/models/beta/beta_tool_use_block_param.rbs +36 -0
- data/sig/anthropic/models/beta/beta_url_image_source.rbs +17 -0
- data/sig/anthropic/models/beta/beta_url_pdf_source.rbs +17 -0
- data/sig/anthropic/models/beta/beta_usage.rbs +36 -0
- data/sig/anthropic/models/beta/beta_web_search_result_block.rbs +36 -0
- data/sig/anthropic/models/beta/beta_web_search_result_block_param.rbs +36 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_20250305.rbs +73 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_request_error.rbs +43 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_block.rbs +28 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_block_content.rbs +19 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_block_param.rbs +32 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rbs +19 -0
- data/sig/anthropic/models/beta/beta_web_search_tool_result_error.rbs +43 -0
- data/sig/anthropic/models/beta/message_count_tokens_params.rbs +93 -0
- data/sig/anthropic/models/beta/message_create_params.rbs +113 -0
- data/sig/anthropic/models/beta/messages/batch_cancel_params.rbs +27 -0
- data/sig/anthropic/models/beta/messages/batch_create_params.rbs +152 -0
- data/sig/anthropic/models/beta/messages/batch_delete_params.rbs +27 -0
- data/sig/anthropic/models/beta/messages/batch_list_params.rbs +47 -0
- data/sig/anthropic/models/beta/messages/batch_results_params.rbs +27 -0
- data/sig/anthropic/models/beta/messages/batch_retrieve_params.rbs +27 -0
- data/sig/anthropic/models/beta/messages/beta_deleted_message_batch.rbs +18 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch.rbs +68 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbs +15 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_errored_result.rbs +21 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_expired_result.rbs +15 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_individual_response.rbs +24 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_request_counts.rbs +36 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_result.rbs +19 -0
- data/sig/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbs +21 -0
- data/sig/anthropic/models/beta/model_list_params.rbs +45 -0
- data/sig/anthropic/models/beta/model_retrieve_params.rbs +25 -0
- data/sig/anthropic/models/beta_api_error.rbs +13 -0
- data/sig/anthropic/models/beta_authentication_error.rbs +14 -0
- data/sig/anthropic/models/beta_billing_error.rbs +13 -0
- data/sig/anthropic/models/beta_error.rbs +20 -0
- data/sig/anthropic/models/beta_error_response.rbs +17 -0
- data/sig/anthropic/models/beta_gateway_timeout_error.rbs +13 -0
- data/sig/anthropic/models/beta_invalid_request_error.rbs +14 -0
- data/sig/anthropic/models/beta_not_found_error.rbs +13 -0
- data/sig/anthropic/models/beta_overloaded_error.rbs +13 -0
- data/sig/anthropic/models/beta_permission_error.rbs +13 -0
- data/sig/anthropic/models/beta_rate_limit_error.rbs +13 -0
- data/sig/anthropic/models/billing_error.rbs +13 -0
- data/sig/anthropic/models/cache_control_ephemeral.rbs +11 -0
- data/sig/anthropic/models/citation_char_location.rbs +36 -0
- data/sig/anthropic/models/citation_char_location_param.rbs +36 -0
- data/sig/anthropic/models/citation_content_block_location.rbs +36 -0
- data/sig/anthropic/models/citation_content_block_location_param.rbs +36 -0
- data/sig/anthropic/models/citation_page_location.rbs +36 -0
- data/sig/anthropic/models/citation_page_location_param.rbs +36 -0
- data/sig/anthropic/models/citation_web_search_result_location_param.rbs +32 -0
- data/sig/anthropic/models/citations_config_param.rbs +13 -0
- data/sig/anthropic/models/citations_delta.rbs +29 -0
- data/sig/anthropic/models/citations_web_search_result_location.rbs +32 -0
- data/sig/anthropic/models/completion.rbs +32 -0
- data/sig/anthropic/models/completion_create_params.rbs +67 -0
- data/sig/anthropic/models/content_block.rbs +17 -0
- data/sig/anthropic/models/content_block_param.rbs +20 -0
- data/sig/anthropic/models/content_block_source.rbs +28 -0
- data/sig/anthropic/models/content_block_source_content.rbs +12 -0
- data/sig/anthropic/models/document_block_param.rbs +52 -0
- data/sig/anthropic/models/error_object.rbs +20 -0
- data/sig/anthropic/models/error_response.rbs +17 -0
- data/sig/anthropic/models/gateway_timeout_error.rbs +13 -0
- data/sig/anthropic/models/image_block_param.rbs +32 -0
- data/sig/anthropic/models/input_json_delta.rbs +13 -0
- data/sig/anthropic/models/invalid_request_error.rbs +14 -0
- data/sig/anthropic/models/message.rbs +44 -0
- data/sig/anthropic/models/message_count_tokens_params.rbs +67 -0
- data/sig/anthropic/models/message_count_tokens_tool.rbs +15 -0
- data/sig/anthropic/models/message_create_params.rbs +101 -0
- data/sig/anthropic/models/message_delta_usage.rbs +32 -0
- data/sig/anthropic/models/message_param.rbs +41 -0
- data/sig/anthropic/models/message_tokens_count.rbs +11 -0
- data/sig/anthropic/models/messages/batch_cancel_params.rbs +15 -0
- data/sig/anthropic/models/messages/batch_create_params.rbs +137 -0
- data/sig/anthropic/models/messages/batch_delete_params.rbs +15 -0
- data/sig/anthropic/models/messages/batch_list_params.rbs +33 -0
- data/sig/anthropic/models/messages/batch_results_params.rbs +15 -0
- data/sig/anthropic/models/messages/batch_retrieve_params.rbs +15 -0
- data/sig/anthropic/models/messages/deleted_message_batch.rbs +15 -0
- data/sig/anthropic/models/messages/message_batch.rbs +68 -0
- data/sig/anthropic/models/messages/message_batch_canceled_result.rbs +15 -0
- data/sig/anthropic/models/messages/message_batch_errored_result.rbs +21 -0
- data/sig/anthropic/models/messages/message_batch_expired_result.rbs +15 -0
- data/sig/anthropic/models/messages/message_batch_individual_response.rbs +24 -0
- data/sig/anthropic/models/messages/message_batch_request_counts.rbs +36 -0
- data/sig/anthropic/models/messages/message_batch_result.rbs +19 -0
- data/sig/anthropic/models/messages/message_batch_succeeded_result.rbs +18 -0
- data/sig/anthropic/models/metadata.rbs +11 -0
- data/sig/anthropic/models/model.rbs +61 -0
- data/sig/anthropic/models/model_info.rbs +23 -0
- data/sig/anthropic/models/model_list_params.rbs +43 -0
- data/sig/anthropic/models/model_retrieve_params.rbs +23 -0
- data/sig/anthropic/models/not_found_error.rbs +13 -0
- data/sig/anthropic/models/overloaded_error.rbs +13 -0
- data/sig/anthropic/models/permission_error.rbs +13 -0
- data/sig/anthropic/models/plain_text_source.rbs +20 -0
- data/sig/anthropic/models/rate_limit_error.rbs +13 -0
- data/sig/anthropic/models/raw_content_block_delta.rbs +16 -0
- data/sig/anthropic/models/raw_content_block_delta_event.rbs +24 -0
- data/sig/anthropic/models/raw_content_block_start_event.rbs +38 -0
- data/sig/anthropic/models/raw_content_block_stop_event.rbs +14 -0
- data/sig/anthropic/models/raw_message_delta_event.rbs +38 -0
- data/sig/anthropic/models/raw_message_start_event.rbs +17 -0
- data/sig/anthropic/models/raw_message_stop_event.rbs +11 -0
- data/sig/anthropic/models/raw_message_stream_event.rbs +17 -0
- data/sig/anthropic/models/redacted_thinking_block.rbs +13 -0
- data/sig/anthropic/models/redacted_thinking_block_param.rbs +14 -0
- data/sig/anthropic/models/server_tool_usage.rbs +11 -0
- data/sig/anthropic/models/server_tool_use_block.rbs +23 -0
- data/sig/anthropic/models/server_tool_use_block_param.rbs +32 -0
- data/sig/anthropic/models/signature_delta.rbs +13 -0
- data/sig/anthropic/models/stop_reason.rbs +24 -0
- data/sig/anthropic/models/text_block.rbs +24 -0
- data/sig/anthropic/models/text_block_param.rbs +28 -0
- data/sig/anthropic/models/text_citation.rbs +15 -0
- data/sig/anthropic/models/text_citation_param.rbs +15 -0
- data/sig/anthropic/models/text_delta.rbs +13 -0
- data/sig/anthropic/models/thinking_block.rbs +20 -0
- data/sig/anthropic/models/thinking_block_param.rbs +20 -0
- data/sig/anthropic/models/thinking_config_disabled.rbs +11 -0
- data/sig/anthropic/models/thinking_config_enabled.rbs +13 -0
- data/sig/anthropic/models/thinking_config_param.rbs +12 -0
- data/sig/anthropic/models/thinking_delta.rbs +13 -0
- data/sig/anthropic/models/tool.rbs +54 -0
- data/sig/anthropic/models/tool_bash_20250124.rbs +24 -0
- data/sig/anthropic/models/tool_choice.rbs +15 -0
- data/sig/anthropic/models/tool_choice_any.rbs +15 -0
- data/sig/anthropic/models/tool_choice_auto.rbs +15 -0
- data/sig/anthropic/models/tool_choice_none.rbs +11 -0
- data/sig/anthropic/models/tool_choice_tool.rbs +22 -0
- data/sig/anthropic/models/tool_result_block_param.rbs +57 -0
- data/sig/anthropic/models/tool_text_editor_20250124.rbs +24 -0
- data/sig/anthropic/models/tool_union.rbs +15 -0
- data/sig/anthropic/models/tool_use_block.rbs +23 -0
- data/sig/anthropic/models/tool_use_block_param.rbs +32 -0
- data/sig/anthropic/models/url_image_source.rbs +13 -0
- data/sig/anthropic/models/url_pdf_source.rbs +13 -0
- data/sig/anthropic/models/usage.rbs +32 -0
- data/sig/anthropic/models/web_search_result_block.rbs +32 -0
- data/sig/anthropic/models/web_search_result_block_param.rbs +32 -0
- data/sig/anthropic/models/web_search_tool_20250305.rbs +69 -0
- data/sig/anthropic/models/web_search_tool_request_error.rbs +39 -0
- data/sig/anthropic/models/web_search_tool_result_block.rbs +24 -0
- data/sig/anthropic/models/web_search_tool_result_block_content.rbs +15 -0
- data/sig/anthropic/models/web_search_tool_result_block_param.rbs +28 -0
- data/sig/anthropic/models/web_search_tool_result_block_param_content.rbs +15 -0
- data/sig/anthropic/models/web_search_tool_result_error.rbs +39 -0
- data/sig/anthropic/models.rbs +221 -0
- data/sig/anthropic/request_options.rbs +34 -0
- data/sig/anthropic/resources/beta/messages/batches.rbs +49 -0
- data/sig/anthropic/resources/beta/messages.rbs +56 -0
- data/sig/anthropic/resources/beta/models.rbs +23 -0
- data/sig/anthropic/resources/beta.rbs +11 -0
- data/sig/anthropic/resources/completions.rbs +33 -0
- data/sig/anthropic/resources/messages/batches.rbs +41 -0
- data/sig/anthropic/resources/messages.rbs +51 -0
- data/sig/anthropic/resources/models.rbs +21 -0
- data/sig/anthropic/version.rbs +3 -0
- data/sig/anthropic/vertex.rbs +3 -0
- metadata +799 -77
- data/.circleci/config.yml +0 -45
- data/.github/ISSUE_TEMPLATE/bug_report.md +0 -38
- data/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- data/.github/dependabot.yml +0 -15
- data/.gitignore +0 -16
- data/.rspec +0 -3
- data/.rubocop.yml +0 -30
- data/CODE_OF_CONDUCT.md +0 -74
- data/CONTRIBUTING.md +0 -3
- data/Gemfile +0 -13
- data/Gemfile.lock +0 -88
- data/LICENSE.txt +0 -21
- data/Rakefile +0 -19
- data/anthropic.gemspec +0 -31
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/lib/anthropic/compatibility.rb +0 -10
- data/lib/anthropic/http.rb +0 -200
- data/lib/anthropic/http_headers.rb +0 -38
- data/lib/anthropic/messages/batches.rb +0 -112
- data/lib/anthropic/messages/client.rb +0 -13
- data/lib/ruby/anthropic.rb +0 -2
- data/pull_request_template.md +0 -5
metadata
CHANGED
@@ -1,106 +1,828 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: anthropic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Anthropic
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: connection_pool
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 2.0.0
|
23
|
-
type: :runtime
|
24
|
-
prerelease: false
|
25
|
-
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
requirements:
|
27
|
-
- - ">="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 0.3.0
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 2.0.0
|
33
|
-
- !ruby/object:Gem::Dependency
|
34
|
-
name: faraday
|
35
|
-
requirement: !ruby/object:Gem::Requirement
|
36
|
-
requirements:
|
37
|
-
- - ">="
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '1'
|
19
|
+
version: '0'
|
40
20
|
type: :runtime
|
41
21
|
prerelease: false
|
42
22
|
version_requirements: !ruby/object:Gem::Requirement
|
43
23
|
requirements:
|
44
24
|
- - ">="
|
45
25
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: faraday-multipart
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
50
|
-
requirements:
|
51
|
-
- - ">="
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '1'
|
54
|
-
type: :runtime
|
55
|
-
prerelease: false
|
56
|
-
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: '1'
|
26
|
+
version: '0'
|
61
27
|
description:
|
62
|
-
email:
|
63
|
-
- alexrudall@users.noreply.github.com
|
28
|
+
email: support@anthropic.com
|
64
29
|
executables: []
|
65
30
|
extensions: []
|
66
|
-
extra_rdoc_files:
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.md
|
67
33
|
files:
|
68
|
-
- ".
|
69
|
-
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
70
|
-
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
71
|
-
- ".github/dependabot.yml"
|
72
|
-
- ".gitignore"
|
73
|
-
- ".rspec"
|
74
|
-
- ".rubocop.yml"
|
34
|
+
- ".ignore"
|
75
35
|
- CHANGELOG.md
|
76
|
-
- CODE_OF_CONDUCT.md
|
77
|
-
- CONTRIBUTING.md
|
78
|
-
- Gemfile
|
79
|
-
- Gemfile.lock
|
80
|
-
- LICENSE.txt
|
81
36
|
- README.md
|
82
|
-
-
|
83
|
-
- anthropic.gemspec
|
84
|
-
- bin/console
|
85
|
-
- bin/setup
|
37
|
+
- SECURITY.md
|
86
38
|
- lib/anthropic.rb
|
39
|
+
- lib/anthropic/bedrock.rb
|
87
40
|
- lib/anthropic/client.rb
|
88
|
-
- lib/anthropic/
|
89
|
-
- lib/anthropic/
|
90
|
-
- lib/anthropic/
|
91
|
-
- lib/anthropic/
|
92
|
-
- lib/anthropic/
|
41
|
+
- lib/anthropic/errors.rb
|
42
|
+
- lib/anthropic/file_part.rb
|
43
|
+
- lib/anthropic/helpers/bedrock/client.rb
|
44
|
+
- lib/anthropic/helpers/vertex/client.rb
|
45
|
+
- lib/anthropic/internal.rb
|
46
|
+
- lib/anthropic/internal/jsonl_stream.rb
|
47
|
+
- lib/anthropic/internal/page.rb
|
48
|
+
- lib/anthropic/internal/stream.rb
|
49
|
+
- lib/anthropic/internal/transport/base_client.rb
|
50
|
+
- lib/anthropic/internal/transport/pooled_net_requester.rb
|
51
|
+
- lib/anthropic/internal/type/array_of.rb
|
52
|
+
- lib/anthropic/internal/type/base_model.rb
|
53
|
+
- lib/anthropic/internal/type/base_page.rb
|
54
|
+
- lib/anthropic/internal/type/base_stream.rb
|
55
|
+
- lib/anthropic/internal/type/boolean.rb
|
56
|
+
- lib/anthropic/internal/type/converter.rb
|
57
|
+
- lib/anthropic/internal/type/enum.rb
|
58
|
+
- lib/anthropic/internal/type/file_input.rb
|
59
|
+
- lib/anthropic/internal/type/hash_of.rb
|
60
|
+
- lib/anthropic/internal/type/request_parameters.rb
|
61
|
+
- lib/anthropic/internal/type/union.rb
|
62
|
+
- lib/anthropic/internal/type/unknown.rb
|
63
|
+
- lib/anthropic/internal/util.rb
|
64
|
+
- lib/anthropic/models.rb
|
65
|
+
- lib/anthropic/models/anthropic_beta.rb
|
66
|
+
- lib/anthropic/models/api_error_object.rb
|
67
|
+
- lib/anthropic/models/authentication_error.rb
|
68
|
+
- lib/anthropic/models/base64_image_source.rb
|
69
|
+
- lib/anthropic/models/base64_pdf_source.rb
|
70
|
+
- lib/anthropic/models/beta/beta_base64_image_source.rb
|
71
|
+
- lib/anthropic/models/beta/beta_base64_pdf_block.rb
|
72
|
+
- lib/anthropic/models/beta/beta_base64_pdf_source.rb
|
73
|
+
- lib/anthropic/models/beta/beta_cache_control_ephemeral.rb
|
74
|
+
- lib/anthropic/models/beta/beta_citation_char_location.rb
|
75
|
+
- lib/anthropic/models/beta/beta_citation_char_location_param.rb
|
76
|
+
- lib/anthropic/models/beta/beta_citation_content_block_location.rb
|
77
|
+
- lib/anthropic/models/beta/beta_citation_content_block_location_param.rb
|
78
|
+
- lib/anthropic/models/beta/beta_citation_page_location.rb
|
79
|
+
- lib/anthropic/models/beta/beta_citation_page_location_param.rb
|
80
|
+
- lib/anthropic/models/beta/beta_citation_web_search_result_location_param.rb
|
81
|
+
- lib/anthropic/models/beta/beta_citations_config_param.rb
|
82
|
+
- lib/anthropic/models/beta/beta_citations_delta.rb
|
83
|
+
- lib/anthropic/models/beta/beta_citations_web_search_result_location.rb
|
84
|
+
- lib/anthropic/models/beta/beta_content_block.rb
|
85
|
+
- lib/anthropic/models/beta/beta_content_block_param.rb
|
86
|
+
- lib/anthropic/models/beta/beta_content_block_source.rb
|
87
|
+
- lib/anthropic/models/beta/beta_content_block_source_content.rb
|
88
|
+
- lib/anthropic/models/beta/beta_image_block_param.rb
|
89
|
+
- lib/anthropic/models/beta/beta_input_json_delta.rb
|
90
|
+
- lib/anthropic/models/beta/beta_message.rb
|
91
|
+
- lib/anthropic/models/beta/beta_message_delta_usage.rb
|
92
|
+
- lib/anthropic/models/beta/beta_message_param.rb
|
93
|
+
- lib/anthropic/models/beta/beta_message_tokens_count.rb
|
94
|
+
- lib/anthropic/models/beta/beta_metadata.rb
|
95
|
+
- lib/anthropic/models/beta/beta_model_info.rb
|
96
|
+
- lib/anthropic/models/beta/beta_plain_text_source.rb
|
97
|
+
- lib/anthropic/models/beta/beta_raw_content_block_delta.rb
|
98
|
+
- lib/anthropic/models/beta/beta_raw_content_block_delta_event.rb
|
99
|
+
- lib/anthropic/models/beta/beta_raw_content_block_start_event.rb
|
100
|
+
- lib/anthropic/models/beta/beta_raw_content_block_stop_event.rb
|
101
|
+
- lib/anthropic/models/beta/beta_raw_message_delta_event.rb
|
102
|
+
- lib/anthropic/models/beta/beta_raw_message_start_event.rb
|
103
|
+
- lib/anthropic/models/beta/beta_raw_message_stop_event.rb
|
104
|
+
- lib/anthropic/models/beta/beta_raw_message_stream_event.rb
|
105
|
+
- lib/anthropic/models/beta/beta_redacted_thinking_block.rb
|
106
|
+
- lib/anthropic/models/beta/beta_redacted_thinking_block_param.rb
|
107
|
+
- lib/anthropic/models/beta/beta_server_tool_usage.rb
|
108
|
+
- lib/anthropic/models/beta/beta_server_tool_use_block.rb
|
109
|
+
- lib/anthropic/models/beta/beta_server_tool_use_block_param.rb
|
110
|
+
- lib/anthropic/models/beta/beta_signature_delta.rb
|
111
|
+
- lib/anthropic/models/beta/beta_stop_reason.rb
|
112
|
+
- lib/anthropic/models/beta/beta_text_block.rb
|
113
|
+
- lib/anthropic/models/beta/beta_text_block_param.rb
|
114
|
+
- lib/anthropic/models/beta/beta_text_citation.rb
|
115
|
+
- lib/anthropic/models/beta/beta_text_citation_param.rb
|
116
|
+
- lib/anthropic/models/beta/beta_text_delta.rb
|
117
|
+
- lib/anthropic/models/beta/beta_thinking_block.rb
|
118
|
+
- lib/anthropic/models/beta/beta_thinking_block_param.rb
|
119
|
+
- lib/anthropic/models/beta/beta_thinking_config_disabled.rb
|
120
|
+
- lib/anthropic/models/beta/beta_thinking_config_enabled.rb
|
121
|
+
- lib/anthropic/models/beta/beta_thinking_config_param.rb
|
122
|
+
- lib/anthropic/models/beta/beta_thinking_delta.rb
|
123
|
+
- lib/anthropic/models/beta/beta_tool.rb
|
124
|
+
- lib/anthropic/models/beta/beta_tool_bash_20241022.rb
|
125
|
+
- lib/anthropic/models/beta/beta_tool_bash_20250124.rb
|
126
|
+
- lib/anthropic/models/beta/beta_tool_choice.rb
|
127
|
+
- lib/anthropic/models/beta/beta_tool_choice_any.rb
|
128
|
+
- lib/anthropic/models/beta/beta_tool_choice_auto.rb
|
129
|
+
- lib/anthropic/models/beta/beta_tool_choice_none.rb
|
130
|
+
- lib/anthropic/models/beta/beta_tool_choice_tool.rb
|
131
|
+
- lib/anthropic/models/beta/beta_tool_computer_use_20241022.rb
|
132
|
+
- lib/anthropic/models/beta/beta_tool_computer_use_20250124.rb
|
133
|
+
- lib/anthropic/models/beta/beta_tool_result_block_param.rb
|
134
|
+
- lib/anthropic/models/beta/beta_tool_text_editor_20241022.rb
|
135
|
+
- lib/anthropic/models/beta/beta_tool_text_editor_20250124.rb
|
136
|
+
- lib/anthropic/models/beta/beta_tool_union.rb
|
137
|
+
- lib/anthropic/models/beta/beta_tool_use_block.rb
|
138
|
+
- lib/anthropic/models/beta/beta_tool_use_block_param.rb
|
139
|
+
- lib/anthropic/models/beta/beta_url_image_source.rb
|
140
|
+
- lib/anthropic/models/beta/beta_url_pdf_source.rb
|
141
|
+
- lib/anthropic/models/beta/beta_usage.rb
|
142
|
+
- lib/anthropic/models/beta/beta_web_search_result_block.rb
|
143
|
+
- lib/anthropic/models/beta/beta_web_search_result_block_param.rb
|
144
|
+
- lib/anthropic/models/beta/beta_web_search_tool_20250305.rb
|
145
|
+
- lib/anthropic/models/beta/beta_web_search_tool_request_error.rb
|
146
|
+
- lib/anthropic/models/beta/beta_web_search_tool_result_block.rb
|
147
|
+
- lib/anthropic/models/beta/beta_web_search_tool_result_block_content.rb
|
148
|
+
- lib/anthropic/models/beta/beta_web_search_tool_result_block_param.rb
|
149
|
+
- lib/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rb
|
150
|
+
- lib/anthropic/models/beta/beta_web_search_tool_result_error.rb
|
151
|
+
- lib/anthropic/models/beta/message_count_tokens_params.rb
|
152
|
+
- lib/anthropic/models/beta/message_create_params.rb
|
153
|
+
- lib/anthropic/models/beta/messages/batch_cancel_params.rb
|
154
|
+
- lib/anthropic/models/beta/messages/batch_create_params.rb
|
155
|
+
- lib/anthropic/models/beta/messages/batch_delete_params.rb
|
156
|
+
- lib/anthropic/models/beta/messages/batch_list_params.rb
|
157
|
+
- lib/anthropic/models/beta/messages/batch_results_params.rb
|
158
|
+
- lib/anthropic/models/beta/messages/batch_retrieve_params.rb
|
159
|
+
- lib/anthropic/models/beta/messages/beta_deleted_message_batch.rb
|
160
|
+
- lib/anthropic/models/beta/messages/beta_message_batch.rb
|
161
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_canceled_result.rb
|
162
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_errored_result.rb
|
163
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_expired_result.rb
|
164
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_individual_response.rb
|
165
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb
|
166
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_result.rb
|
167
|
+
- lib/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rb
|
168
|
+
- lib/anthropic/models/beta/model_list_params.rb
|
169
|
+
- lib/anthropic/models/beta/model_retrieve_params.rb
|
170
|
+
- lib/anthropic/models/beta_api_error.rb
|
171
|
+
- lib/anthropic/models/beta_authentication_error.rb
|
172
|
+
- lib/anthropic/models/beta_billing_error.rb
|
173
|
+
- lib/anthropic/models/beta_error.rb
|
174
|
+
- lib/anthropic/models/beta_error_response.rb
|
175
|
+
- lib/anthropic/models/beta_gateway_timeout_error.rb
|
176
|
+
- lib/anthropic/models/beta_invalid_request_error.rb
|
177
|
+
- lib/anthropic/models/beta_not_found_error.rb
|
178
|
+
- lib/anthropic/models/beta_overloaded_error.rb
|
179
|
+
- lib/anthropic/models/beta_permission_error.rb
|
180
|
+
- lib/anthropic/models/beta_rate_limit_error.rb
|
181
|
+
- lib/anthropic/models/billing_error.rb
|
182
|
+
- lib/anthropic/models/cache_control_ephemeral.rb
|
183
|
+
- lib/anthropic/models/citation_char_location.rb
|
184
|
+
- lib/anthropic/models/citation_char_location_param.rb
|
185
|
+
- lib/anthropic/models/citation_content_block_location.rb
|
186
|
+
- lib/anthropic/models/citation_content_block_location_param.rb
|
187
|
+
- lib/anthropic/models/citation_page_location.rb
|
188
|
+
- lib/anthropic/models/citation_page_location_param.rb
|
189
|
+
- lib/anthropic/models/citation_web_search_result_location_param.rb
|
190
|
+
- lib/anthropic/models/citations_config_param.rb
|
191
|
+
- lib/anthropic/models/citations_delta.rb
|
192
|
+
- lib/anthropic/models/citations_web_search_result_location.rb
|
193
|
+
- lib/anthropic/models/completion.rb
|
194
|
+
- lib/anthropic/models/completion_create_params.rb
|
195
|
+
- lib/anthropic/models/content_block.rb
|
196
|
+
- lib/anthropic/models/content_block_param.rb
|
197
|
+
- lib/anthropic/models/content_block_source.rb
|
198
|
+
- lib/anthropic/models/content_block_source_content.rb
|
199
|
+
- lib/anthropic/models/document_block_param.rb
|
200
|
+
- lib/anthropic/models/error_object.rb
|
201
|
+
- lib/anthropic/models/error_response.rb
|
202
|
+
- lib/anthropic/models/gateway_timeout_error.rb
|
203
|
+
- lib/anthropic/models/image_block_param.rb
|
204
|
+
- lib/anthropic/models/input_json_delta.rb
|
205
|
+
- lib/anthropic/models/invalid_request_error.rb
|
206
|
+
- lib/anthropic/models/message.rb
|
207
|
+
- lib/anthropic/models/message_count_tokens_params.rb
|
208
|
+
- lib/anthropic/models/message_count_tokens_tool.rb
|
209
|
+
- lib/anthropic/models/message_create_params.rb
|
210
|
+
- lib/anthropic/models/message_delta_usage.rb
|
211
|
+
- lib/anthropic/models/message_param.rb
|
212
|
+
- lib/anthropic/models/message_tokens_count.rb
|
213
|
+
- lib/anthropic/models/messages/batch_cancel_params.rb
|
214
|
+
- lib/anthropic/models/messages/batch_create_params.rb
|
215
|
+
- lib/anthropic/models/messages/batch_delete_params.rb
|
216
|
+
- lib/anthropic/models/messages/batch_list_params.rb
|
217
|
+
- lib/anthropic/models/messages/batch_results_params.rb
|
218
|
+
- lib/anthropic/models/messages/batch_retrieve_params.rb
|
219
|
+
- lib/anthropic/models/messages/deleted_message_batch.rb
|
220
|
+
- lib/anthropic/models/messages/message_batch.rb
|
221
|
+
- lib/anthropic/models/messages/message_batch_canceled_result.rb
|
222
|
+
- lib/anthropic/models/messages/message_batch_errored_result.rb
|
223
|
+
- lib/anthropic/models/messages/message_batch_expired_result.rb
|
224
|
+
- lib/anthropic/models/messages/message_batch_individual_response.rb
|
225
|
+
- lib/anthropic/models/messages/message_batch_request_counts.rb
|
226
|
+
- lib/anthropic/models/messages/message_batch_result.rb
|
227
|
+
- lib/anthropic/models/messages/message_batch_succeeded_result.rb
|
228
|
+
- lib/anthropic/models/metadata.rb
|
229
|
+
- lib/anthropic/models/model.rb
|
230
|
+
- lib/anthropic/models/model_info.rb
|
231
|
+
- lib/anthropic/models/model_list_params.rb
|
232
|
+
- lib/anthropic/models/model_retrieve_params.rb
|
233
|
+
- lib/anthropic/models/not_found_error.rb
|
234
|
+
- lib/anthropic/models/overloaded_error.rb
|
235
|
+
- lib/anthropic/models/permission_error.rb
|
236
|
+
- lib/anthropic/models/plain_text_source.rb
|
237
|
+
- lib/anthropic/models/rate_limit_error.rb
|
238
|
+
- lib/anthropic/models/raw_content_block_delta.rb
|
239
|
+
- lib/anthropic/models/raw_content_block_delta_event.rb
|
240
|
+
- lib/anthropic/models/raw_content_block_start_event.rb
|
241
|
+
- lib/anthropic/models/raw_content_block_stop_event.rb
|
242
|
+
- lib/anthropic/models/raw_message_delta_event.rb
|
243
|
+
- lib/anthropic/models/raw_message_start_event.rb
|
244
|
+
- lib/anthropic/models/raw_message_stop_event.rb
|
245
|
+
- lib/anthropic/models/raw_message_stream_event.rb
|
246
|
+
- lib/anthropic/models/redacted_thinking_block.rb
|
247
|
+
- lib/anthropic/models/redacted_thinking_block_param.rb
|
248
|
+
- lib/anthropic/models/server_tool_usage.rb
|
249
|
+
- lib/anthropic/models/server_tool_use_block.rb
|
250
|
+
- lib/anthropic/models/server_tool_use_block_param.rb
|
251
|
+
- lib/anthropic/models/signature_delta.rb
|
252
|
+
- lib/anthropic/models/stop_reason.rb
|
253
|
+
- lib/anthropic/models/text_block.rb
|
254
|
+
- lib/anthropic/models/text_block_param.rb
|
255
|
+
- lib/anthropic/models/text_citation.rb
|
256
|
+
- lib/anthropic/models/text_citation_param.rb
|
257
|
+
- lib/anthropic/models/text_delta.rb
|
258
|
+
- lib/anthropic/models/thinking_block.rb
|
259
|
+
- lib/anthropic/models/thinking_block_param.rb
|
260
|
+
- lib/anthropic/models/thinking_config_disabled.rb
|
261
|
+
- lib/anthropic/models/thinking_config_enabled.rb
|
262
|
+
- lib/anthropic/models/thinking_config_param.rb
|
263
|
+
- lib/anthropic/models/thinking_delta.rb
|
264
|
+
- lib/anthropic/models/tool.rb
|
265
|
+
- lib/anthropic/models/tool_bash_20250124.rb
|
266
|
+
- lib/anthropic/models/tool_choice.rb
|
267
|
+
- lib/anthropic/models/tool_choice_any.rb
|
268
|
+
- lib/anthropic/models/tool_choice_auto.rb
|
269
|
+
- lib/anthropic/models/tool_choice_none.rb
|
270
|
+
- lib/anthropic/models/tool_choice_tool.rb
|
271
|
+
- lib/anthropic/models/tool_result_block_param.rb
|
272
|
+
- lib/anthropic/models/tool_text_editor_20250124.rb
|
273
|
+
- lib/anthropic/models/tool_union.rb
|
274
|
+
- lib/anthropic/models/tool_use_block.rb
|
275
|
+
- lib/anthropic/models/tool_use_block_param.rb
|
276
|
+
- lib/anthropic/models/url_image_source.rb
|
277
|
+
- lib/anthropic/models/url_pdf_source.rb
|
278
|
+
- lib/anthropic/models/usage.rb
|
279
|
+
- lib/anthropic/models/web_search_result_block.rb
|
280
|
+
- lib/anthropic/models/web_search_result_block_param.rb
|
281
|
+
- lib/anthropic/models/web_search_tool_20250305.rb
|
282
|
+
- lib/anthropic/models/web_search_tool_request_error.rb
|
283
|
+
- lib/anthropic/models/web_search_tool_result_block.rb
|
284
|
+
- lib/anthropic/models/web_search_tool_result_block_content.rb
|
285
|
+
- lib/anthropic/models/web_search_tool_result_block_param.rb
|
286
|
+
- lib/anthropic/models/web_search_tool_result_block_param_content.rb
|
287
|
+
- lib/anthropic/models/web_search_tool_result_error.rb
|
288
|
+
- lib/anthropic/request_options.rb
|
289
|
+
- lib/anthropic/resources/beta.rb
|
290
|
+
- lib/anthropic/resources/beta/messages.rb
|
291
|
+
- lib/anthropic/resources/beta/messages/batches.rb
|
292
|
+
- lib/anthropic/resources/beta/models.rb
|
293
|
+
- lib/anthropic/resources/completions.rb
|
294
|
+
- lib/anthropic/resources/messages.rb
|
295
|
+
- lib/anthropic/resources/messages/batches.rb
|
296
|
+
- lib/anthropic/resources/models.rb
|
93
297
|
- lib/anthropic/version.rb
|
94
|
-
- lib/
|
95
|
-
-
|
96
|
-
|
97
|
-
|
98
|
-
-
|
298
|
+
- lib/anthropic/vertex.rb
|
299
|
+
- manifest.yaml
|
300
|
+
- rbi/anthropic/bedrock.rbi
|
301
|
+
- rbi/anthropic/client.rbi
|
302
|
+
- rbi/anthropic/errors.rbi
|
303
|
+
- rbi/anthropic/file_part.rbi
|
304
|
+
- rbi/anthropic/helpers/bedrock/client.rbi
|
305
|
+
- rbi/anthropic/helpers/vertex/client.rbi
|
306
|
+
- rbi/anthropic/internal.rbi
|
307
|
+
- rbi/anthropic/internal/jsonl_stream.rbi
|
308
|
+
- rbi/anthropic/internal/page.rbi
|
309
|
+
- rbi/anthropic/internal/stream.rbi
|
310
|
+
- rbi/anthropic/internal/transport/base_client.rbi
|
311
|
+
- rbi/anthropic/internal/transport/pooled_net_requester.rbi
|
312
|
+
- rbi/anthropic/internal/type/array_of.rbi
|
313
|
+
- rbi/anthropic/internal/type/base_model.rbi
|
314
|
+
- rbi/anthropic/internal/type/base_page.rbi
|
315
|
+
- rbi/anthropic/internal/type/base_stream.rbi
|
316
|
+
- rbi/anthropic/internal/type/boolean.rbi
|
317
|
+
- rbi/anthropic/internal/type/converter.rbi
|
318
|
+
- rbi/anthropic/internal/type/enum.rbi
|
319
|
+
- rbi/anthropic/internal/type/file_input.rbi
|
320
|
+
- rbi/anthropic/internal/type/hash_of.rbi
|
321
|
+
- rbi/anthropic/internal/type/request_parameters.rbi
|
322
|
+
- rbi/anthropic/internal/type/union.rbi
|
323
|
+
- rbi/anthropic/internal/type/unknown.rbi
|
324
|
+
- rbi/anthropic/internal/util.rbi
|
325
|
+
- rbi/anthropic/models.rbi
|
326
|
+
- rbi/anthropic/models/anthropic_beta.rbi
|
327
|
+
- rbi/anthropic/models/api_error_object.rbi
|
328
|
+
- rbi/anthropic/models/authentication_error.rbi
|
329
|
+
- rbi/anthropic/models/base64_image_source.rbi
|
330
|
+
- rbi/anthropic/models/base64_pdf_source.rbi
|
331
|
+
- rbi/anthropic/models/beta/beta_base64_image_source.rbi
|
332
|
+
- rbi/anthropic/models/beta/beta_base64_pdf_block.rbi
|
333
|
+
- rbi/anthropic/models/beta/beta_base64_pdf_source.rbi
|
334
|
+
- rbi/anthropic/models/beta/beta_cache_control_ephemeral.rbi
|
335
|
+
- rbi/anthropic/models/beta/beta_citation_char_location.rbi
|
336
|
+
- rbi/anthropic/models/beta/beta_citation_char_location_param.rbi
|
337
|
+
- rbi/anthropic/models/beta/beta_citation_content_block_location.rbi
|
338
|
+
- rbi/anthropic/models/beta/beta_citation_content_block_location_param.rbi
|
339
|
+
- rbi/anthropic/models/beta/beta_citation_page_location.rbi
|
340
|
+
- rbi/anthropic/models/beta/beta_citation_page_location_param.rbi
|
341
|
+
- rbi/anthropic/models/beta/beta_citation_web_search_result_location_param.rbi
|
342
|
+
- rbi/anthropic/models/beta/beta_citations_config_param.rbi
|
343
|
+
- rbi/anthropic/models/beta/beta_citations_delta.rbi
|
344
|
+
- rbi/anthropic/models/beta/beta_citations_web_search_result_location.rbi
|
345
|
+
- rbi/anthropic/models/beta/beta_content_block.rbi
|
346
|
+
- rbi/anthropic/models/beta/beta_content_block_param.rbi
|
347
|
+
- rbi/anthropic/models/beta/beta_content_block_source.rbi
|
348
|
+
- rbi/anthropic/models/beta/beta_content_block_source_content.rbi
|
349
|
+
- rbi/anthropic/models/beta/beta_image_block_param.rbi
|
350
|
+
- rbi/anthropic/models/beta/beta_input_json_delta.rbi
|
351
|
+
- rbi/anthropic/models/beta/beta_message.rbi
|
352
|
+
- rbi/anthropic/models/beta/beta_message_delta_usage.rbi
|
353
|
+
- rbi/anthropic/models/beta/beta_message_param.rbi
|
354
|
+
- rbi/anthropic/models/beta/beta_message_tokens_count.rbi
|
355
|
+
- rbi/anthropic/models/beta/beta_metadata.rbi
|
356
|
+
- rbi/anthropic/models/beta/beta_model_info.rbi
|
357
|
+
- rbi/anthropic/models/beta/beta_plain_text_source.rbi
|
358
|
+
- rbi/anthropic/models/beta/beta_raw_content_block_delta.rbi
|
359
|
+
- rbi/anthropic/models/beta/beta_raw_content_block_delta_event.rbi
|
360
|
+
- rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi
|
361
|
+
- rbi/anthropic/models/beta/beta_raw_content_block_stop_event.rbi
|
362
|
+
- rbi/anthropic/models/beta/beta_raw_message_delta_event.rbi
|
363
|
+
- rbi/anthropic/models/beta/beta_raw_message_start_event.rbi
|
364
|
+
- rbi/anthropic/models/beta/beta_raw_message_stop_event.rbi
|
365
|
+
- rbi/anthropic/models/beta/beta_raw_message_stream_event.rbi
|
366
|
+
- rbi/anthropic/models/beta/beta_redacted_thinking_block.rbi
|
367
|
+
- rbi/anthropic/models/beta/beta_redacted_thinking_block_param.rbi
|
368
|
+
- rbi/anthropic/models/beta/beta_server_tool_usage.rbi
|
369
|
+
- rbi/anthropic/models/beta/beta_server_tool_use_block.rbi
|
370
|
+
- rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi
|
371
|
+
- rbi/anthropic/models/beta/beta_signature_delta.rbi
|
372
|
+
- rbi/anthropic/models/beta/beta_stop_reason.rbi
|
373
|
+
- rbi/anthropic/models/beta/beta_text_block.rbi
|
374
|
+
- rbi/anthropic/models/beta/beta_text_block_param.rbi
|
375
|
+
- rbi/anthropic/models/beta/beta_text_citation.rbi
|
376
|
+
- rbi/anthropic/models/beta/beta_text_citation_param.rbi
|
377
|
+
- rbi/anthropic/models/beta/beta_text_delta.rbi
|
378
|
+
- rbi/anthropic/models/beta/beta_thinking_block.rbi
|
379
|
+
- rbi/anthropic/models/beta/beta_thinking_block_param.rbi
|
380
|
+
- rbi/anthropic/models/beta/beta_thinking_config_disabled.rbi
|
381
|
+
- rbi/anthropic/models/beta/beta_thinking_config_enabled.rbi
|
382
|
+
- rbi/anthropic/models/beta/beta_thinking_config_param.rbi
|
383
|
+
- rbi/anthropic/models/beta/beta_thinking_delta.rbi
|
384
|
+
- rbi/anthropic/models/beta/beta_tool.rbi
|
385
|
+
- rbi/anthropic/models/beta/beta_tool_bash_20241022.rbi
|
386
|
+
- rbi/anthropic/models/beta/beta_tool_bash_20250124.rbi
|
387
|
+
- rbi/anthropic/models/beta/beta_tool_choice.rbi
|
388
|
+
- rbi/anthropic/models/beta/beta_tool_choice_any.rbi
|
389
|
+
- rbi/anthropic/models/beta/beta_tool_choice_auto.rbi
|
390
|
+
- rbi/anthropic/models/beta/beta_tool_choice_none.rbi
|
391
|
+
- rbi/anthropic/models/beta/beta_tool_choice_tool.rbi
|
392
|
+
- rbi/anthropic/models/beta/beta_tool_computer_use_20241022.rbi
|
393
|
+
- rbi/anthropic/models/beta/beta_tool_computer_use_20250124.rbi
|
394
|
+
- rbi/anthropic/models/beta/beta_tool_result_block_param.rbi
|
395
|
+
- rbi/anthropic/models/beta/beta_tool_text_editor_20241022.rbi
|
396
|
+
- rbi/anthropic/models/beta/beta_tool_text_editor_20250124.rbi
|
397
|
+
- rbi/anthropic/models/beta/beta_tool_union.rbi
|
398
|
+
- rbi/anthropic/models/beta/beta_tool_use_block.rbi
|
399
|
+
- rbi/anthropic/models/beta/beta_tool_use_block_param.rbi
|
400
|
+
- rbi/anthropic/models/beta/beta_url_image_source.rbi
|
401
|
+
- rbi/anthropic/models/beta/beta_url_pdf_source.rbi
|
402
|
+
- rbi/anthropic/models/beta/beta_usage.rbi
|
403
|
+
- rbi/anthropic/models/beta/beta_web_search_result_block.rbi
|
404
|
+
- rbi/anthropic/models/beta/beta_web_search_result_block_param.rbi
|
405
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_20250305.rbi
|
406
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_request_error.rbi
|
407
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_result_block.rbi
|
408
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_result_block_content.rbi
|
409
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_result_block_param.rbi
|
410
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rbi
|
411
|
+
- rbi/anthropic/models/beta/beta_web_search_tool_result_error.rbi
|
412
|
+
- rbi/anthropic/models/beta/message_count_tokens_params.rbi
|
413
|
+
- rbi/anthropic/models/beta/message_create_params.rbi
|
414
|
+
- rbi/anthropic/models/beta/messages/batch_cancel_params.rbi
|
415
|
+
- rbi/anthropic/models/beta/messages/batch_create_params.rbi
|
416
|
+
- rbi/anthropic/models/beta/messages/batch_delete_params.rbi
|
417
|
+
- rbi/anthropic/models/beta/messages/batch_list_params.rbi
|
418
|
+
- rbi/anthropic/models/beta/messages/batch_results_params.rbi
|
419
|
+
- rbi/anthropic/models/beta/messages/batch_retrieve_params.rbi
|
420
|
+
- rbi/anthropic/models/beta/messages/beta_deleted_message_batch.rbi
|
421
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch.rbi
|
422
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbi
|
423
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_errored_result.rbi
|
424
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_expired_result.rbi
|
425
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_individual_response.rbi
|
426
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_request_counts.rbi
|
427
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_result.rbi
|
428
|
+
- rbi/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbi
|
429
|
+
- rbi/anthropic/models/beta/model_list_params.rbi
|
430
|
+
- rbi/anthropic/models/beta/model_retrieve_params.rbi
|
431
|
+
- rbi/anthropic/models/beta_api_error.rbi
|
432
|
+
- rbi/anthropic/models/beta_authentication_error.rbi
|
433
|
+
- rbi/anthropic/models/beta_billing_error.rbi
|
434
|
+
- rbi/anthropic/models/beta_error.rbi
|
435
|
+
- rbi/anthropic/models/beta_error_response.rbi
|
436
|
+
- rbi/anthropic/models/beta_gateway_timeout_error.rbi
|
437
|
+
- rbi/anthropic/models/beta_invalid_request_error.rbi
|
438
|
+
- rbi/anthropic/models/beta_not_found_error.rbi
|
439
|
+
- rbi/anthropic/models/beta_overloaded_error.rbi
|
440
|
+
- rbi/anthropic/models/beta_permission_error.rbi
|
441
|
+
- rbi/anthropic/models/beta_rate_limit_error.rbi
|
442
|
+
- rbi/anthropic/models/billing_error.rbi
|
443
|
+
- rbi/anthropic/models/cache_control_ephemeral.rbi
|
444
|
+
- rbi/anthropic/models/citation_char_location.rbi
|
445
|
+
- rbi/anthropic/models/citation_char_location_param.rbi
|
446
|
+
- rbi/anthropic/models/citation_content_block_location.rbi
|
447
|
+
- rbi/anthropic/models/citation_content_block_location_param.rbi
|
448
|
+
- rbi/anthropic/models/citation_page_location.rbi
|
449
|
+
- rbi/anthropic/models/citation_page_location_param.rbi
|
450
|
+
- rbi/anthropic/models/citation_web_search_result_location_param.rbi
|
451
|
+
- rbi/anthropic/models/citations_config_param.rbi
|
452
|
+
- rbi/anthropic/models/citations_delta.rbi
|
453
|
+
- rbi/anthropic/models/citations_web_search_result_location.rbi
|
454
|
+
- rbi/anthropic/models/completion.rbi
|
455
|
+
- rbi/anthropic/models/completion_create_params.rbi
|
456
|
+
- rbi/anthropic/models/content_block.rbi
|
457
|
+
- rbi/anthropic/models/content_block_param.rbi
|
458
|
+
- rbi/anthropic/models/content_block_source.rbi
|
459
|
+
- rbi/anthropic/models/content_block_source_content.rbi
|
460
|
+
- rbi/anthropic/models/document_block_param.rbi
|
461
|
+
- rbi/anthropic/models/error_object.rbi
|
462
|
+
- rbi/anthropic/models/error_response.rbi
|
463
|
+
- rbi/anthropic/models/gateway_timeout_error.rbi
|
464
|
+
- rbi/anthropic/models/image_block_param.rbi
|
465
|
+
- rbi/anthropic/models/input_json_delta.rbi
|
466
|
+
- rbi/anthropic/models/invalid_request_error.rbi
|
467
|
+
- rbi/anthropic/models/message.rbi
|
468
|
+
- rbi/anthropic/models/message_count_tokens_params.rbi
|
469
|
+
- rbi/anthropic/models/message_count_tokens_tool.rbi
|
470
|
+
- rbi/anthropic/models/message_create_params.rbi
|
471
|
+
- rbi/anthropic/models/message_delta_usage.rbi
|
472
|
+
- rbi/anthropic/models/message_param.rbi
|
473
|
+
- rbi/anthropic/models/message_tokens_count.rbi
|
474
|
+
- rbi/anthropic/models/messages/batch_cancel_params.rbi
|
475
|
+
- rbi/anthropic/models/messages/batch_create_params.rbi
|
476
|
+
- rbi/anthropic/models/messages/batch_delete_params.rbi
|
477
|
+
- rbi/anthropic/models/messages/batch_list_params.rbi
|
478
|
+
- rbi/anthropic/models/messages/batch_results_params.rbi
|
479
|
+
- rbi/anthropic/models/messages/batch_retrieve_params.rbi
|
480
|
+
- rbi/anthropic/models/messages/deleted_message_batch.rbi
|
481
|
+
- rbi/anthropic/models/messages/message_batch.rbi
|
482
|
+
- rbi/anthropic/models/messages/message_batch_canceled_result.rbi
|
483
|
+
- rbi/anthropic/models/messages/message_batch_errored_result.rbi
|
484
|
+
- rbi/anthropic/models/messages/message_batch_expired_result.rbi
|
485
|
+
- rbi/anthropic/models/messages/message_batch_individual_response.rbi
|
486
|
+
- rbi/anthropic/models/messages/message_batch_request_counts.rbi
|
487
|
+
- rbi/anthropic/models/messages/message_batch_result.rbi
|
488
|
+
- rbi/anthropic/models/messages/message_batch_succeeded_result.rbi
|
489
|
+
- rbi/anthropic/models/metadata.rbi
|
490
|
+
- rbi/anthropic/models/model.rbi
|
491
|
+
- rbi/anthropic/models/model_info.rbi
|
492
|
+
- rbi/anthropic/models/model_list_params.rbi
|
493
|
+
- rbi/anthropic/models/model_retrieve_params.rbi
|
494
|
+
- rbi/anthropic/models/not_found_error.rbi
|
495
|
+
- rbi/anthropic/models/overloaded_error.rbi
|
496
|
+
- rbi/anthropic/models/permission_error.rbi
|
497
|
+
- rbi/anthropic/models/plain_text_source.rbi
|
498
|
+
- rbi/anthropic/models/rate_limit_error.rbi
|
499
|
+
- rbi/anthropic/models/raw_content_block_delta.rbi
|
500
|
+
- rbi/anthropic/models/raw_content_block_delta_event.rbi
|
501
|
+
- rbi/anthropic/models/raw_content_block_start_event.rbi
|
502
|
+
- rbi/anthropic/models/raw_content_block_stop_event.rbi
|
503
|
+
- rbi/anthropic/models/raw_message_delta_event.rbi
|
504
|
+
- rbi/anthropic/models/raw_message_start_event.rbi
|
505
|
+
- rbi/anthropic/models/raw_message_stop_event.rbi
|
506
|
+
- rbi/anthropic/models/raw_message_stream_event.rbi
|
507
|
+
- rbi/anthropic/models/redacted_thinking_block.rbi
|
508
|
+
- rbi/anthropic/models/redacted_thinking_block_param.rbi
|
509
|
+
- rbi/anthropic/models/server_tool_usage.rbi
|
510
|
+
- rbi/anthropic/models/server_tool_use_block.rbi
|
511
|
+
- rbi/anthropic/models/server_tool_use_block_param.rbi
|
512
|
+
- rbi/anthropic/models/signature_delta.rbi
|
513
|
+
- rbi/anthropic/models/stop_reason.rbi
|
514
|
+
- rbi/anthropic/models/text_block.rbi
|
515
|
+
- rbi/anthropic/models/text_block_param.rbi
|
516
|
+
- rbi/anthropic/models/text_citation.rbi
|
517
|
+
- rbi/anthropic/models/text_citation_param.rbi
|
518
|
+
- rbi/anthropic/models/text_delta.rbi
|
519
|
+
- rbi/anthropic/models/thinking_block.rbi
|
520
|
+
- rbi/anthropic/models/thinking_block_param.rbi
|
521
|
+
- rbi/anthropic/models/thinking_config_disabled.rbi
|
522
|
+
- rbi/anthropic/models/thinking_config_enabled.rbi
|
523
|
+
- rbi/anthropic/models/thinking_config_param.rbi
|
524
|
+
- rbi/anthropic/models/thinking_delta.rbi
|
525
|
+
- rbi/anthropic/models/tool.rbi
|
526
|
+
- rbi/anthropic/models/tool_bash_20250124.rbi
|
527
|
+
- rbi/anthropic/models/tool_choice.rbi
|
528
|
+
- rbi/anthropic/models/tool_choice_any.rbi
|
529
|
+
- rbi/anthropic/models/tool_choice_auto.rbi
|
530
|
+
- rbi/anthropic/models/tool_choice_none.rbi
|
531
|
+
- rbi/anthropic/models/tool_choice_tool.rbi
|
532
|
+
- rbi/anthropic/models/tool_result_block_param.rbi
|
533
|
+
- rbi/anthropic/models/tool_text_editor_20250124.rbi
|
534
|
+
- rbi/anthropic/models/tool_union.rbi
|
535
|
+
- rbi/anthropic/models/tool_use_block.rbi
|
536
|
+
- rbi/anthropic/models/tool_use_block_param.rbi
|
537
|
+
- rbi/anthropic/models/url_image_source.rbi
|
538
|
+
- rbi/anthropic/models/url_pdf_source.rbi
|
539
|
+
- rbi/anthropic/models/usage.rbi
|
540
|
+
- rbi/anthropic/models/web_search_result_block.rbi
|
541
|
+
- rbi/anthropic/models/web_search_result_block_param.rbi
|
542
|
+
- rbi/anthropic/models/web_search_tool_20250305.rbi
|
543
|
+
- rbi/anthropic/models/web_search_tool_request_error.rbi
|
544
|
+
- rbi/anthropic/models/web_search_tool_result_block.rbi
|
545
|
+
- rbi/anthropic/models/web_search_tool_result_block_content.rbi
|
546
|
+
- rbi/anthropic/models/web_search_tool_result_block_param.rbi
|
547
|
+
- rbi/anthropic/models/web_search_tool_result_block_param_content.rbi
|
548
|
+
- rbi/anthropic/models/web_search_tool_result_error.rbi
|
549
|
+
- rbi/anthropic/request_options.rbi
|
550
|
+
- rbi/anthropic/resources/beta.rbi
|
551
|
+
- rbi/anthropic/resources/beta/messages.rbi
|
552
|
+
- rbi/anthropic/resources/beta/messages/batches.rbi
|
553
|
+
- rbi/anthropic/resources/beta/models.rbi
|
554
|
+
- rbi/anthropic/resources/completions.rbi
|
555
|
+
- rbi/anthropic/resources/messages.rbi
|
556
|
+
- rbi/anthropic/resources/messages/batches.rbi
|
557
|
+
- rbi/anthropic/resources/models.rbi
|
558
|
+
- rbi/anthropic/version.rbi
|
559
|
+
- rbi/anthropic/vertex.rbi
|
560
|
+
- sig/anthropic/bedrock.rbs
|
561
|
+
- sig/anthropic/client.rbs
|
562
|
+
- sig/anthropic/errors.rbs
|
563
|
+
- sig/anthropic/file_part.rbs
|
564
|
+
- sig/anthropic/helpers/bedrock/client.rbs
|
565
|
+
- sig/anthropic/helpers/vertex/client.rbs
|
566
|
+
- sig/anthropic/internal.rbs
|
567
|
+
- sig/anthropic/internal/jsonl_stream.rbs
|
568
|
+
- sig/anthropic/internal/page.rbs
|
569
|
+
- sig/anthropic/internal/stream.rbs
|
570
|
+
- sig/anthropic/internal/transport/base_client.rbs
|
571
|
+
- sig/anthropic/internal/transport/pooled_net_requester.rbs
|
572
|
+
- sig/anthropic/internal/type/array_of.rbs
|
573
|
+
- sig/anthropic/internal/type/base_model.rbs
|
574
|
+
- sig/anthropic/internal/type/base_page.rbs
|
575
|
+
- sig/anthropic/internal/type/base_stream.rbs
|
576
|
+
- sig/anthropic/internal/type/boolean.rbs
|
577
|
+
- sig/anthropic/internal/type/converter.rbs
|
578
|
+
- sig/anthropic/internal/type/enum.rbs
|
579
|
+
- sig/anthropic/internal/type/file_input.rbs
|
580
|
+
- sig/anthropic/internal/type/hash_of.rbs
|
581
|
+
- sig/anthropic/internal/type/request_parameters.rbs
|
582
|
+
- sig/anthropic/internal/type/union.rbs
|
583
|
+
- sig/anthropic/internal/type/unknown.rbs
|
584
|
+
- sig/anthropic/internal/util.rbs
|
585
|
+
- sig/anthropic/models.rbs
|
586
|
+
- sig/anthropic/models/anthropic_beta.rbs
|
587
|
+
- sig/anthropic/models/api_error_object.rbs
|
588
|
+
- sig/anthropic/models/authentication_error.rbs
|
589
|
+
- sig/anthropic/models/base64_image_source.rbs
|
590
|
+
- sig/anthropic/models/base64_pdf_source.rbs
|
591
|
+
- sig/anthropic/models/beta/beta_base64_image_source.rbs
|
592
|
+
- sig/anthropic/models/beta/beta_base64_pdf_block.rbs
|
593
|
+
- sig/anthropic/models/beta/beta_base64_pdf_source.rbs
|
594
|
+
- sig/anthropic/models/beta/beta_cache_control_ephemeral.rbs
|
595
|
+
- sig/anthropic/models/beta/beta_citation_char_location.rbs
|
596
|
+
- sig/anthropic/models/beta/beta_citation_char_location_param.rbs
|
597
|
+
- sig/anthropic/models/beta/beta_citation_content_block_location.rbs
|
598
|
+
- sig/anthropic/models/beta/beta_citation_content_block_location_param.rbs
|
599
|
+
- sig/anthropic/models/beta/beta_citation_page_location.rbs
|
600
|
+
- sig/anthropic/models/beta/beta_citation_page_location_param.rbs
|
601
|
+
- sig/anthropic/models/beta/beta_citation_web_search_result_location_param.rbs
|
602
|
+
- sig/anthropic/models/beta/beta_citations_config_param.rbs
|
603
|
+
- sig/anthropic/models/beta/beta_citations_delta.rbs
|
604
|
+
- sig/anthropic/models/beta/beta_citations_web_search_result_location.rbs
|
605
|
+
- sig/anthropic/models/beta/beta_content_block.rbs
|
606
|
+
- sig/anthropic/models/beta/beta_content_block_param.rbs
|
607
|
+
- sig/anthropic/models/beta/beta_content_block_source.rbs
|
608
|
+
- sig/anthropic/models/beta/beta_content_block_source_content.rbs
|
609
|
+
- sig/anthropic/models/beta/beta_image_block_param.rbs
|
610
|
+
- sig/anthropic/models/beta/beta_input_json_delta.rbs
|
611
|
+
- sig/anthropic/models/beta/beta_message.rbs
|
612
|
+
- sig/anthropic/models/beta/beta_message_delta_usage.rbs
|
613
|
+
- sig/anthropic/models/beta/beta_message_param.rbs
|
614
|
+
- sig/anthropic/models/beta/beta_message_tokens_count.rbs
|
615
|
+
- sig/anthropic/models/beta/beta_metadata.rbs
|
616
|
+
- sig/anthropic/models/beta/beta_model_info.rbs
|
617
|
+
- sig/anthropic/models/beta/beta_plain_text_source.rbs
|
618
|
+
- sig/anthropic/models/beta/beta_raw_content_block_delta.rbs
|
619
|
+
- sig/anthropic/models/beta/beta_raw_content_block_delta_event.rbs
|
620
|
+
- sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs
|
621
|
+
- sig/anthropic/models/beta/beta_raw_content_block_stop_event.rbs
|
622
|
+
- sig/anthropic/models/beta/beta_raw_message_delta_event.rbs
|
623
|
+
- sig/anthropic/models/beta/beta_raw_message_start_event.rbs
|
624
|
+
- sig/anthropic/models/beta/beta_raw_message_stop_event.rbs
|
625
|
+
- sig/anthropic/models/beta/beta_raw_message_stream_event.rbs
|
626
|
+
- sig/anthropic/models/beta/beta_redacted_thinking_block.rbs
|
627
|
+
- sig/anthropic/models/beta/beta_redacted_thinking_block_param.rbs
|
628
|
+
- sig/anthropic/models/beta/beta_server_tool_usage.rbs
|
629
|
+
- sig/anthropic/models/beta/beta_server_tool_use_block.rbs
|
630
|
+
- sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs
|
631
|
+
- sig/anthropic/models/beta/beta_signature_delta.rbs
|
632
|
+
- sig/anthropic/models/beta/beta_stop_reason.rbs
|
633
|
+
- sig/anthropic/models/beta/beta_text_block.rbs
|
634
|
+
- sig/anthropic/models/beta/beta_text_block_param.rbs
|
635
|
+
- sig/anthropic/models/beta/beta_text_citation.rbs
|
636
|
+
- sig/anthropic/models/beta/beta_text_citation_param.rbs
|
637
|
+
- sig/anthropic/models/beta/beta_text_delta.rbs
|
638
|
+
- sig/anthropic/models/beta/beta_thinking_block.rbs
|
639
|
+
- sig/anthropic/models/beta/beta_thinking_block_param.rbs
|
640
|
+
- sig/anthropic/models/beta/beta_thinking_config_disabled.rbs
|
641
|
+
- sig/anthropic/models/beta/beta_thinking_config_enabled.rbs
|
642
|
+
- sig/anthropic/models/beta/beta_thinking_config_param.rbs
|
643
|
+
- sig/anthropic/models/beta/beta_thinking_delta.rbs
|
644
|
+
- sig/anthropic/models/beta/beta_tool.rbs
|
645
|
+
- sig/anthropic/models/beta/beta_tool_bash_20241022.rbs
|
646
|
+
- sig/anthropic/models/beta/beta_tool_bash_20250124.rbs
|
647
|
+
- sig/anthropic/models/beta/beta_tool_choice.rbs
|
648
|
+
- sig/anthropic/models/beta/beta_tool_choice_any.rbs
|
649
|
+
- sig/anthropic/models/beta/beta_tool_choice_auto.rbs
|
650
|
+
- sig/anthropic/models/beta/beta_tool_choice_none.rbs
|
651
|
+
- sig/anthropic/models/beta/beta_tool_choice_tool.rbs
|
652
|
+
- sig/anthropic/models/beta/beta_tool_computer_use_20241022.rbs
|
653
|
+
- sig/anthropic/models/beta/beta_tool_computer_use_20250124.rbs
|
654
|
+
- sig/anthropic/models/beta/beta_tool_result_block_param.rbs
|
655
|
+
- sig/anthropic/models/beta/beta_tool_text_editor_20241022.rbs
|
656
|
+
- sig/anthropic/models/beta/beta_tool_text_editor_20250124.rbs
|
657
|
+
- sig/anthropic/models/beta/beta_tool_union.rbs
|
658
|
+
- sig/anthropic/models/beta/beta_tool_use_block.rbs
|
659
|
+
- sig/anthropic/models/beta/beta_tool_use_block_param.rbs
|
660
|
+
- sig/anthropic/models/beta/beta_url_image_source.rbs
|
661
|
+
- sig/anthropic/models/beta/beta_url_pdf_source.rbs
|
662
|
+
- sig/anthropic/models/beta/beta_usage.rbs
|
663
|
+
- sig/anthropic/models/beta/beta_web_search_result_block.rbs
|
664
|
+
- sig/anthropic/models/beta/beta_web_search_result_block_param.rbs
|
665
|
+
- sig/anthropic/models/beta/beta_web_search_tool_20250305.rbs
|
666
|
+
- sig/anthropic/models/beta/beta_web_search_tool_request_error.rbs
|
667
|
+
- sig/anthropic/models/beta/beta_web_search_tool_result_block.rbs
|
668
|
+
- sig/anthropic/models/beta/beta_web_search_tool_result_block_content.rbs
|
669
|
+
- sig/anthropic/models/beta/beta_web_search_tool_result_block_param.rbs
|
670
|
+
- sig/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rbs
|
671
|
+
- sig/anthropic/models/beta/beta_web_search_tool_result_error.rbs
|
672
|
+
- sig/anthropic/models/beta/message_count_tokens_params.rbs
|
673
|
+
- sig/anthropic/models/beta/message_create_params.rbs
|
674
|
+
- sig/anthropic/models/beta/messages/batch_cancel_params.rbs
|
675
|
+
- sig/anthropic/models/beta/messages/batch_create_params.rbs
|
676
|
+
- sig/anthropic/models/beta/messages/batch_delete_params.rbs
|
677
|
+
- sig/anthropic/models/beta/messages/batch_list_params.rbs
|
678
|
+
- sig/anthropic/models/beta/messages/batch_results_params.rbs
|
679
|
+
- sig/anthropic/models/beta/messages/batch_retrieve_params.rbs
|
680
|
+
- sig/anthropic/models/beta/messages/beta_deleted_message_batch.rbs
|
681
|
+
- sig/anthropic/models/beta/messages/beta_message_batch.rbs
|
682
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbs
|
683
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_errored_result.rbs
|
684
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_expired_result.rbs
|
685
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_individual_response.rbs
|
686
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_request_counts.rbs
|
687
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_result.rbs
|
688
|
+
- sig/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbs
|
689
|
+
- sig/anthropic/models/beta/model_list_params.rbs
|
690
|
+
- sig/anthropic/models/beta/model_retrieve_params.rbs
|
691
|
+
- sig/anthropic/models/beta_api_error.rbs
|
692
|
+
- sig/anthropic/models/beta_authentication_error.rbs
|
693
|
+
- sig/anthropic/models/beta_billing_error.rbs
|
694
|
+
- sig/anthropic/models/beta_error.rbs
|
695
|
+
- sig/anthropic/models/beta_error_response.rbs
|
696
|
+
- sig/anthropic/models/beta_gateway_timeout_error.rbs
|
697
|
+
- sig/anthropic/models/beta_invalid_request_error.rbs
|
698
|
+
- sig/anthropic/models/beta_not_found_error.rbs
|
699
|
+
- sig/anthropic/models/beta_overloaded_error.rbs
|
700
|
+
- sig/anthropic/models/beta_permission_error.rbs
|
701
|
+
- sig/anthropic/models/beta_rate_limit_error.rbs
|
702
|
+
- sig/anthropic/models/billing_error.rbs
|
703
|
+
- sig/anthropic/models/cache_control_ephemeral.rbs
|
704
|
+
- sig/anthropic/models/citation_char_location.rbs
|
705
|
+
- sig/anthropic/models/citation_char_location_param.rbs
|
706
|
+
- sig/anthropic/models/citation_content_block_location.rbs
|
707
|
+
- sig/anthropic/models/citation_content_block_location_param.rbs
|
708
|
+
- sig/anthropic/models/citation_page_location.rbs
|
709
|
+
- sig/anthropic/models/citation_page_location_param.rbs
|
710
|
+
- sig/anthropic/models/citation_web_search_result_location_param.rbs
|
711
|
+
- sig/anthropic/models/citations_config_param.rbs
|
712
|
+
- sig/anthropic/models/citations_delta.rbs
|
713
|
+
- sig/anthropic/models/citations_web_search_result_location.rbs
|
714
|
+
- sig/anthropic/models/completion.rbs
|
715
|
+
- sig/anthropic/models/completion_create_params.rbs
|
716
|
+
- sig/anthropic/models/content_block.rbs
|
717
|
+
- sig/anthropic/models/content_block_param.rbs
|
718
|
+
- sig/anthropic/models/content_block_source.rbs
|
719
|
+
- sig/anthropic/models/content_block_source_content.rbs
|
720
|
+
- sig/anthropic/models/document_block_param.rbs
|
721
|
+
- sig/anthropic/models/error_object.rbs
|
722
|
+
- sig/anthropic/models/error_response.rbs
|
723
|
+
- sig/anthropic/models/gateway_timeout_error.rbs
|
724
|
+
- sig/anthropic/models/image_block_param.rbs
|
725
|
+
- sig/anthropic/models/input_json_delta.rbs
|
726
|
+
- sig/anthropic/models/invalid_request_error.rbs
|
727
|
+
- sig/anthropic/models/message.rbs
|
728
|
+
- sig/anthropic/models/message_count_tokens_params.rbs
|
729
|
+
- sig/anthropic/models/message_count_tokens_tool.rbs
|
730
|
+
- sig/anthropic/models/message_create_params.rbs
|
731
|
+
- sig/anthropic/models/message_delta_usage.rbs
|
732
|
+
- sig/anthropic/models/message_param.rbs
|
733
|
+
- sig/anthropic/models/message_tokens_count.rbs
|
734
|
+
- sig/anthropic/models/messages/batch_cancel_params.rbs
|
735
|
+
- sig/anthropic/models/messages/batch_create_params.rbs
|
736
|
+
- sig/anthropic/models/messages/batch_delete_params.rbs
|
737
|
+
- sig/anthropic/models/messages/batch_list_params.rbs
|
738
|
+
- sig/anthropic/models/messages/batch_results_params.rbs
|
739
|
+
- sig/anthropic/models/messages/batch_retrieve_params.rbs
|
740
|
+
- sig/anthropic/models/messages/deleted_message_batch.rbs
|
741
|
+
- sig/anthropic/models/messages/message_batch.rbs
|
742
|
+
- sig/anthropic/models/messages/message_batch_canceled_result.rbs
|
743
|
+
- sig/anthropic/models/messages/message_batch_errored_result.rbs
|
744
|
+
- sig/anthropic/models/messages/message_batch_expired_result.rbs
|
745
|
+
- sig/anthropic/models/messages/message_batch_individual_response.rbs
|
746
|
+
- sig/anthropic/models/messages/message_batch_request_counts.rbs
|
747
|
+
- sig/anthropic/models/messages/message_batch_result.rbs
|
748
|
+
- sig/anthropic/models/messages/message_batch_succeeded_result.rbs
|
749
|
+
- sig/anthropic/models/metadata.rbs
|
750
|
+
- sig/anthropic/models/model.rbs
|
751
|
+
- sig/anthropic/models/model_info.rbs
|
752
|
+
- sig/anthropic/models/model_list_params.rbs
|
753
|
+
- sig/anthropic/models/model_retrieve_params.rbs
|
754
|
+
- sig/anthropic/models/not_found_error.rbs
|
755
|
+
- sig/anthropic/models/overloaded_error.rbs
|
756
|
+
- sig/anthropic/models/permission_error.rbs
|
757
|
+
- sig/anthropic/models/plain_text_source.rbs
|
758
|
+
- sig/anthropic/models/rate_limit_error.rbs
|
759
|
+
- sig/anthropic/models/raw_content_block_delta.rbs
|
760
|
+
- sig/anthropic/models/raw_content_block_delta_event.rbs
|
761
|
+
- sig/anthropic/models/raw_content_block_start_event.rbs
|
762
|
+
- sig/anthropic/models/raw_content_block_stop_event.rbs
|
763
|
+
- sig/anthropic/models/raw_message_delta_event.rbs
|
764
|
+
- sig/anthropic/models/raw_message_start_event.rbs
|
765
|
+
- sig/anthropic/models/raw_message_stop_event.rbs
|
766
|
+
- sig/anthropic/models/raw_message_stream_event.rbs
|
767
|
+
- sig/anthropic/models/redacted_thinking_block.rbs
|
768
|
+
- sig/anthropic/models/redacted_thinking_block_param.rbs
|
769
|
+
- sig/anthropic/models/server_tool_usage.rbs
|
770
|
+
- sig/anthropic/models/server_tool_use_block.rbs
|
771
|
+
- sig/anthropic/models/server_tool_use_block_param.rbs
|
772
|
+
- sig/anthropic/models/signature_delta.rbs
|
773
|
+
- sig/anthropic/models/stop_reason.rbs
|
774
|
+
- sig/anthropic/models/text_block.rbs
|
775
|
+
- sig/anthropic/models/text_block_param.rbs
|
776
|
+
- sig/anthropic/models/text_citation.rbs
|
777
|
+
- sig/anthropic/models/text_citation_param.rbs
|
778
|
+
- sig/anthropic/models/text_delta.rbs
|
779
|
+
- sig/anthropic/models/thinking_block.rbs
|
780
|
+
- sig/anthropic/models/thinking_block_param.rbs
|
781
|
+
- sig/anthropic/models/thinking_config_disabled.rbs
|
782
|
+
- sig/anthropic/models/thinking_config_enabled.rbs
|
783
|
+
- sig/anthropic/models/thinking_config_param.rbs
|
784
|
+
- sig/anthropic/models/thinking_delta.rbs
|
785
|
+
- sig/anthropic/models/tool.rbs
|
786
|
+
- sig/anthropic/models/tool_bash_20250124.rbs
|
787
|
+
- sig/anthropic/models/tool_choice.rbs
|
788
|
+
- sig/anthropic/models/tool_choice_any.rbs
|
789
|
+
- sig/anthropic/models/tool_choice_auto.rbs
|
790
|
+
- sig/anthropic/models/tool_choice_none.rbs
|
791
|
+
- sig/anthropic/models/tool_choice_tool.rbs
|
792
|
+
- sig/anthropic/models/tool_result_block_param.rbs
|
793
|
+
- sig/anthropic/models/tool_text_editor_20250124.rbs
|
794
|
+
- sig/anthropic/models/tool_union.rbs
|
795
|
+
- sig/anthropic/models/tool_use_block.rbs
|
796
|
+
- sig/anthropic/models/tool_use_block_param.rbs
|
797
|
+
- sig/anthropic/models/url_image_source.rbs
|
798
|
+
- sig/anthropic/models/url_pdf_source.rbs
|
799
|
+
- sig/anthropic/models/usage.rbs
|
800
|
+
- sig/anthropic/models/web_search_result_block.rbs
|
801
|
+
- sig/anthropic/models/web_search_result_block_param.rbs
|
802
|
+
- sig/anthropic/models/web_search_tool_20250305.rbs
|
803
|
+
- sig/anthropic/models/web_search_tool_request_error.rbs
|
804
|
+
- sig/anthropic/models/web_search_tool_result_block.rbs
|
805
|
+
- sig/anthropic/models/web_search_tool_result_block_content.rbs
|
806
|
+
- sig/anthropic/models/web_search_tool_result_block_param.rbs
|
807
|
+
- sig/anthropic/models/web_search_tool_result_block_param_content.rbs
|
808
|
+
- sig/anthropic/models/web_search_tool_result_error.rbs
|
809
|
+
- sig/anthropic/request_options.rbs
|
810
|
+
- sig/anthropic/resources/beta.rbs
|
811
|
+
- sig/anthropic/resources/beta/messages.rbs
|
812
|
+
- sig/anthropic/resources/beta/messages/batches.rbs
|
813
|
+
- sig/anthropic/resources/beta/models.rbs
|
814
|
+
- sig/anthropic/resources/completions.rbs
|
815
|
+
- sig/anthropic/resources/messages.rbs
|
816
|
+
- sig/anthropic/resources/messages/batches.rbs
|
817
|
+
- sig/anthropic/resources/models.rbs
|
818
|
+
- sig/anthropic/version.rbs
|
819
|
+
- sig/anthropic/vertex.rbs
|
820
|
+
homepage: https://gemdocs.org/gems/anthropic
|
821
|
+
licenses: []
|
99
822
|
metadata:
|
100
|
-
homepage_uri: https://
|
101
|
-
source_code_uri: https://github.com/
|
102
|
-
|
103
|
-
rubygems_mfa_required: 'true'
|
823
|
+
homepage_uri: https://gemdocs.org/gems/anthropic
|
824
|
+
source_code_uri: https://github.com/anthropics/anthropic-sdk-ruby
|
825
|
+
rubygems_mfa_required: 'false'
|
104
826
|
post_install_message:
|
105
827
|
rdoc_options: []
|
106
828
|
require_paths:
|
@@ -109,15 +831,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
109
831
|
requirements:
|
110
832
|
- - ">="
|
111
833
|
- !ruby/object:Gem::Version
|
112
|
-
version: 2.
|
834
|
+
version: 3.2.0
|
113
835
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
836
|
requirements:
|
115
837
|
- - ">="
|
116
838
|
- !ruby/object:Gem::Version
|
117
839
|
version: '0'
|
118
840
|
requirements: []
|
119
|
-
rubygems_version: 3.
|
841
|
+
rubygems_version: 3.4.1
|
120
842
|
signing_key:
|
121
843
|
specification_version: 4
|
122
|
-
summary:
|
844
|
+
summary: Ruby library to access the Anthropic API
|
123
845
|
test_files: []
|