lib/anthropic/models/model.rb
# frozen_string_literal: true module Anthropic module Models # The model that will complete your prompt.\n\nSee # [models](https://docs.anthropic.com/en/docs/models-overview) for additional # details and options. module Model extend Anthropic::Internal::Type::Union variant const: -> { Anthropic::Models::Model::CLAUDE_3_7_SONNET_LATEST } variant const: -> { Anthropic::Models::Model::CLAUDE_3_7_SONNET_20250219 } variant const: -> { Anthropic::Models::Model::CLAUDE_3_5_HAIKU_LATEST } variant const: -> { Anthropic::Models::Model::CLAUDE_3_5_HAIKU_20241022 } variant const: -> { Anthropic::Models::Model::CLAUDE_SONNET_4_20250514 } variant const: -> { Anthropic::Models::Model::CLAUDE_SONNET_4_0 } variant const: -> { Anthropic::Models::Model::CLAUDE_4_SONNET_20250514 } variant const: -> { Anthropic::Models::Model::CLAUDE_3_5_SONNET_LATEST } variant const: -> { Anthropic::Models::Model::CLAUDE_3_5_SONNET_20241022 } variant const: -> { Anthropic::Models::Model::CLAUDE_3_5_SONNET_20240620 } variant const: -> { Anthropic::Models::Model::CLAUDE_OPUS_4_0 } variant const: -> { Anthropic::Models::Model::CLAUDE_OPUS_4_20250514 } variant const: -> { Anthropic::Models::Model::CLAUDE_4_OPUS_20250514 } variant const: -> { Anthropic::Models::Model::CLAUDE_OPUS_4_1_20250805 } variant const: -> { Anthropic::Models::Model::CLAUDE_3_OPUS_LATEST } variant const: -> { Anthropic::Models::Model::CLAUDE_3_OPUS_20240229 } variant const: -> { Anthropic::Models::Model::CLAUDE_3_HAIKU_20240307 } variant String # @!method self.variants # @return [Array(Symbol, String)] define_sorbet_constant!(:Variants) do T.type_alias { T.any(Anthropic::Model::TaggedSymbol, String) } end # @!group # High-performance model with early extended thinking CLAUDE_3_7_SONNET_LATEST = :"claude-3-7-sonnet-latest" # High-performance model with early extended thinking CLAUDE_3_7_SONNET_20250219 = :"claude-3-7-sonnet-20250219" # Fastest and most compact model for near-instant responsiveness CLAUDE_3_5_HAIKU_LATEST = :"claude-3-5-haiku-latest" # Our fastest model CLAUDE_3_5_HAIKU_20241022 = :"claude-3-5-haiku-20241022" # High-performance model with extended thinking CLAUDE_SONNET_4_20250514 = :"claude-sonnet-4-20250514" # High-performance model with extended thinking CLAUDE_SONNET_4_0 = :"claude-sonnet-4-0" # High-performance model with extended thinking CLAUDE_4_SONNET_20250514 = :"claude-4-sonnet-20250514" # Our previous most intelligent model CLAUDE_3_5_SONNET_LATEST = :"claude-3-5-sonnet-latest" # Our previous most intelligent model CLAUDE_3_5_SONNET_20241022 = :"claude-3-5-sonnet-20241022" CLAUDE_3_5_SONNET_20240620 = :"claude-3-5-sonnet-20240620" # Our most capable model CLAUDE_OPUS_4_0 = :"claude-opus-4-0" # Our most capable model CLAUDE_OPUS_4_20250514 = :"claude-opus-4-20250514" # Our most capable model CLAUDE_4_OPUS_20250514 = :"claude-4-opus-20250514" # Our most capable model CLAUDE_OPUS_4_1_20250805 = :"claude-opus-4-1-20250805" # Excels at writing and complex tasks # @deprecated Will reach end-of-life on January 5th, 2026. Please migrate to a newer model. # Visit https://docs.anthropic.com/en/docs/resources/model-deprecations for more # information. CLAUDE_3_OPUS_LATEST = :"claude-3-opus-latest" # Excels at writing and complex tasks # @deprecated Will reach end-of-life on January 5th, 2026. Please migrate to a newer model. # Visit https://docs.anthropic.com/en/docs/resources/model-deprecations for more # information. CLAUDE_3_OPUS_20240229 = :"claude-3-opus-20240229" # Our previous most fast and cost-effective CLAUDE_3_HAIKU_20240307 = :"claude-3-haiku-20240307" # @!endgroup end end end