lib/anthropic/models/beta/beta_tool_choice_none.rb



# frozen_string_literal: true

module Anthropic
  module Models
    module Beta
      class BetaToolChoiceNone < Anthropic::Internal::Type::BaseModel
        # @!attribute type
        #
        #   @return [Symbol, :none]
        required :type, const: :none

        # @!method initialize(type: :none)
        #   The model will not be allowed to use tools.
        #
        #   @param type [Symbol, :none]
      end
    end

    BetaToolChoiceNone = Beta::BetaToolChoiceNone
  end
end