├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── create-releases.yml │ ├── publish-gem.yml │ └── release-doctor.yml ├── .gitignore ├── .release-please-manifest.json ├── .rubocop.yml ├── .ruby-version ├── .solargraph.yml ├── .stats.yml ├── .yardopts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── Steepfile ├── anthropic.gemspec ├── bin ├── check-release-environment └── publish-gem ├── examples ├── auto_compaction.rb ├── auto_looping_tools.rb ├── auto_looping_tools_advanced.rb ├── auto_looping_tools_streaming.rb ├── batch_results.rb ├── bedrock │ ├── bedrock.rb │ └── bedrock_beta_computer_use.rb ├── citations_stream.rb ├── fine_grained_tool_streaming.rb ├── images.rb ├── input_schemas.rb ├── logo.png ├── messages.rb ├── messages_stream.rb ├── messages_stream_advanced.rb ├── sorbet_demo.rb ├── structured_output.rb ├── text_stream.rb ├── thinking.rb ├── thinking_stream.rb ├── tools.rb ├── tools_custom_name.rb ├── tools_stream.rb ├── vertex │ ├── vertex.rb │ └── vertex_beta_computer_use.rb ├── web_search.rb └── web_search_stream.rb ├── helpers.md ├── lib ├── anthropic.rb └── anthropic │ ├── bedrock.rb │ ├── client.rb │ ├── errors.rb │ ├── file_part.rb │ ├── helpers │ ├── bedrock │ │ └── client.rb │ ├── input_schema.rb │ ├── input_schema │ │ ├── array_of.rb │ │ ├── base_model.rb │ │ ├── boolean.rb │ │ ├── enum_of.rb │ │ ├── json_schema_converter.rb │ │ ├── parsed_json.rb │ │ ├── supported_schemas.rb │ │ └── union_of.rb │ ├── messages.rb │ ├── streaming.rb │ ├── streaming │ │ ├── events.rb │ │ └── message_stream.rb │ ├── tools.rb │ ├── tools │ │ ├── base_tool.rb │ │ ├── compaction_control.rb │ │ └── runner.rb │ └── vertex │ │ └── client.rb │ ├── input_schema.rb │ ├── internal.rb │ ├── internal │ ├── jsonl_stream.rb │ ├── page.rb │ ├── page_cursor.rb │ ├── stream.rb │ ├── token_page.rb │ ├── transport │ │ ├── base_client.rb │ │ └── pooled_net_requester.rb │ ├── type │ │ ├── array_of.rb │ │ ├── base_model.rb │ │ ├── base_page.rb │ │ ├── base_stream.rb │ │ ├── boolean.rb │ │ ├── converter.rb │ │ ├── enum.rb │ │ ├── file_input.rb │ │ ├── hash_of.rb │ │ ├── request_parameters.rb │ │ ├── union.rb │ │ └── unknown.rb │ └── util.rb │ ├── models.rb │ ├── models │ ├── anthropic_beta.rb │ ├── api_error_object.rb │ ├── authentication_error.rb │ ├── base64_image_source.rb │ ├── base64_pdf_source.rb │ ├── beta │ │ ├── beta_all_thinking_turns.rb │ │ ├── beta_base64_image_source.rb │ │ ├── beta_base64_pdf_block.rb │ │ ├── beta_base64_pdf_source.rb │ │ ├── beta_bash_code_execution_output_block.rb │ │ ├── beta_bash_code_execution_output_block_param.rb │ │ ├── beta_bash_code_execution_result_block.rb │ │ ├── beta_bash_code_execution_result_block_param.rb │ │ ├── beta_bash_code_execution_tool_result_block.rb │ │ ├── beta_bash_code_execution_tool_result_block_param.rb │ │ ├── beta_bash_code_execution_tool_result_error.rb │ │ ├── beta_bash_code_execution_tool_result_error_param.rb │ │ ├── beta_cache_control_ephemeral.rb │ │ ├── beta_cache_creation.rb │ │ ├── beta_citation_char_location.rb │ │ ├── beta_citation_char_location_param.rb │ │ ├── beta_citation_config.rb │ │ ├── beta_citation_content_block_location.rb │ │ ├── beta_citation_content_block_location_param.rb │ │ ├── beta_citation_page_location.rb │ │ ├── beta_citation_page_location_param.rb │ │ ├── beta_citation_search_result_location.rb │ │ ├── beta_citation_search_result_location_param.rb │ │ ├── beta_citation_web_search_result_location_param.rb │ │ ├── beta_citations_config_param.rb │ │ ├── beta_citations_delta.rb │ │ ├── beta_citations_web_search_result_location.rb │ │ ├── beta_clear_thinking_20251015_edit.rb │ │ ├── beta_clear_thinking_20251015_edit_response.rb │ │ ├── beta_clear_tool_uses_20250919_edit.rb │ │ ├── beta_clear_tool_uses_20250919_edit_response.rb │ │ ├── beta_code_execution_output_block.rb │ │ ├── beta_code_execution_output_block_param.rb │ │ ├── beta_code_execution_result_block.rb │ │ ├── beta_code_execution_result_block_param.rb │ │ ├── beta_code_execution_tool_20250522.rb │ │ ├── beta_code_execution_tool_20250825.rb │ │ ├── beta_code_execution_tool_result_block.rb │ │ ├── beta_code_execution_tool_result_block_content.rb │ │ ├── beta_code_execution_tool_result_block_param.rb │ │ ├── beta_code_execution_tool_result_block_param_content.rb │ │ ├── beta_code_execution_tool_result_error.rb │ │ ├── beta_code_execution_tool_result_error_code.rb │ │ ├── beta_code_execution_tool_result_error_param.rb │ │ ├── beta_container.rb │ │ ├── beta_container_params.rb │ │ ├── beta_container_upload_block.rb │ │ ├── beta_container_upload_block_param.rb │ │ ├── beta_content_block.rb │ │ ├── beta_content_block_param.rb │ │ ├── beta_content_block_source.rb │ │ ├── beta_content_block_source_content.rb │ │ ├── beta_context_management_config.rb │ │ ├── beta_context_management_response.rb │ │ ├── beta_count_tokens_context_management_response.rb │ │ ├── beta_direct_caller.rb │ │ ├── beta_document_block.rb │ │ ├── beta_file_document_source.rb │ │ ├── beta_file_image_source.rb │ │ ├── beta_image_block_param.rb │ │ ├── beta_input_json_delta.rb │ │ ├── beta_input_tokens_clear_at_least.rb │ │ ├── beta_input_tokens_trigger.rb │ │ ├── beta_json_output_format.rb │ │ ├── beta_mcp_tool_config.rb │ │ ├── beta_mcp_tool_default_config.rb │ │ ├── beta_mcp_tool_result_block.rb │ │ ├── beta_mcp_tool_use_block.rb │ │ ├── beta_mcp_tool_use_block_param.rb │ │ ├── beta_mcp_toolset.rb │ │ ├── beta_memory_tool_20250818.rb │ │ ├── beta_memory_tool_20250818_command.rb │ │ ├── beta_memory_tool_20250818_create_command.rb │ │ ├── beta_memory_tool_20250818_delete_command.rb │ │ ├── beta_memory_tool_20250818_insert_command.rb │ │ ├── beta_memory_tool_20250818_rename_command.rb │ │ ├── beta_memory_tool_20250818_str_replace_command.rb │ │ ├── beta_memory_tool_20250818_view_command.rb │ │ ├── beta_message.rb │ │ ├── beta_message_delta_usage.rb │ │ ├── beta_message_param.rb │ │ ├── beta_message_tokens_count.rb │ │ ├── beta_metadata.rb │ │ ├── beta_model_info.rb │ │ ├── beta_output_config.rb │ │ ├── beta_plain_text_source.rb │ │ ├── beta_raw_content_block_delta.rb │ │ ├── beta_raw_content_block_delta_event.rb │ │ ├── beta_raw_content_block_start_event.rb │ │ ├── beta_raw_content_block_stop_event.rb │ │ ├── beta_raw_message_delta_event.rb │ │ ├── beta_raw_message_start_event.rb │ │ ├── beta_raw_message_stop_event.rb │ │ ├── beta_raw_message_stream_event.rb │ │ ├── beta_redacted_thinking_block.rb │ │ ├── beta_redacted_thinking_block_param.rb │ │ ├── beta_request_document_block.rb │ │ ├── beta_request_mcp_server_tool_configuration.rb │ │ ├── beta_request_mcp_server_url_definition.rb │ │ ├── beta_request_mcp_tool_result_block_param.rb │ │ ├── beta_search_result_block_param.rb │ │ ├── beta_server_tool_caller.rb │ │ ├── beta_server_tool_usage.rb │ │ ├── beta_server_tool_use_block.rb │ │ ├── beta_server_tool_use_block_param.rb │ │ ├── beta_signature_delta.rb │ │ ├── beta_skill.rb │ │ ├── beta_skill_params.rb │ │ ├── beta_stop_reason.rb │ │ ├── beta_text_block.rb │ │ ├── beta_text_block_param.rb │ │ ├── beta_text_citation.rb │ │ ├── beta_text_citation_param.rb │ │ ├── beta_text_delta.rb │ │ ├── beta_text_editor_code_execution_create_result_block.rb │ │ ├── beta_text_editor_code_execution_create_result_block_param.rb │ │ ├── beta_text_editor_code_execution_str_replace_result_block.rb │ │ ├── beta_text_editor_code_execution_str_replace_result_block_param.rb │ │ ├── beta_text_editor_code_execution_tool_result_block.rb │ │ ├── beta_text_editor_code_execution_tool_result_block_param.rb │ │ ├── beta_text_editor_code_execution_tool_result_error.rb │ │ ├── beta_text_editor_code_execution_tool_result_error_param.rb │ │ ├── beta_text_editor_code_execution_view_result_block.rb │ │ ├── beta_text_editor_code_execution_view_result_block_param.rb │ │ ├── beta_thinking_block.rb │ │ ├── beta_thinking_block_param.rb │ │ ├── beta_thinking_config_disabled.rb │ │ ├── beta_thinking_config_enabled.rb │ │ ├── beta_thinking_config_param.rb │ │ ├── beta_thinking_delta.rb │ │ ├── beta_thinking_turns.rb │ │ ├── beta_tool.rb │ │ ├── beta_tool_bash_20241022.rb │ │ ├── beta_tool_bash_20250124.rb │ │ ├── beta_tool_choice.rb │ │ ├── beta_tool_choice_any.rb │ │ ├── beta_tool_choice_auto.rb │ │ ├── beta_tool_choice_none.rb │ │ ├── beta_tool_choice_tool.rb │ │ ├── beta_tool_computer_use_20241022.rb │ │ ├── beta_tool_computer_use_20250124.rb │ │ ├── beta_tool_computer_use_20251124.rb │ │ ├── beta_tool_reference_block.rb │ │ ├── beta_tool_reference_block_param.rb │ │ ├── beta_tool_result_block_param.rb │ │ ├── beta_tool_search_tool_bm25_20251119.rb │ │ ├── beta_tool_search_tool_regex_20251119.rb │ │ ├── beta_tool_search_tool_result_block.rb │ │ ├── beta_tool_search_tool_result_block_param.rb │ │ ├── beta_tool_search_tool_result_error.rb │ │ ├── beta_tool_search_tool_result_error_param.rb │ │ ├── beta_tool_search_tool_search_result_block.rb │ │ ├── beta_tool_search_tool_search_result_block_param.rb │ │ ├── beta_tool_text_editor_20241022.rb │ │ ├── beta_tool_text_editor_20250124.rb │ │ ├── beta_tool_text_editor_20250429.rb │ │ ├── beta_tool_text_editor_20250728.rb │ │ ├── beta_tool_union.rb │ │ ├── beta_tool_use_block.rb │ │ ├── beta_tool_use_block_param.rb │ │ ├── beta_tool_uses_keep.rb │ │ ├── beta_tool_uses_trigger.rb │ │ ├── beta_url_image_source.rb │ │ ├── beta_url_pdf_source.rb │ │ ├── beta_usage.rb │ │ ├── beta_web_fetch_block.rb │ │ ├── beta_web_fetch_block_param.rb │ │ ├── beta_web_fetch_tool_20250910.rb │ │ ├── beta_web_fetch_tool_result_block.rb │ │ ├── beta_web_fetch_tool_result_block_param.rb │ │ ├── beta_web_fetch_tool_result_error_block.rb │ │ ├── beta_web_fetch_tool_result_error_block_param.rb │ │ ├── beta_web_fetch_tool_result_error_code.rb │ │ ├── beta_web_search_result_block.rb │ │ ├── beta_web_search_result_block_param.rb │ │ ├── beta_web_search_tool_20250305.rb │ │ ├── beta_web_search_tool_request_error.rb │ │ ├── beta_web_search_tool_result_block.rb │ │ ├── beta_web_search_tool_result_block_content.rb │ │ ├── beta_web_search_tool_result_block_param.rb │ │ ├── beta_web_search_tool_result_block_param_content.rb │ │ ├── beta_web_search_tool_result_error.rb │ │ ├── beta_web_search_tool_result_error_code.rb │ │ ├── deleted_file.rb │ │ ├── file_delete_params.rb │ │ ├── file_download_params.rb │ │ ├── file_list_params.rb │ │ ├── file_metadata.rb │ │ ├── file_retrieve_metadata_params.rb │ │ ├── file_upload_params.rb │ │ ├── message_count_tokens_params.rb │ │ ├── message_create_params.rb │ │ ├── messages │ │ │ ├── batch_cancel_params.rb │ │ │ ├── batch_create_params.rb │ │ │ ├── batch_delete_params.rb │ │ │ ├── batch_list_params.rb │ │ │ ├── batch_results_params.rb │ │ │ ├── batch_retrieve_params.rb │ │ │ ├── beta_deleted_message_batch.rb │ │ │ ├── beta_message_batch.rb │ │ │ ├── beta_message_batch_canceled_result.rb │ │ │ ├── beta_message_batch_errored_result.rb │ │ │ ├── beta_message_batch_expired_result.rb │ │ │ ├── beta_message_batch_individual_response.rb │ │ │ ├── beta_message_batch_request_counts.rb │ │ │ ├── beta_message_batch_result.rb │ │ │ └── beta_message_batch_succeeded_result.rb │ │ ├── model_list_params.rb │ │ ├── model_retrieve_params.rb │ │ ├── skill_create_params.rb │ │ ├── skill_create_response.rb │ │ ├── skill_delete_params.rb │ │ ├── skill_delete_response.rb │ │ ├── skill_list_params.rb │ │ ├── skill_list_response.rb │ │ ├── skill_retrieve_params.rb │ │ ├── skill_retrieve_response.rb │ │ └── skills │ │ │ ├── version_create_params.rb │ │ │ ├── version_create_response.rb │ │ │ ├── version_delete_params.rb │ │ │ ├── version_delete_response.rb │ │ │ ├── version_list_params.rb │ │ │ ├── version_list_response.rb │ │ │ ├── version_retrieve_params.rb │ │ │ └── version_retrieve_response.rb │ ├── beta_api_error.rb │ ├── beta_authentication_error.rb │ ├── beta_billing_error.rb │ ├── beta_error.rb │ ├── beta_error_response.rb │ ├── beta_gateway_timeout_error.rb │ ├── beta_invalid_request_error.rb │ ├── beta_not_found_error.rb │ ├── beta_overloaded_error.rb │ ├── beta_permission_error.rb │ ├── beta_rate_limit_error.rb │ ├── billing_error.rb │ ├── cache_control_ephemeral.rb │ ├── cache_creation.rb │ ├── citation_char_location.rb │ ├── citation_char_location_param.rb │ ├── citation_content_block_location.rb │ ├── citation_content_block_location_param.rb │ ├── citation_page_location.rb │ ├── citation_page_location_param.rb │ ├── citation_search_result_location_param.rb │ ├── citation_web_search_result_location_param.rb │ ├── citations_config_param.rb │ ├── citations_delta.rb │ ├── citations_search_result_location.rb │ ├── citations_web_search_result_location.rb │ ├── completion.rb │ ├── completion_create_params.rb │ ├── content_block.rb │ ├── content_block_param.rb │ ├── content_block_source.rb │ ├── content_block_source_content.rb │ ├── document_block_param.rb │ ├── error_object.rb │ ├── error_response.rb │ ├── gateway_timeout_error.rb │ ├── image_block_param.rb │ ├── input_json_delta.rb │ ├── invalid_request_error.rb │ ├── message.rb │ ├── message_count_tokens_params.rb │ ├── message_count_tokens_tool.rb │ ├── message_create_params.rb │ ├── message_delta_usage.rb │ ├── message_param.rb │ ├── message_tokens_count.rb │ ├── messages │ │ ├── batch_cancel_params.rb │ │ ├── batch_create_params.rb │ │ ├── batch_delete_params.rb │ │ ├── batch_list_params.rb │ │ ├── batch_results_params.rb │ │ ├── batch_retrieve_params.rb │ │ ├── deleted_message_batch.rb │ │ ├── message_batch.rb │ │ ├── message_batch_canceled_result.rb │ │ ├── message_batch_errored_result.rb │ │ ├── message_batch_expired_result.rb │ │ ├── message_batch_individual_response.rb │ │ ├── message_batch_request_counts.rb │ │ ├── message_batch_result.rb │ │ └── message_batch_succeeded_result.rb │ ├── metadata.rb │ ├── model.rb │ ├── model_info.rb │ ├── model_list_params.rb │ ├── model_retrieve_params.rb │ ├── not_found_error.rb │ ├── overloaded_error.rb │ ├── permission_error.rb │ ├── plain_text_source.rb │ ├── rate_limit_error.rb │ ├── raw_content_block_delta.rb │ ├── raw_content_block_delta_event.rb │ ├── raw_content_block_start_event.rb │ ├── raw_content_block_stop_event.rb │ ├── raw_message_delta_event.rb │ ├── raw_message_start_event.rb │ ├── raw_message_stop_event.rb │ ├── raw_message_stream_event.rb │ ├── redacted_thinking_block.rb │ ├── redacted_thinking_block_param.rb │ ├── search_result_block_param.rb │ ├── server_tool_usage.rb │ ├── server_tool_use_block.rb │ ├── server_tool_use_block_param.rb │ ├── signature_delta.rb │ ├── stop_reason.rb │ ├── text_block.rb │ ├── text_block_param.rb │ ├── text_citation.rb │ ├── text_citation_param.rb │ ├── text_delta.rb │ ├── thinking_block.rb │ ├── thinking_block_param.rb │ ├── thinking_config_disabled.rb │ ├── thinking_config_enabled.rb │ ├── thinking_config_param.rb │ ├── thinking_delta.rb │ ├── tool.rb │ ├── tool_bash_20250124.rb │ ├── tool_choice.rb │ ├── tool_choice_any.rb │ ├── tool_choice_auto.rb │ ├── tool_choice_none.rb │ ├── tool_choice_tool.rb │ ├── tool_result_block_param.rb │ ├── tool_text_editor_20250124.rb │ ├── tool_text_editor_20250429.rb │ ├── tool_text_editor_20250728.rb │ ├── tool_union.rb │ ├── tool_use_block.rb │ ├── tool_use_block_param.rb │ ├── url_image_source.rb │ ├── url_pdf_source.rb │ ├── usage.rb │ ├── web_search_result_block.rb │ ├── web_search_result_block_param.rb │ ├── web_search_tool_20250305.rb │ ├── web_search_tool_request_error.rb │ ├── web_search_tool_result_block.rb │ ├── web_search_tool_result_block_content.rb │ ├── web_search_tool_result_block_param.rb │ ├── web_search_tool_result_block_param_content.rb │ └── web_search_tool_result_error.rb │ ├── request_options.rb │ ├── resources │ ├── beta.rb │ ├── beta │ │ ├── files.rb │ │ ├── messages.rb │ │ ├── messages │ │ │ └── batches.rb │ │ ├── models.rb │ │ ├── skills.rb │ │ └── skills │ │ │ └── versions.rb │ ├── completions.rb │ ├── messages.rb │ ├── messages │ │ └── batches.rb │ └── models.rb │ ├── streaming.rb │ ├── version.rb │ └── vertex.rb ├── manifest.yaml ├── rbi └── anthropic │ ├── bedrock.rbi │ ├── client.rbi │ ├── errors.rbi │ ├── file_part.rbi │ ├── helpers │ ├── bedrock │ │ └── client.rbi │ ├── input_schema.rbi │ ├── input_schema │ │ ├── array_of.rbi │ │ ├── base_model.rbi │ │ ├── boolean.rbi │ │ ├── enum_of.rbi │ │ ├── json_schema_converter.rbi │ │ └── union_of.rbi │ ├── streaming │ │ ├── events.rbi │ │ └── message_stream.rbi │ ├── tools.rbi │ ├── tools │ │ ├── base_tool.rbi │ │ └── runner.rbi │ └── vertex │ │ └── client.rbi │ ├── input_schema.rbi │ ├── internal.rbi │ ├── internal │ ├── jsonl_stream.rbi │ ├── page.rbi │ ├── page_cursor.rbi │ ├── stream.rbi │ ├── token_page.rbi │ ├── transport │ │ ├── base_client.rbi │ │ └── pooled_net_requester.rbi │ ├── type │ │ ├── array_of.rbi │ │ ├── base_model.rbi │ │ ├── base_page.rbi │ │ ├── base_stream.rbi │ │ ├── boolean.rbi │ │ ├── converter.rbi │ │ ├── enum.rbi │ │ ├── file_input.rbi │ │ ├── hash_of.rbi │ │ ├── request_parameters.rbi │ │ ├── union.rbi │ │ └── unknown.rbi │ └── util.rbi │ ├── models.rbi │ ├── models │ ├── anthropic_beta.rbi │ ├── api_error_object.rbi │ ├── authentication_error.rbi │ ├── base64_image_source.rbi │ ├── base64_pdf_source.rbi │ ├── beta │ │ ├── beta_all_thinking_turns.rbi │ │ ├── beta_base64_image_source.rbi │ │ ├── beta_base64_pdf_block.rbi │ │ ├── beta_base64_pdf_source.rbi │ │ ├── beta_bash_code_execution_output_block.rbi │ │ ├── beta_bash_code_execution_output_block_param.rbi │ │ ├── beta_bash_code_execution_result_block.rbi │ │ ├── beta_bash_code_execution_result_block_param.rbi │ │ ├── beta_bash_code_execution_tool_result_block.rbi │ │ ├── beta_bash_code_execution_tool_result_block_param.rbi │ │ ├── beta_bash_code_execution_tool_result_error.rbi │ │ ├── beta_bash_code_execution_tool_result_error_param.rbi │ │ ├── beta_cache_control_ephemeral.rbi │ │ ├── beta_cache_creation.rbi │ │ ├── beta_citation_char_location.rbi │ │ ├── beta_citation_char_location_param.rbi │ │ ├── beta_citation_config.rbi │ │ ├── beta_citation_content_block_location.rbi │ │ ├── beta_citation_content_block_location_param.rbi │ │ ├── beta_citation_page_location.rbi │ │ ├── beta_citation_page_location_param.rbi │ │ ├── beta_citation_search_result_location.rbi │ │ ├── beta_citation_search_result_location_param.rbi │ │ ├── beta_citation_web_search_result_location_param.rbi │ │ ├── beta_citations_config_param.rbi │ │ ├── beta_citations_delta.rbi │ │ ├── beta_citations_web_search_result_location.rbi │ │ ├── beta_clear_thinking_20251015_edit.rbi │ │ ├── beta_clear_thinking_20251015_edit_response.rbi │ │ ├── beta_clear_tool_uses_20250919_edit.rbi │ │ ├── beta_clear_tool_uses_20250919_edit_response.rbi │ │ ├── beta_code_execution_output_block.rbi │ │ ├── beta_code_execution_output_block_param.rbi │ │ ├── beta_code_execution_result_block.rbi │ │ ├── beta_code_execution_result_block_param.rbi │ │ ├── beta_code_execution_tool_20250522.rbi │ │ ├── beta_code_execution_tool_20250825.rbi │ │ ├── beta_code_execution_tool_result_block.rbi │ │ ├── beta_code_execution_tool_result_block_content.rbi │ │ ├── beta_code_execution_tool_result_block_param.rbi │ │ ├── beta_code_execution_tool_result_block_param_content.rbi │ │ ├── beta_code_execution_tool_result_error.rbi │ │ ├── beta_code_execution_tool_result_error_code.rbi │ │ ├── beta_code_execution_tool_result_error_param.rbi │ │ ├── beta_container.rbi │ │ ├── beta_container_params.rbi │ │ ├── beta_container_upload_block.rbi │ │ ├── beta_container_upload_block_param.rbi │ │ ├── beta_content_block.rbi │ │ ├── beta_content_block_param.rbi │ │ ├── beta_content_block_source.rbi │ │ ├── beta_content_block_source_content.rbi │ │ ├── beta_context_management_config.rbi │ │ ├── beta_context_management_response.rbi │ │ ├── beta_count_tokens_context_management_response.rbi │ │ ├── beta_direct_caller.rbi │ │ ├── beta_document_block.rbi │ │ ├── beta_file_document_source.rbi │ │ ├── beta_file_image_source.rbi │ │ ├── beta_image_block_param.rbi │ │ ├── beta_input_json_delta.rbi │ │ ├── beta_input_tokens_clear_at_least.rbi │ │ ├── beta_input_tokens_trigger.rbi │ │ ├── beta_json_output_format.rbi │ │ ├── beta_mcp_tool_config.rbi │ │ ├── beta_mcp_tool_default_config.rbi │ │ ├── beta_mcp_tool_result_block.rbi │ │ ├── beta_mcp_tool_use_block.rbi │ │ ├── beta_mcp_tool_use_block_param.rbi │ │ ├── beta_mcp_toolset.rbi │ │ ├── beta_memory_tool_20250818.rbi │ │ ├── beta_memory_tool_20250818_command.rbi │ │ ├── beta_memory_tool_20250818_create_command.rbi │ │ ├── beta_memory_tool_20250818_delete_command.rbi │ │ ├── beta_memory_tool_20250818_insert_command.rbi │ │ ├── beta_memory_tool_20250818_rename_command.rbi │ │ ├── beta_memory_tool_20250818_str_replace_command.rbi │ │ ├── beta_memory_tool_20250818_view_command.rbi │ │ ├── beta_message.rbi │ │ ├── beta_message_delta_usage.rbi │ │ ├── beta_message_param.rbi │ │ ├── beta_message_tokens_count.rbi │ │ ├── beta_metadata.rbi │ │ ├── beta_model_info.rbi │ │ ├── beta_output_config.rbi │ │ ├── beta_plain_text_source.rbi │ │ ├── beta_raw_content_block_delta.rbi │ │ ├── beta_raw_content_block_delta_event.rbi │ │ ├── beta_raw_content_block_start_event.rbi │ │ ├── beta_raw_content_block_stop_event.rbi │ │ ├── beta_raw_message_delta_event.rbi │ │ ├── beta_raw_message_start_event.rbi │ │ ├── beta_raw_message_stop_event.rbi │ │ ├── beta_raw_message_stream_event.rbi │ │ ├── beta_redacted_thinking_block.rbi │ │ ├── beta_redacted_thinking_block_param.rbi │ │ ├── beta_request_document_block.rbi │ │ ├── beta_request_mcp_server_tool_configuration.rbi │ │ ├── beta_request_mcp_server_url_definition.rbi │ │ ├── beta_request_mcp_tool_result_block_param.rbi │ │ ├── beta_search_result_block_param.rbi │ │ ├── beta_server_tool_caller.rbi │ │ ├── beta_server_tool_usage.rbi │ │ ├── beta_server_tool_use_block.rbi │ │ ├── beta_server_tool_use_block_param.rbi │ │ ├── beta_signature_delta.rbi │ │ ├── beta_skill.rbi │ │ ├── beta_skill_params.rbi │ │ ├── beta_stop_reason.rbi │ │ ├── beta_text_block.rbi │ │ ├── beta_text_block_param.rbi │ │ ├── beta_text_citation.rbi │ │ ├── beta_text_citation_param.rbi │ │ ├── beta_text_delta.rbi │ │ ├── beta_text_editor_code_execution_create_result_block.rbi │ │ ├── beta_text_editor_code_execution_create_result_block_param.rbi │ │ ├── beta_text_editor_code_execution_str_replace_result_block.rbi │ │ ├── beta_text_editor_code_execution_str_replace_result_block_param.rbi │ │ ├── beta_text_editor_code_execution_tool_result_block.rbi │ │ ├── beta_text_editor_code_execution_tool_result_block_param.rbi │ │ ├── beta_text_editor_code_execution_tool_result_error.rbi │ │ ├── beta_text_editor_code_execution_tool_result_error_param.rbi │ │ ├── beta_text_editor_code_execution_view_result_block.rbi │ │ ├── beta_text_editor_code_execution_view_result_block_param.rbi │ │ ├── beta_thinking_block.rbi │ │ ├── beta_thinking_block_param.rbi │ │ ├── beta_thinking_config_disabled.rbi │ │ ├── beta_thinking_config_enabled.rbi │ │ ├── beta_thinking_config_param.rbi │ │ ├── beta_thinking_delta.rbi │ │ ├── beta_thinking_turns.rbi │ │ ├── beta_tool.rbi │ │ ├── beta_tool_bash_20241022.rbi │ │ ├── beta_tool_bash_20250124.rbi │ │ ├── beta_tool_choice.rbi │ │ ├── beta_tool_choice_any.rbi │ │ ├── beta_tool_choice_auto.rbi │ │ ├── beta_tool_choice_none.rbi │ │ ├── beta_tool_choice_tool.rbi │ │ ├── beta_tool_computer_use_20241022.rbi │ │ ├── beta_tool_computer_use_20250124.rbi │ │ ├── beta_tool_computer_use_20251124.rbi │ │ ├── beta_tool_reference_block.rbi │ │ ├── beta_tool_reference_block_param.rbi │ │ ├── beta_tool_result_block_param.rbi │ │ ├── beta_tool_search_tool_bm25_20251119.rbi │ │ ├── beta_tool_search_tool_regex_20251119.rbi │ │ ├── beta_tool_search_tool_result_block.rbi │ │ ├── beta_tool_search_tool_result_block_param.rbi │ │ ├── beta_tool_search_tool_result_error.rbi │ │ ├── beta_tool_search_tool_result_error_param.rbi │ │ ├── beta_tool_search_tool_search_result_block.rbi │ │ ├── beta_tool_search_tool_search_result_block_param.rbi │ │ ├── beta_tool_text_editor_20241022.rbi │ │ ├── beta_tool_text_editor_20250124.rbi │ │ ├── beta_tool_text_editor_20250429.rbi │ │ ├── beta_tool_text_editor_20250728.rbi │ │ ├── beta_tool_union.rbi │ │ ├── beta_tool_use_block.rbi │ │ ├── beta_tool_use_block_param.rbi │ │ ├── beta_tool_uses_keep.rbi │ │ ├── beta_tool_uses_trigger.rbi │ │ ├── beta_url_image_source.rbi │ │ ├── beta_url_pdf_source.rbi │ │ ├── beta_usage.rbi │ │ ├── beta_web_fetch_block.rbi │ │ ├── beta_web_fetch_block_param.rbi │ │ ├── beta_web_fetch_tool_20250910.rbi │ │ ├── beta_web_fetch_tool_result_block.rbi │ │ ├── beta_web_fetch_tool_result_block_param.rbi │ │ ├── beta_web_fetch_tool_result_error_block.rbi │ │ ├── beta_web_fetch_tool_result_error_block_param.rbi │ │ ├── beta_web_fetch_tool_result_error_code.rbi │ │ ├── beta_web_search_result_block.rbi │ │ ├── beta_web_search_result_block_param.rbi │ │ ├── beta_web_search_tool_20250305.rbi │ │ ├── beta_web_search_tool_request_error.rbi │ │ ├── beta_web_search_tool_result_block.rbi │ │ ├── beta_web_search_tool_result_block_content.rbi │ │ ├── beta_web_search_tool_result_block_param.rbi │ │ ├── beta_web_search_tool_result_block_param_content.rbi │ │ ├── beta_web_search_tool_result_error.rbi │ │ ├── beta_web_search_tool_result_error_code.rbi │ │ ├── deleted_file.rbi │ │ ├── file_delete_params.rbi │ │ ├── file_download_params.rbi │ │ ├── file_list_params.rbi │ │ ├── file_metadata.rbi │ │ ├── file_retrieve_metadata_params.rbi │ │ ├── file_upload_params.rbi │ │ ├── message_count_tokens_params.rbi │ │ ├── message_create_params.rbi │ │ ├── messages │ │ │ ├── batch_cancel_params.rbi │ │ │ ├── batch_create_params.rbi │ │ │ ├── batch_delete_params.rbi │ │ │ ├── batch_list_params.rbi │ │ │ ├── batch_results_params.rbi │ │ │ ├── batch_retrieve_params.rbi │ │ │ ├── beta_deleted_message_batch.rbi │ │ │ ├── beta_message_batch.rbi │ │ │ ├── beta_message_batch_canceled_result.rbi │ │ │ ├── beta_message_batch_errored_result.rbi │ │ │ ├── beta_message_batch_expired_result.rbi │ │ │ ├── beta_message_batch_individual_response.rbi │ │ │ ├── beta_message_batch_request_counts.rbi │ │ │ ├── beta_message_batch_result.rbi │ │ │ └── beta_message_batch_succeeded_result.rbi │ │ ├── model_list_params.rbi │ │ ├── model_retrieve_params.rbi │ │ ├── skill_create_params.rbi │ │ ├── skill_create_response.rbi │ │ ├── skill_delete_params.rbi │ │ ├── skill_delete_response.rbi │ │ ├── skill_list_params.rbi │ │ ├── skill_list_response.rbi │ │ ├── skill_retrieve_params.rbi │ │ ├── skill_retrieve_response.rbi │ │ └── skills │ │ │ ├── version_create_params.rbi │ │ │ ├── version_create_response.rbi │ │ │ ├── version_delete_params.rbi │ │ │ ├── version_delete_response.rbi │ │ │ ├── version_list_params.rbi │ │ │ ├── version_list_response.rbi │ │ │ ├── version_retrieve_params.rbi │ │ │ └── version_retrieve_response.rbi │ ├── beta_api_error.rbi │ ├── beta_authentication_error.rbi │ ├── beta_billing_error.rbi │ ├── beta_error.rbi │ ├── beta_error_response.rbi │ ├── beta_gateway_timeout_error.rbi │ ├── beta_invalid_request_error.rbi │ ├── beta_not_found_error.rbi │ ├── beta_overloaded_error.rbi │ ├── beta_permission_error.rbi │ ├── beta_rate_limit_error.rbi │ ├── billing_error.rbi │ ├── cache_control_ephemeral.rbi │ ├── cache_creation.rbi │ ├── citation_char_location.rbi │ ├── citation_char_location_param.rbi │ ├── citation_content_block_location.rbi │ ├── citation_content_block_location_param.rbi │ ├── citation_page_location.rbi │ ├── citation_page_location_param.rbi │ ├── citation_search_result_location_param.rbi │ ├── citation_web_search_result_location_param.rbi │ ├── citations_config_param.rbi │ ├── citations_delta.rbi │ ├── citations_search_result_location.rbi │ ├── citations_web_search_result_location.rbi │ ├── completion.rbi │ ├── completion_create_params.rbi │ ├── content_block.rbi │ ├── content_block_param.rbi │ ├── content_block_source.rbi │ ├── content_block_source_content.rbi │ ├── document_block_param.rbi │ ├── error_object.rbi │ ├── error_response.rbi │ ├── gateway_timeout_error.rbi │ ├── image_block_param.rbi │ ├── input_json_delta.rbi │ ├── invalid_request_error.rbi │ ├── message.rbi │ ├── message_count_tokens_params.rbi │ ├── message_count_tokens_tool.rbi │ ├── message_create_params.rbi │ ├── message_delta_usage.rbi │ ├── message_param.rbi │ ├── message_tokens_count.rbi │ ├── messages │ │ ├── batch_cancel_params.rbi │ │ ├── batch_create_params.rbi │ │ ├── batch_delete_params.rbi │ │ ├── batch_list_params.rbi │ │ ├── batch_results_params.rbi │ │ ├── batch_retrieve_params.rbi │ │ ├── deleted_message_batch.rbi │ │ ├── message_batch.rbi │ │ ├── message_batch_canceled_result.rbi │ │ ├── message_batch_errored_result.rbi │ │ ├── message_batch_expired_result.rbi │ │ ├── message_batch_individual_response.rbi │ │ ├── message_batch_request_counts.rbi │ │ ├── message_batch_result.rbi │ │ └── message_batch_succeeded_result.rbi │ ├── metadata.rbi │ ├── model.rbi │ ├── model_info.rbi │ ├── model_list_params.rbi │ ├── model_retrieve_params.rbi │ ├── not_found_error.rbi │ ├── overloaded_error.rbi │ ├── permission_error.rbi │ ├── plain_text_source.rbi │ ├── rate_limit_error.rbi │ ├── raw_content_block_delta.rbi │ ├── raw_content_block_delta_event.rbi │ ├── raw_content_block_start_event.rbi │ ├── raw_content_block_stop_event.rbi │ ├── raw_message_delta_event.rbi │ ├── raw_message_start_event.rbi │ ├── raw_message_stop_event.rbi │ ├── raw_message_stream_event.rbi │ ├── redacted_thinking_block.rbi │ ├── redacted_thinking_block_param.rbi │ ├── search_result_block_param.rbi │ ├── server_tool_usage.rbi │ ├── server_tool_use_block.rbi │ ├── server_tool_use_block_param.rbi │ ├── signature_delta.rbi │ ├── stop_reason.rbi │ ├── text_block.rbi │ ├── text_block_param.rbi │ ├── text_citation.rbi │ ├── text_citation_param.rbi │ ├── text_delta.rbi │ ├── thinking_block.rbi │ ├── thinking_block_param.rbi │ ├── thinking_config_disabled.rbi │ ├── thinking_config_enabled.rbi │ ├── thinking_config_param.rbi │ ├── thinking_delta.rbi │ ├── tool.rbi │ ├── tool_bash_20250124.rbi │ ├── tool_choice.rbi │ ├── tool_choice_any.rbi │ ├── tool_choice_auto.rbi │ ├── tool_choice_none.rbi │ ├── tool_choice_tool.rbi │ ├── tool_result_block_param.rbi │ ├── tool_text_editor_20250124.rbi │ ├── tool_text_editor_20250429.rbi │ ├── tool_text_editor_20250728.rbi │ ├── tool_union.rbi │ ├── tool_use_block.rbi │ ├── tool_use_block_param.rbi │ ├── url_image_source.rbi │ ├── url_pdf_source.rbi │ ├── usage.rbi │ ├── web_search_result_block.rbi │ ├── web_search_result_block_param.rbi │ ├── web_search_tool_20250305.rbi │ ├── web_search_tool_request_error.rbi │ ├── web_search_tool_result_block.rbi │ ├── web_search_tool_result_block_content.rbi │ ├── web_search_tool_result_block_param.rbi │ ├── web_search_tool_result_block_param_content.rbi │ └── web_search_tool_result_error.rbi │ ├── request_options.rbi │ ├── resources │ ├── beta.rbi │ ├── beta │ │ ├── files.rbi │ │ ├── messages.rbi │ │ ├── messages │ │ │ └── batches.rbi │ │ ├── models.rbi │ │ ├── skills.rbi │ │ └── skills │ │ │ └── versions.rbi │ ├── completions.rbi │ ├── messages.rbi │ ├── messages │ │ └── batches.rbi │ └── models.rbi │ ├── streaming.rbi │ ├── version.rbi │ └── vertex.rbi ├── release-please-config.json ├── scripts ├── bootstrap ├── detect-breaking-changes ├── fast-format ├── format ├── lint ├── mock └── test ├── sig └── anthropic │ ├── bedrock.rbs │ ├── client.rbs │ ├── errors.rbs │ ├── file_part.rbs │ ├── helpers │ ├── bedrock │ │ └── client.rbs │ ├── streaming │ │ ├── events.rbs │ │ └── message_stream.rbs │ └── vertex │ │ └── client.rbs │ ├── internal.rbs │ ├── internal │ ├── jsonl_stream.rbs │ ├── page.rbs │ ├── page_cursor.rbs │ ├── stream.rbs │ ├── token_page.rbs │ ├── transport │ │ ├── base_client.rbs │ │ └── pooled_net_requester.rbs │ ├── type │ │ ├── array_of.rbs │ │ ├── base_model.rbs │ │ ├── base_page.rbs │ │ ├── base_stream.rbs │ │ ├── boolean.rbs │ │ ├── converter.rbs │ │ ├── enum.rbs │ │ ├── file_input.rbs │ │ ├── hash_of.rbs │ │ ├── request_parameters.rbs │ │ ├── union.rbs │ │ └── unknown.rbs │ └── util.rbs │ ├── models.rbs │ ├── models │ ├── anthropic_beta.rbs │ ├── api_error_object.rbs │ ├── authentication_error.rbs │ ├── base64_image_source.rbs │ ├── base64_pdf_source.rbs │ ├── beta │ │ ├── beta_all_thinking_turns.rbs │ │ ├── beta_base64_image_source.rbs │ │ ├── beta_base64_pdf_block.rbs │ │ ├── beta_base64_pdf_source.rbs │ │ ├── beta_bash_code_execution_output_block.rbs │ │ ├── beta_bash_code_execution_output_block_param.rbs │ │ ├── beta_bash_code_execution_result_block.rbs │ │ ├── beta_bash_code_execution_result_block_param.rbs │ │ ├── beta_bash_code_execution_tool_result_block.rbs │ │ ├── beta_bash_code_execution_tool_result_block_param.rbs │ │ ├── beta_bash_code_execution_tool_result_error.rbs │ │ ├── beta_bash_code_execution_tool_result_error_param.rbs │ │ ├── beta_cache_control_ephemeral.rbs │ │ ├── beta_cache_creation.rbs │ │ ├── beta_citation_char_location.rbs │ │ ├── beta_citation_char_location_param.rbs │ │ ├── beta_citation_config.rbs │ │ ├── beta_citation_content_block_location.rbs │ │ ├── beta_citation_content_block_location_param.rbs │ │ ├── beta_citation_page_location.rbs │ │ ├── beta_citation_page_location_param.rbs │ │ ├── beta_citation_search_result_location.rbs │ │ ├── beta_citation_search_result_location_param.rbs │ │ ├── beta_citation_web_search_result_location_param.rbs │ │ ├── beta_citations_config_param.rbs │ │ ├── beta_citations_delta.rbs │ │ ├── beta_citations_web_search_result_location.rbs │ │ ├── beta_clear_thinking_20251015_edit.rbs │ │ ├── beta_clear_thinking_20251015_edit_response.rbs │ │ ├── beta_clear_tool_uses_20250919_edit.rbs │ │ ├── beta_clear_tool_uses_20250919_edit_response.rbs │ │ ├── beta_code_execution_output_block.rbs │ │ ├── beta_code_execution_output_block_param.rbs │ │ ├── beta_code_execution_result_block.rbs │ │ ├── beta_code_execution_result_block_param.rbs │ │ ├── beta_code_execution_tool_20250522.rbs │ │ ├── beta_code_execution_tool_20250825.rbs │ │ ├── beta_code_execution_tool_result_block.rbs │ │ ├── beta_code_execution_tool_result_block_content.rbs │ │ ├── beta_code_execution_tool_result_block_param.rbs │ │ ├── beta_code_execution_tool_result_block_param_content.rbs │ │ ├── beta_code_execution_tool_result_error.rbs │ │ ├── beta_code_execution_tool_result_error_code.rbs │ │ ├── beta_code_execution_tool_result_error_param.rbs │ │ ├── beta_container.rbs │ │ ├── beta_container_params.rbs │ │ ├── beta_container_upload_block.rbs │ │ ├── beta_container_upload_block_param.rbs │ │ ├── beta_content_block.rbs │ │ ├── beta_content_block_param.rbs │ │ ├── beta_content_block_source.rbs │ │ ├── beta_content_block_source_content.rbs │ │ ├── beta_context_management_config.rbs │ │ ├── beta_context_management_response.rbs │ │ ├── beta_count_tokens_context_management_response.rbs │ │ ├── beta_direct_caller.rbs │ │ ├── beta_document_block.rbs │ │ ├── beta_file_document_source.rbs │ │ ├── beta_file_image_source.rbs │ │ ├── beta_image_block_param.rbs │ │ ├── beta_input_json_delta.rbs │ │ ├── beta_input_tokens_clear_at_least.rbs │ │ ├── beta_input_tokens_trigger.rbs │ │ ├── beta_json_output_format.rbs │ │ ├── beta_mcp_tool_config.rbs │ │ ├── beta_mcp_tool_default_config.rbs │ │ ├── beta_mcp_tool_result_block.rbs │ │ ├── beta_mcp_tool_use_block.rbs │ │ ├── beta_mcp_tool_use_block_param.rbs │ │ ├── beta_mcp_toolset.rbs │ │ ├── beta_memory_tool_20250818.rbs │ │ ├── beta_memory_tool_20250818_command.rbs │ │ ├── beta_memory_tool_20250818_create_command.rbs │ │ ├── beta_memory_tool_20250818_delete_command.rbs │ │ ├── beta_memory_tool_20250818_insert_command.rbs │ │ ├── beta_memory_tool_20250818_rename_command.rbs │ │ ├── beta_memory_tool_20250818_str_replace_command.rbs │ │ ├── beta_memory_tool_20250818_view_command.rbs │ │ ├── beta_message.rbs │ │ ├── beta_message_delta_usage.rbs │ │ ├── beta_message_param.rbs │ │ ├── beta_message_tokens_count.rbs │ │ ├── beta_metadata.rbs │ │ ├── beta_model_info.rbs │ │ ├── beta_output_config.rbs │ │ ├── beta_plain_text_source.rbs │ │ ├── beta_raw_content_block_delta.rbs │ │ ├── beta_raw_content_block_delta_event.rbs │ │ ├── beta_raw_content_block_start_event.rbs │ │ ├── beta_raw_content_block_stop_event.rbs │ │ ├── beta_raw_message_delta_event.rbs │ │ ├── beta_raw_message_start_event.rbs │ │ ├── beta_raw_message_stop_event.rbs │ │ ├── beta_raw_message_stream_event.rbs │ │ ├── beta_redacted_thinking_block.rbs │ │ ├── beta_redacted_thinking_block_param.rbs │ │ ├── beta_request_document_block.rbs │ │ ├── beta_request_mcp_server_tool_configuration.rbs │ │ ├── beta_request_mcp_server_url_definition.rbs │ │ ├── beta_request_mcp_tool_result_block_param.rbs │ │ ├── beta_search_result_block_param.rbs │ │ ├── beta_server_tool_caller.rbs │ │ ├── beta_server_tool_usage.rbs │ │ ├── beta_server_tool_use_block.rbs │ │ ├── beta_server_tool_use_block_param.rbs │ │ ├── beta_signature_delta.rbs │ │ ├── beta_skill.rbs │ │ ├── beta_skill_params.rbs │ │ ├── beta_stop_reason.rbs │ │ ├── beta_text_block.rbs │ │ ├── beta_text_block_param.rbs │ │ ├── beta_text_citation.rbs │ │ ├── beta_text_citation_param.rbs │ │ ├── beta_text_delta.rbs │ │ ├── beta_text_editor_code_execution_create_result_block.rbs │ │ ├── beta_text_editor_code_execution_create_result_block_param.rbs │ │ ├── beta_text_editor_code_execution_str_replace_result_block.rbs │ │ ├── beta_text_editor_code_execution_str_replace_result_block_param.rbs │ │ ├── beta_text_editor_code_execution_tool_result_block.rbs │ │ ├── beta_text_editor_code_execution_tool_result_block_param.rbs │ │ ├── beta_text_editor_code_execution_tool_result_error.rbs │ │ ├── beta_text_editor_code_execution_tool_result_error_param.rbs │ │ ├── beta_text_editor_code_execution_view_result_block.rbs │ │ ├── beta_text_editor_code_execution_view_result_block_param.rbs │ │ ├── beta_thinking_block.rbs │ │ ├── beta_thinking_block_param.rbs │ │ ├── beta_thinking_config_disabled.rbs │ │ ├── beta_thinking_config_enabled.rbs │ │ ├── beta_thinking_config_param.rbs │ │ ├── beta_thinking_delta.rbs │ │ ├── beta_thinking_turns.rbs │ │ ├── beta_tool.rbs │ │ ├── beta_tool_bash_20241022.rbs │ │ ├── beta_tool_bash_20250124.rbs │ │ ├── beta_tool_choice.rbs │ │ ├── beta_tool_choice_any.rbs │ │ ├── beta_tool_choice_auto.rbs │ │ ├── beta_tool_choice_none.rbs │ │ ├── beta_tool_choice_tool.rbs │ │ ├── beta_tool_computer_use_20241022.rbs │ │ ├── beta_tool_computer_use_20250124.rbs │ │ ├── beta_tool_computer_use_20251124.rbs │ │ ├── beta_tool_reference_block.rbs │ │ ├── beta_tool_reference_block_param.rbs │ │ ├── beta_tool_result_block_param.rbs │ │ ├── beta_tool_search_tool_bm25_20251119.rbs │ │ ├── beta_tool_search_tool_regex_20251119.rbs │ │ ├── beta_tool_search_tool_result_block.rbs │ │ ├── beta_tool_search_tool_result_block_param.rbs │ │ ├── beta_tool_search_tool_result_error.rbs │ │ ├── beta_tool_search_tool_result_error_param.rbs │ │ ├── beta_tool_search_tool_search_result_block.rbs │ │ ├── beta_tool_search_tool_search_result_block_param.rbs │ │ ├── beta_tool_text_editor_20241022.rbs │ │ ├── beta_tool_text_editor_20250124.rbs │ │ ├── beta_tool_text_editor_20250429.rbs │ │ ├── beta_tool_text_editor_20250728.rbs │ │ ├── beta_tool_union.rbs │ │ ├── beta_tool_use_block.rbs │ │ ├── beta_tool_use_block_param.rbs │ │ ├── beta_tool_uses_keep.rbs │ │ ├── beta_tool_uses_trigger.rbs │ │ ├── beta_url_image_source.rbs │ │ ├── beta_url_pdf_source.rbs │ │ ├── beta_usage.rbs │ │ ├── beta_web_fetch_block.rbs │ │ ├── beta_web_fetch_block_param.rbs │ │ ├── beta_web_fetch_tool_20250910.rbs │ │ ├── beta_web_fetch_tool_result_block.rbs │ │ ├── beta_web_fetch_tool_result_block_param.rbs │ │ ├── beta_web_fetch_tool_result_error_block.rbs │ │ ├── beta_web_fetch_tool_result_error_block_param.rbs │ │ ├── beta_web_fetch_tool_result_error_code.rbs │ │ ├── beta_web_search_result_block.rbs │ │ ├── beta_web_search_result_block_param.rbs │ │ ├── beta_web_search_tool_20250305.rbs │ │ ├── beta_web_search_tool_request_error.rbs │ │ ├── beta_web_search_tool_result_block.rbs │ │ ├── beta_web_search_tool_result_block_content.rbs │ │ ├── beta_web_search_tool_result_block_param.rbs │ │ ├── beta_web_search_tool_result_block_param_content.rbs │ │ ├── beta_web_search_tool_result_error.rbs │ │ ├── beta_web_search_tool_result_error_code.rbs │ │ ├── deleted_file.rbs │ │ ├── file_delete_params.rbs │ │ ├── file_download_params.rbs │ │ ├── file_list_params.rbs │ │ ├── file_metadata.rbs │ │ ├── file_retrieve_metadata_params.rbs │ │ ├── file_upload_params.rbs │ │ ├── message_count_tokens_params.rbs │ │ ├── message_create_params.rbs │ │ ├── messages │ │ │ ├── batch_cancel_params.rbs │ │ │ ├── batch_create_params.rbs │ │ │ ├── batch_delete_params.rbs │ │ │ ├── batch_list_params.rbs │ │ │ ├── batch_results_params.rbs │ │ │ ├── batch_retrieve_params.rbs │ │ │ ├── beta_deleted_message_batch.rbs │ │ │ ├── beta_message_batch.rbs │ │ │ ├── beta_message_batch_canceled_result.rbs │ │ │ ├── beta_message_batch_errored_result.rbs │ │ │ ├── beta_message_batch_expired_result.rbs │ │ │ ├── beta_message_batch_individual_response.rbs │ │ │ ├── beta_message_batch_request_counts.rbs │ │ │ ├── beta_message_batch_result.rbs │ │ │ └── beta_message_batch_succeeded_result.rbs │ │ ├── model_list_params.rbs │ │ ├── model_retrieve_params.rbs │ │ ├── skill_create_params.rbs │ │ ├── skill_create_response.rbs │ │ ├── skill_delete_params.rbs │ │ ├── skill_delete_response.rbs │ │ ├── skill_list_params.rbs │ │ ├── skill_list_response.rbs │ │ ├── skill_retrieve_params.rbs │ │ ├── skill_retrieve_response.rbs │ │ └── skills │ │ │ ├── version_create_params.rbs │ │ │ ├── version_create_response.rbs │ │ │ ├── version_delete_params.rbs │ │ │ ├── version_delete_response.rbs │ │ │ ├── version_list_params.rbs │ │ │ ├── version_list_response.rbs │ │ │ ├── version_retrieve_params.rbs │ │ │ └── version_retrieve_response.rbs │ ├── beta_api_error.rbs │ ├── beta_authentication_error.rbs │ ├── beta_billing_error.rbs │ ├── beta_error.rbs │ ├── beta_error_response.rbs │ ├── beta_gateway_timeout_error.rbs │ ├── beta_invalid_request_error.rbs │ ├── beta_not_found_error.rbs │ ├── beta_overloaded_error.rbs │ ├── beta_permission_error.rbs │ ├── beta_rate_limit_error.rbs │ ├── billing_error.rbs │ ├── cache_control_ephemeral.rbs │ ├── cache_creation.rbs │ ├── citation_char_location.rbs │ ├── citation_char_location_param.rbs │ ├── citation_content_block_location.rbs │ ├── citation_content_block_location_param.rbs │ ├── citation_page_location.rbs │ ├── citation_page_location_param.rbs │ ├── citation_search_result_location_param.rbs │ ├── citation_web_search_result_location_param.rbs │ ├── citations_config_param.rbs │ ├── citations_delta.rbs │ ├── citations_search_result_location.rbs │ ├── citations_web_search_result_location.rbs │ ├── completion.rbs │ ├── completion_create_params.rbs │ ├── content_block.rbs │ ├── content_block_param.rbs │ ├── content_block_source.rbs │ ├── content_block_source_content.rbs │ ├── document_block_param.rbs │ ├── error_object.rbs │ ├── error_response.rbs │ ├── gateway_timeout_error.rbs │ ├── image_block_param.rbs │ ├── input_json_delta.rbs │ ├── invalid_request_error.rbs │ ├── message.rbs │ ├── message_count_tokens_params.rbs │ ├── message_count_tokens_tool.rbs │ ├── message_create_params.rbs │ ├── message_delta_usage.rbs │ ├── message_param.rbs │ ├── message_tokens_count.rbs │ ├── messages │ │ ├── batch_cancel_params.rbs │ │ ├── batch_create_params.rbs │ │ ├── batch_delete_params.rbs │ │ ├── batch_list_params.rbs │ │ ├── batch_results_params.rbs │ │ ├── batch_retrieve_params.rbs │ │ ├── deleted_message_batch.rbs │ │ ├── message_batch.rbs │ │ ├── message_batch_canceled_result.rbs │ │ ├── message_batch_errored_result.rbs │ │ ├── message_batch_expired_result.rbs │ │ ├── message_batch_individual_response.rbs │ │ ├── message_batch_request_counts.rbs │ │ ├── message_batch_result.rbs │ │ └── message_batch_succeeded_result.rbs │ ├── metadata.rbs │ ├── model.rbs │ ├── model_info.rbs │ ├── model_list_params.rbs │ ├── model_retrieve_params.rbs │ ├── not_found_error.rbs │ ├── overloaded_error.rbs │ ├── permission_error.rbs │ ├── plain_text_source.rbs │ ├── rate_limit_error.rbs │ ├── raw_content_block_delta.rbs │ ├── raw_content_block_delta_event.rbs │ ├── raw_content_block_start_event.rbs │ ├── raw_content_block_stop_event.rbs │ ├── raw_message_delta_event.rbs │ ├── raw_message_start_event.rbs │ ├── raw_message_stop_event.rbs │ ├── raw_message_stream_event.rbs │ ├── redacted_thinking_block.rbs │ ├── redacted_thinking_block_param.rbs │ ├── search_result_block_param.rbs │ ├── server_tool_usage.rbs │ ├── server_tool_use_block.rbs │ ├── server_tool_use_block_param.rbs │ ├── signature_delta.rbs │ ├── stop_reason.rbs │ ├── text_block.rbs │ ├── text_block_param.rbs │ ├── text_citation.rbs │ ├── text_citation_param.rbs │ ├── text_delta.rbs │ ├── thinking_block.rbs │ ├── thinking_block_param.rbs │ ├── thinking_config_disabled.rbs │ ├── thinking_config_enabled.rbs │ ├── thinking_config_param.rbs │ ├── thinking_delta.rbs │ ├── tool.rbs │ ├── tool_bash_20250124.rbs │ ├── tool_choice.rbs │ ├── tool_choice_any.rbs │ ├── tool_choice_auto.rbs │ ├── tool_choice_none.rbs │ ├── tool_choice_tool.rbs │ ├── tool_result_block_param.rbs │ ├── tool_text_editor_20250124.rbs │ ├── tool_text_editor_20250429.rbs │ ├── tool_text_editor_20250728.rbs │ ├── tool_union.rbs │ ├── tool_use_block.rbs │ ├── tool_use_block_param.rbs │ ├── url_image_source.rbs │ ├── url_pdf_source.rbs │ ├── usage.rbs │ ├── web_search_result_block.rbs │ ├── web_search_result_block_param.rbs │ ├── web_search_tool_20250305.rbs │ ├── web_search_tool_request_error.rbs │ ├── web_search_tool_result_block.rbs │ ├── web_search_tool_result_block_content.rbs │ ├── web_search_tool_result_block_param.rbs │ ├── web_search_tool_result_block_param_content.rbs │ └── web_search_tool_result_error.rbs │ ├── request_options.rbs │ ├── resources │ ├── beta.rbs │ ├── beta │ │ ├── files.rbs │ │ ├── messages.rbs │ │ ├── messages │ │ │ └── batches.rbs │ │ ├── models.rbs │ │ ├── skills.rbs │ │ └── skills │ │ │ └── versions.rbs │ ├── completions.rbs │ ├── messages.rbs │ ├── messages │ │ └── batches.rbs │ └── models.rbs │ ├── streaming.rbs │ ├── version.rbs │ └── vertex.rbs ├── sorbet ├── config └── rbi │ └── .gitignore └── test └── anthropic ├── client_test.rb ├── file_part_test.rb ├── helpers ├── bedrock │ └── client_test.rb ├── input_schema │ ├── messages_test.rb │ └── streaming_test.rb ├── input_schema_test.rb ├── tool_runner │ ├── compaction_test.rb │ ├── messages_test.rb │ └── streaming_test.rb └── vertex │ └── client_test.rb ├── internal ├── sorbet_runtime_support_test.rb ├── type │ └── base_model_test.rb └── util_test.rb ├── resource_namespaces.rb ├── resources ├── beta │ ├── files_test.rb │ ├── messages │ │ └── batches_test.rb │ ├── messages_test.rb │ ├── models_test.rb │ ├── skills │ │ └── versions_test.rb │ └── skills_test.rb ├── beta_test.rb ├── completions_test.rb ├── messages │ ├── batches_test.rb │ └── streaming_test.rb ├── messages_test.rb ├── models_test.rb └── shared_test.rb └── test_helper.rb /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create-releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.github/workflows/create-releases.yml -------------------------------------------------------------------------------- /.github/workflows/publish-gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.github/workflows/publish-gem.yml -------------------------------------------------------------------------------- /.github/workflows/release-doctor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.github/workflows/release-doctor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "1.16.0" 3 | } -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.0 2 | -------------------------------------------------------------------------------- /.solargraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.solargraph.yml -------------------------------------------------------------------------------- /.stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.stats.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Steepfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/Steepfile -------------------------------------------------------------------------------- /anthropic.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/anthropic.gemspec -------------------------------------------------------------------------------- /bin/check-release-environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/bin/check-release-environment -------------------------------------------------------------------------------- /bin/publish-gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/bin/publish-gem -------------------------------------------------------------------------------- /examples/auto_compaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/auto_compaction.rb -------------------------------------------------------------------------------- /examples/auto_looping_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/auto_looping_tools.rb -------------------------------------------------------------------------------- /examples/auto_looping_tools_advanced.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/auto_looping_tools_advanced.rb -------------------------------------------------------------------------------- /examples/auto_looping_tools_streaming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/auto_looping_tools_streaming.rb -------------------------------------------------------------------------------- /examples/batch_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/batch_results.rb -------------------------------------------------------------------------------- /examples/bedrock/bedrock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/bedrock/bedrock.rb -------------------------------------------------------------------------------- /examples/bedrock/bedrock_beta_computer_use.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/bedrock/bedrock_beta_computer_use.rb -------------------------------------------------------------------------------- /examples/citations_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/citations_stream.rb -------------------------------------------------------------------------------- /examples/fine_grained_tool_streaming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/fine_grained_tool_streaming.rb -------------------------------------------------------------------------------- /examples/images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/images.rb -------------------------------------------------------------------------------- /examples/input_schemas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/input_schemas.rb -------------------------------------------------------------------------------- /examples/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/logo.png -------------------------------------------------------------------------------- /examples/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/messages.rb -------------------------------------------------------------------------------- /examples/messages_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/messages_stream.rb -------------------------------------------------------------------------------- /examples/messages_stream_advanced.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/messages_stream_advanced.rb -------------------------------------------------------------------------------- /examples/sorbet_demo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/sorbet_demo.rb -------------------------------------------------------------------------------- /examples/structured_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/structured_output.rb -------------------------------------------------------------------------------- /examples/text_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/text_stream.rb -------------------------------------------------------------------------------- /examples/thinking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/thinking.rb -------------------------------------------------------------------------------- /examples/thinking_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/thinking_stream.rb -------------------------------------------------------------------------------- /examples/tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/tools.rb -------------------------------------------------------------------------------- /examples/tools_custom_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/tools_custom_name.rb -------------------------------------------------------------------------------- /examples/tools_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/tools_stream.rb -------------------------------------------------------------------------------- /examples/vertex/vertex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/vertex/vertex.rb -------------------------------------------------------------------------------- /examples/vertex/vertex_beta_computer_use.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/vertex/vertex_beta_computer_use.rb -------------------------------------------------------------------------------- /examples/web_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/web_search.rb -------------------------------------------------------------------------------- /examples/web_search_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/examples/web_search_stream.rb -------------------------------------------------------------------------------- /helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/helpers.md -------------------------------------------------------------------------------- /lib/anthropic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic.rb -------------------------------------------------------------------------------- /lib/anthropic/bedrock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/bedrock.rb -------------------------------------------------------------------------------- /lib/anthropic/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/client.rb -------------------------------------------------------------------------------- /lib/anthropic/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/errors.rb -------------------------------------------------------------------------------- /lib/anthropic/file_part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/file_part.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/bedrock/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/bedrock/client.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema/array_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema/array_of.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema/base_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema/base_model.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema/boolean.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema/enum_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema/enum_of.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema/parsed_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema/parsed_json.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/input_schema/union_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/input_schema/union_of.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/messages.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/streaming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/streaming.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/streaming/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/streaming/events.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/streaming/message_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/streaming/message_stream.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/tools.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/tools/base_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/tools/base_tool.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/tools/compaction_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/tools/compaction_control.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/tools/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/tools/runner.rb -------------------------------------------------------------------------------- /lib/anthropic/helpers/vertex/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/helpers/vertex/client.rb -------------------------------------------------------------------------------- /lib/anthropic/input_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/input_schema.rb -------------------------------------------------------------------------------- /lib/anthropic/internal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/jsonl_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/jsonl_stream.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/page.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/page_cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/page_cursor.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/stream.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/token_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/token_page.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/transport/base_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/transport/base_client.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/array_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/array_of.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/base_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/base_model.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/base_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/base_page.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/base_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/base_stream.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/boolean.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/converter.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/enum.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/file_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/file_input.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/hash_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/hash_of.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/request_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/request_parameters.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/union.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/type/unknown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/type/unknown.rb -------------------------------------------------------------------------------- /lib/anthropic/internal/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/internal/util.rb -------------------------------------------------------------------------------- /lib/anthropic/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models.rb -------------------------------------------------------------------------------- /lib/anthropic/models/anthropic_beta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/anthropic_beta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/api_error_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/api_error_object.rb -------------------------------------------------------------------------------- /lib/anthropic/models/authentication_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/authentication_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/base64_image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/base64_image_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/base64_pdf_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/base64_pdf_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_all_thinking_turns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_all_thinking_turns.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_base64_image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_base64_image_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_base64_pdf_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_base64_pdf_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_base64_pdf_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_base64_pdf_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_cache_creation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_cache_creation.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_citation_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_citation_config.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_citations_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_citations_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_container.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_container_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_container_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_content_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_content_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_content_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_content_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_content_block_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_content_block_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_direct_caller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_direct_caller.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_document_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_document_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_file_document_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_file_document_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_file_image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_file_image_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_image_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_image_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_input_json_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_input_json_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_input_tokens_trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_input_tokens_trigger.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_json_output_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_json_output_format.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_mcp_tool_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_mcp_tool_config.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_mcp_tool_use_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_mcp_tool_use_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_mcp_toolset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_mcp_toolset.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_memory_tool_20250818.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_memory_tool_20250818.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_message.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_message_delta_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_message_delta_usage.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_message_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_message_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_message_tokens_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_message_tokens_count.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_metadata.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_model_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_model_info.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_output_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_output_config.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_plain_text_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_plain_text_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_server_tool_caller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_server_tool_caller.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_server_tool_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_server_tool_usage.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_signature_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_signature_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_skill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_skill.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_skill_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_skill_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_stop_reason.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_stop_reason.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_text_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_text_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_text_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_text_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_text_citation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_text_citation.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_text_citation_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_text_citation_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_text_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_text_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_thinking_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_thinking_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_thinking_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_thinking_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_thinking_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_thinking_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_thinking_turns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_thinking_turns.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_bash_20241022.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_bash_20241022.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_bash_20250124.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_bash_20250124.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_choice.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_choice_any.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_choice_any.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_choice_auto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_choice_auto.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_choice_none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_choice_none.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_choice_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_choice_tool.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_reference_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_reference_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_union.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_use_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_use_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_use_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_use_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_uses_keep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_uses_keep.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_tool_uses_trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_tool_uses_trigger.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_url_image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_url_image_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_url_pdf_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_url_pdf_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_usage.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/beta_web_fetch_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/beta_web_fetch_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/deleted_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/deleted_file.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/file_delete_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/file_delete_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/file_download_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/file_download_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/file_list_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/file_list_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/file_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/file_metadata.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/file_upload_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/file_upload_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/message_create_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/message_create_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/model_list_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/model_list_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/model_retrieve_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/model_retrieve_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_create_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_create_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_create_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_create_response.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_delete_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_delete_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_delete_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_delete_response.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_list_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_list_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_list_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_list_response.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_retrieve_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_retrieve_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta/skill_retrieve_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta/skill_retrieve_response.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_api_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_api_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_authentication_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_authentication_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_billing_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_billing_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_error_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_error_response.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_gateway_timeout_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_gateway_timeout_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_invalid_request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_invalid_request_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_not_found_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_not_found_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_overloaded_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_overloaded_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_permission_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_permission_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/beta_rate_limit_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/beta_rate_limit_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/billing_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/billing_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/cache_control_ephemeral.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/cache_control_ephemeral.rb -------------------------------------------------------------------------------- /lib/anthropic/models/cache_creation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/cache_creation.rb -------------------------------------------------------------------------------- /lib/anthropic/models/citation_char_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/citation_char_location.rb -------------------------------------------------------------------------------- /lib/anthropic/models/citation_char_location_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/citation_char_location_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/citation_page_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/citation_page_location.rb -------------------------------------------------------------------------------- /lib/anthropic/models/citation_page_location_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/citation_page_location_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/citations_config_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/citations_config_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/citations_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/citations_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/completion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/completion.rb -------------------------------------------------------------------------------- /lib/anthropic/models/completion_create_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/completion_create_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/content_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/content_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/content_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/content_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/content_block_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/content_block_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/content_block_source_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/content_block_source_content.rb -------------------------------------------------------------------------------- /lib/anthropic/models/document_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/document_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/error_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/error_object.rb -------------------------------------------------------------------------------- /lib/anthropic/models/error_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/error_response.rb -------------------------------------------------------------------------------- /lib/anthropic/models/gateway_timeout_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/gateway_timeout_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/image_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/image_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/input_json_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/input_json_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/invalid_request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/invalid_request_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message_count_tokens_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message_count_tokens_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message_count_tokens_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message_count_tokens_tool.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message_create_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message_create_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message_delta_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message_delta_usage.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/message_tokens_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/message_tokens_count.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/batch_cancel_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/batch_cancel_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/batch_create_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/batch_create_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/batch_delete_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/batch_delete_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/batch_list_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/batch_list_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/batch_results_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/batch_results_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/batch_retrieve_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/batch_retrieve_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/deleted_message_batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/deleted_message_batch.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/message_batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/message_batch.rb -------------------------------------------------------------------------------- /lib/anthropic/models/messages/message_batch_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/messages/message_batch_result.rb -------------------------------------------------------------------------------- /lib/anthropic/models/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/metadata.rb -------------------------------------------------------------------------------- /lib/anthropic/models/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/model.rb -------------------------------------------------------------------------------- /lib/anthropic/models/model_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/model_info.rb -------------------------------------------------------------------------------- /lib/anthropic/models/model_list_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/model_list_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/model_retrieve_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/model_retrieve_params.rb -------------------------------------------------------------------------------- /lib/anthropic/models/not_found_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/not_found_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/overloaded_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/overloaded_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/permission_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/permission_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/plain_text_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/plain_text_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/rate_limit_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/rate_limit_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_content_block_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_content_block_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_content_block_delta_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_content_block_delta_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_content_block_start_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_content_block_start_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_content_block_stop_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_content_block_stop_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_message_delta_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_message_delta_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_message_start_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_message_start_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_message_stop_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_message_stop_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/raw_message_stream_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/raw_message_stream_event.rb -------------------------------------------------------------------------------- /lib/anthropic/models/redacted_thinking_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/redacted_thinking_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/redacted_thinking_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/redacted_thinking_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/search_result_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/search_result_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/server_tool_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/server_tool_usage.rb -------------------------------------------------------------------------------- /lib/anthropic/models/server_tool_use_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/server_tool_use_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/server_tool_use_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/server_tool_use_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/signature_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/signature_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/stop_reason.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/stop_reason.rb -------------------------------------------------------------------------------- /lib/anthropic/models/text_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/text_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/text_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/text_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/text_citation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/text_citation.rb -------------------------------------------------------------------------------- /lib/anthropic/models/text_citation_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/text_citation_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/text_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/text_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/thinking_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/thinking_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/thinking_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/thinking_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/thinking_config_disabled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/thinking_config_disabled.rb -------------------------------------------------------------------------------- /lib/anthropic/models/thinking_config_enabled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/thinking_config_enabled.rb -------------------------------------------------------------------------------- /lib/anthropic/models/thinking_config_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/thinking_config_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/thinking_delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/thinking_delta.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_bash_20250124.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_bash_20250124.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_choice.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_choice_any.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_choice_any.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_choice_auto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_choice_auto.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_choice_none.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_choice_none.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_choice_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_choice_tool.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_result_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_result_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_text_editor_20250124.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_text_editor_20250124.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_text_editor_20250429.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_text_editor_20250429.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_text_editor_20250728.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_text_editor_20250728.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_union.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_use_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_use_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/tool_use_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/tool_use_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/url_image_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/url_image_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/url_pdf_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/url_pdf_source.rb -------------------------------------------------------------------------------- /lib/anthropic/models/usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/usage.rb -------------------------------------------------------------------------------- /lib/anthropic/models/web_search_result_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/web_search_result_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/web_search_result_block_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/web_search_result_block_param.rb -------------------------------------------------------------------------------- /lib/anthropic/models/web_search_tool_20250305.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/web_search_tool_20250305.rb -------------------------------------------------------------------------------- /lib/anthropic/models/web_search_tool_request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/web_search_tool_request_error.rb -------------------------------------------------------------------------------- /lib/anthropic/models/web_search_tool_result_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/web_search_tool_result_block.rb -------------------------------------------------------------------------------- /lib/anthropic/models/web_search_tool_result_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/models/web_search_tool_result_error.rb -------------------------------------------------------------------------------- /lib/anthropic/request_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/request_options.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta/files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta/files.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta/messages.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta/messages/batches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta/messages/batches.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta/models.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta/skills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta/skills.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/beta/skills/versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/beta/skills/versions.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/completions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/completions.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/messages.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/messages/batches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/messages/batches.rb -------------------------------------------------------------------------------- /lib/anthropic/resources/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/resources/models.rb -------------------------------------------------------------------------------- /lib/anthropic/streaming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/streaming.rb -------------------------------------------------------------------------------- /lib/anthropic/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Anthropic 4 | VERSION = "1.16.0" 5 | end 6 | -------------------------------------------------------------------------------- /lib/anthropic/vertex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/lib/anthropic/vertex.rb -------------------------------------------------------------------------------- /manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/manifest.yaml -------------------------------------------------------------------------------- /rbi/anthropic/bedrock.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/bedrock.rbi -------------------------------------------------------------------------------- /rbi/anthropic/client.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/client.rbi -------------------------------------------------------------------------------- /rbi/anthropic/errors.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/errors.rbi -------------------------------------------------------------------------------- /rbi/anthropic/file_part.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/file_part.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/bedrock/client.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/bedrock/client.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/input_schema.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/input_schema.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/input_schema/array_of.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/input_schema/array_of.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/input_schema/base_model.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/input_schema/base_model.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/input_schema/boolean.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/input_schema/boolean.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/input_schema/enum_of.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/input_schema/enum_of.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/input_schema/union_of.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/input_schema/union_of.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/streaming/events.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/streaming/events.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/streaming/message_stream.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/streaming/message_stream.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/tools.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/tools.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/tools/base_tool.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/tools/base_tool.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/tools/runner.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/tools/runner.rbi -------------------------------------------------------------------------------- /rbi/anthropic/helpers/vertex/client.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/helpers/vertex/client.rbi -------------------------------------------------------------------------------- /rbi/anthropic/input_schema.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/input_schema.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/jsonl_stream.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/jsonl_stream.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/page.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/page.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/page_cursor.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/page_cursor.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/stream.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/stream.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/token_page.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/token_page.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/transport/base_client.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/transport/base_client.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/array_of.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/array_of.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/base_model.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/base_model.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/base_page.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/base_page.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/base_stream.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/base_stream.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/boolean.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/boolean.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/converter.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/converter.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/enum.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/enum.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/file_input.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/file_input.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/hash_of.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/hash_of.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/request_parameters.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/request_parameters.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/union.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/union.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/type/unknown.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/type/unknown.rbi -------------------------------------------------------------------------------- /rbi/anthropic/internal/util.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/internal/util.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/anthropic_beta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/anthropic_beta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/api_error_object.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/api_error_object.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/authentication_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/authentication_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/base64_image_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/base64_image_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/base64_pdf_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/base64_pdf_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_all_thinking_turns.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_all_thinking_turns.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_base64_image_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_base64_image_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_base64_pdf_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_base64_pdf_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_base64_pdf_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_base64_pdf_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_cache_creation.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_cache_creation.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_citation_config.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_citation_config.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_citations_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_citations_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_container.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_container.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_container_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_container_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_content_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_content_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_content_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_content_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_direct_caller.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_direct_caller.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_document_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_document_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_file_image_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_file_image_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_image_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_image_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_input_json_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_input_json_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_json_output_format.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_json_output_format.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_mcp_tool_config.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_mcp_tool_config.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_mcp_tool_use_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_mcp_tool_use_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_mcp_toolset.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_mcp_toolset.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_message.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_message.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_message_delta_usage.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_message_delta_usage.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_message_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_message_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_metadata.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_metadata.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_model_info.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_model_info.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_output_config.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_output_config.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_plain_text_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_plain_text_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_server_tool_caller.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_server_tool_caller.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_server_tool_usage.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_server_tool_usage.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_signature_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_signature_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_skill.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_skill.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_skill_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_skill_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_stop_reason.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_stop_reason.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_text_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_text_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_text_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_text_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_text_citation.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_text_citation.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_text_citation_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_text_citation_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_text_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_text_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_thinking_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_thinking_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_thinking_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_thinking_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_thinking_turns.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_thinking_turns.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_bash_20241022.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_bash_20241022.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_bash_20250124.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_bash_20250124.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_choice.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_choice.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_choice_any.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_choice_any.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_choice_auto.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_choice_auto.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_choice_none.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_choice_none.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_choice_tool.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_choice_tool.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_union.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_union.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_use_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_use_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_uses_keep.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_uses_keep.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_tool_uses_trigger.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_tool_uses_trigger.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_url_image_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_url_image_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_url_pdf_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_url_pdf_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_usage.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_usage.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/beta_web_fetch_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/beta_web_fetch_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/deleted_file.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/deleted_file.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/file_delete_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/file_delete_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/file_download_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/file_download_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/file_list_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/file_list_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/file_metadata.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/file_metadata.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/file_upload_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/file_upload_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/message_create_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/message_create_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/model_list_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/model_list_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/model_retrieve_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/model_retrieve_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_create_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_create_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_create_response.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_create_response.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_delete_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_delete_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_delete_response.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_delete_response.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_list_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_list_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_list_response.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_list_response.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_retrieve_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_retrieve_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta/skill_retrieve_response.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta/skill_retrieve_response.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_api_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_api_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_authentication_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_authentication_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_billing_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_billing_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_error_response.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_error_response.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_gateway_timeout_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_gateway_timeout_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_invalid_request_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_invalid_request_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_not_found_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_not_found_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_overloaded_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_overloaded_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_permission_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_permission_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/beta_rate_limit_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/beta_rate_limit_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/billing_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/billing_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/cache_control_ephemeral.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/cache_control_ephemeral.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/cache_creation.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/cache_creation.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/citation_char_location.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/citation_char_location.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/citation_char_location_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/citation_char_location_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/citation_page_location.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/citation_page_location.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/citation_page_location_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/citation_page_location_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/citations_config_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/citations_config_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/citations_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/citations_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/completion.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/completion.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/completion_create_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/completion_create_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/content_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/content_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/content_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/content_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/content_block_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/content_block_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/content_block_source_content.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/content_block_source_content.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/document_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/document_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/error_object.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/error_object.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/error_response.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/error_response.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/gateway_timeout_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/gateway_timeout_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/image_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/image_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/input_json_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/input_json_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/invalid_request_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/invalid_request_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message_count_tokens_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message_count_tokens_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message_count_tokens_tool.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message_count_tokens_tool.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message_create_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message_create_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message_delta_usage.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message_delta_usage.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/message_tokens_count.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/message_tokens_count.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/batch_cancel_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/batch_cancel_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/batch_create_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/batch_create_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/batch_delete_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/batch_delete_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/batch_list_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/batch_list_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/batch_results_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/batch_results_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/message_batch.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/message_batch.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/messages/message_batch_result.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/messages/message_batch_result.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/metadata.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/metadata.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/model.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/model.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/model_info.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/model_info.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/model_list_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/model_list_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/model_retrieve_params.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/model_retrieve_params.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/not_found_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/not_found_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/overloaded_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/overloaded_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/permission_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/permission_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/plain_text_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/plain_text_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/rate_limit_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/rate_limit_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_content_block_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_content_block_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_content_block_delta_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_content_block_delta_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_content_block_start_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_content_block_start_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_content_block_stop_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_content_block_stop_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_message_delta_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_message_delta_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_message_start_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_message_start_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_message_stop_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_message_stop_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/raw_message_stream_event.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/raw_message_stream_event.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/redacted_thinking_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/redacted_thinking_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/redacted_thinking_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/redacted_thinking_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/search_result_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/search_result_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/server_tool_usage.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/server_tool_usage.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/server_tool_use_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/server_tool_use_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/server_tool_use_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/server_tool_use_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/signature_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/signature_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/stop_reason.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/stop_reason.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/text_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/text_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/text_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/text_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/text_citation.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/text_citation.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/text_citation_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/text_citation_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/text_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/text_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/thinking_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/thinking_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/thinking_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/thinking_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/thinking_config_disabled.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/thinking_config_disabled.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/thinking_config_enabled.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/thinking_config_enabled.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/thinking_config_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/thinking_config_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/thinking_delta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/thinking_delta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_bash_20250124.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_bash_20250124.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_choice.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_choice.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_choice_any.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_choice_any.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_choice_auto.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_choice_auto.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_choice_none.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_choice_none.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_choice_tool.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_choice_tool.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_result_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_result_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_text_editor_20250124.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_text_editor_20250124.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_text_editor_20250429.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_text_editor_20250429.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_text_editor_20250728.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_text_editor_20250728.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_union.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_union.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_use_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_use_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/tool_use_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/tool_use_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/url_image_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/url_image_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/url_pdf_source.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/url_pdf_source.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/usage.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/usage.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/web_search_result_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/web_search_result_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/web_search_result_block_param.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/web_search_result_block_param.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/web_search_tool_20250305.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/web_search_tool_20250305.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/web_search_tool_request_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/web_search_tool_request_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/web_search_tool_result_block.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/web_search_tool_result_block.rbi -------------------------------------------------------------------------------- /rbi/anthropic/models/web_search_tool_result_error.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/models/web_search_tool_result_error.rbi -------------------------------------------------------------------------------- /rbi/anthropic/request_options.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/request_options.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta/files.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta/files.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta/messages.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta/messages.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta/messages/batches.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta/messages/batches.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta/models.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta/models.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta/skills.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta/skills.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/beta/skills/versions.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/beta/skills/versions.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/completions.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/completions.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/messages.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/messages.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/messages/batches.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/messages/batches.rbi -------------------------------------------------------------------------------- /rbi/anthropic/resources/models.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/resources/models.rbi -------------------------------------------------------------------------------- /rbi/anthropic/streaming.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/streaming.rbi -------------------------------------------------------------------------------- /rbi/anthropic/version.rbi: -------------------------------------------------------------------------------- 1 | # typed: strong 2 | 3 | module Anthropic 4 | VERSION = T.let(T.unsafe(nil), String) 5 | end 6 | -------------------------------------------------------------------------------- /rbi/anthropic/vertex.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/rbi/anthropic/vertex.rbi -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/release-please-config.json -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/detect-breaking-changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/detect-breaking-changes -------------------------------------------------------------------------------- /scripts/fast-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/fast-format -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/mock -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/scripts/test -------------------------------------------------------------------------------- /sig/anthropic/bedrock.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/bedrock.rbs -------------------------------------------------------------------------------- /sig/anthropic/client.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/client.rbs -------------------------------------------------------------------------------- /sig/anthropic/errors.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/errors.rbs -------------------------------------------------------------------------------- /sig/anthropic/file_part.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/file_part.rbs -------------------------------------------------------------------------------- /sig/anthropic/helpers/bedrock/client.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/helpers/bedrock/client.rbs -------------------------------------------------------------------------------- /sig/anthropic/helpers/streaming/events.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/helpers/streaming/events.rbs -------------------------------------------------------------------------------- /sig/anthropic/helpers/streaming/message_stream.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/helpers/streaming/message_stream.rbs -------------------------------------------------------------------------------- /sig/anthropic/helpers/vertex/client.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/helpers/vertex/client.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/jsonl_stream.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/jsonl_stream.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/page.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/page.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/page_cursor.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/page_cursor.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/stream.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/stream.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/token_page.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/token_page.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/transport/base_client.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/transport/base_client.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/array_of.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/array_of.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/base_model.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/base_model.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/base_page.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/base_page.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/base_stream.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/base_stream.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/boolean.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/boolean.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/converter.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/converter.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/enum.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/enum.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/file_input.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/file_input.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/hash_of.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/hash_of.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/request_parameters.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/request_parameters.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/union.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/union.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/type/unknown.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/type/unknown.rbs -------------------------------------------------------------------------------- /sig/anthropic/internal/util.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/internal/util.rbs -------------------------------------------------------------------------------- /sig/anthropic/models.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/anthropic_beta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/anthropic_beta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/api_error_object.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/api_error_object.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/authentication_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/authentication_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/base64_image_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/base64_image_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/base64_pdf_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/base64_pdf_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_all_thinking_turns.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_all_thinking_turns.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_base64_image_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_base64_image_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_base64_pdf_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_base64_pdf_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_cache_creation.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_cache_creation.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_citation_config.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_citation_config.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_citations_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_citations_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_container.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_container.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_container_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_container_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_content_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_content_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_direct_caller.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_direct_caller.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_document_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_document_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_input_json_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_input_json_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_mcp_tool_config.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_mcp_tool_config.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_mcp_toolset.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_mcp_toolset.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_message.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_message.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_message_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_message_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_metadata.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_metadata.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_model_info.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_model_info.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_output_config.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_output_config.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_signature_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_signature_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_skill.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_skill.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_skill_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_skill_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_stop_reason.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_stop_reason.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_text_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_text_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_text_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_text_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_text_citation.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_text_citation.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_text_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_text_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_thinking_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_thinking_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_thinking_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_thinking_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_thinking_turns.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_thinking_turns.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_choice.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_choice.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_choice_any.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_choice_any.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_choice_auto.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_choice_auto.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_choice_none.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_choice_none.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_choice_tool.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_choice_tool.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_union.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_union.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_use_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_use_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_tool_uses_keep.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_tool_uses_keep.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_url_image_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_url_image_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_url_pdf_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_url_pdf_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_usage.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_usage.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/beta_web_fetch_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/beta_web_fetch_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/deleted_file.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/deleted_file.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/file_delete_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/file_delete_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/file_download_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/file_download_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/file_list_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/file_list_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/file_metadata.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/file_metadata.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/file_upload_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/file_upload_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/message_create_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/message_create_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/model_list_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/model_list_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/model_retrieve_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/model_retrieve_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_create_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_create_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_create_response.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_create_response.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_delete_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_delete_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_delete_response.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_delete_response.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_list_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_list_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_list_response.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_list_response.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta/skill_retrieve_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta/skill_retrieve_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_api_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_api_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_authentication_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_authentication_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_billing_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_billing_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_error_response.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_error_response.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_gateway_timeout_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_gateway_timeout_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_invalid_request_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_invalid_request_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_not_found_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_not_found_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_overloaded_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_overloaded_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_permission_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_permission_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/beta_rate_limit_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/beta_rate_limit_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/billing_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/billing_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/cache_control_ephemeral.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/cache_control_ephemeral.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/cache_creation.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/cache_creation.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/citation_char_location.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/citation_char_location.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/citation_page_location.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/citation_page_location.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/citations_config_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/citations_config_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/citations_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/citations_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/completion.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/completion.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/completion_create_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/completion_create_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/content_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/content_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/content_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/content_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/content_block_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/content_block_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/document_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/document_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/error_object.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/error_object.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/error_response.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/error_response.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/gateway_timeout_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/gateway_timeout_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/image_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/image_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/input_json_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/input_json_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/invalid_request_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/invalid_request_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/message.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/message.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/message_count_tokens_tool.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/message_count_tokens_tool.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/message_create_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/message_create_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/message_delta_usage.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/message_delta_usage.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/message_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/message_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/message_tokens_count.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/message_tokens_count.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/messages/batch_list_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/messages/batch_list_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/messages/message_batch.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/messages/message_batch.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/metadata.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/metadata.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/model.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/model.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/model_info.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/model_info.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/model_list_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/model_list_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/model_retrieve_params.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/model_retrieve_params.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/not_found_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/not_found_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/overloaded_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/overloaded_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/permission_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/permission_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/plain_text_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/plain_text_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/rate_limit_error.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/rate_limit_error.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/raw_content_block_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/raw_content_block_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/raw_message_delta_event.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/raw_message_delta_event.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/raw_message_start_event.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/raw_message_start_event.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/raw_message_stop_event.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/raw_message_stop_event.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/raw_message_stream_event.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/raw_message_stream_event.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/redacted_thinking_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/redacted_thinking_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/search_result_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/search_result_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/server_tool_usage.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/server_tool_usage.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/server_tool_use_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/server_tool_use_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/signature_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/signature_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/stop_reason.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/stop_reason.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/text_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/text_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/text_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/text_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/text_citation.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/text_citation.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/text_citation_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/text_citation_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/text_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/text_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/thinking_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/thinking_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/thinking_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/thinking_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/thinking_config_disabled.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/thinking_config_disabled.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/thinking_config_enabled.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/thinking_config_enabled.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/thinking_config_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/thinking_config_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/thinking_delta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/thinking_delta.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_bash_20250124.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_bash_20250124.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_choice.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_choice.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_choice_any.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_choice_any.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_choice_auto.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_choice_auto.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_choice_none.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_choice_none.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_choice_tool.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_choice_tool.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_result_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_result_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_text_editor_20250124.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_text_editor_20250124.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_text_editor_20250429.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_text_editor_20250429.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_text_editor_20250728.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_text_editor_20250728.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_union.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_union.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_use_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_use_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/tool_use_block_param.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/tool_use_block_param.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/url_image_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/url_image_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/url_pdf_source.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/url_pdf_source.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/usage.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/usage.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/web_search_result_block.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/web_search_result_block.rbs -------------------------------------------------------------------------------- /sig/anthropic/models/web_search_tool_20250305.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/models/web_search_tool_20250305.rbs -------------------------------------------------------------------------------- /sig/anthropic/request_options.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/request_options.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta/files.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta/files.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta/messages.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta/messages.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta/messages/batches.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta/messages/batches.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta/models.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta/models.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta/skills.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta/skills.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/beta/skills/versions.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/beta/skills/versions.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/completions.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/completions.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/messages.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/messages.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/messages/batches.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/messages/batches.rbs -------------------------------------------------------------------------------- /sig/anthropic/resources/models.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/resources/models.rbs -------------------------------------------------------------------------------- /sig/anthropic/streaming.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/streaming.rbs -------------------------------------------------------------------------------- /sig/anthropic/version.rbs: -------------------------------------------------------------------------------- 1 | module Anthropic 2 | VERSION: String 3 | end 4 | -------------------------------------------------------------------------------- /sig/anthropic/vertex.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/sig/anthropic/vertex.rbs -------------------------------------------------------------------------------- /sorbet/config: -------------------------------------------------------------------------------- 1 | --dir=rbi/ 2 | --ignore=test/ 3 | -------------------------------------------------------------------------------- /sorbet/rbi/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/anthropic/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/client_test.rb -------------------------------------------------------------------------------- /test/anthropic/file_part_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/file_part_test.rb -------------------------------------------------------------------------------- /test/anthropic/helpers/bedrock/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/helpers/bedrock/client_test.rb -------------------------------------------------------------------------------- /test/anthropic/helpers/input_schema_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/helpers/input_schema_test.rb -------------------------------------------------------------------------------- /test/anthropic/helpers/tool_runner/messages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/helpers/tool_runner/messages_test.rb -------------------------------------------------------------------------------- /test/anthropic/helpers/vertex/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/helpers/vertex/client_test.rb -------------------------------------------------------------------------------- /test/anthropic/internal/type/base_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/internal/type/base_model_test.rb -------------------------------------------------------------------------------- /test/anthropic/internal/util_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/internal/util_test.rb -------------------------------------------------------------------------------- /test/anthropic/resource_namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resource_namespaces.rb -------------------------------------------------------------------------------- /test/anthropic/resources/beta/files_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/beta/files_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/beta/messages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/beta/messages_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/beta/models_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/beta/models_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/beta/skills_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/beta/skills_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/beta_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/beta_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/completions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/completions_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/messages/batches_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/messages/batches_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/messages/streaming_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/messages/streaming_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/messages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/messages_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/models_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/models_test.rb -------------------------------------------------------------------------------- /test/anthropic/resources/shared_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/resources/shared_test.rb -------------------------------------------------------------------------------- /test/anthropic/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthropics/anthropic-sdk-ruby/HEAD/test/anthropic/test_helper.rb --------------------------------------------------------------------------------