lib/anthropic/models/beta/beta_thinking_block.rb



# frozen_string_literal: true

module Anthropic
  module Models
    module Beta
      class BetaThinkingBlock < Anthropic::Internal::Type::BaseModel
        # @!attribute signature
        #
        #   @return [String]
        required :signature, String

        # @!attribute thinking
        #
        #   @return [String]
        required :thinking, String

        # @!attribute type
        #
        #   @return [Symbol, :thinking]
        required :type, const: :thinking

        # @!method initialize(signature:, thinking:, type: :thinking)
        #   @param signature [String]
        #   @param thinking [String]
        #   @param type [Symbol, :thinking]
      end
    end

    BetaThinkingBlock = Beta::BetaThinkingBlock
  end
end