lib/anthropic/models/beta/beta_web_search_tool_result_error_code.rb



# frozen_string_literal: true

module Anthropic
  module Models
    module Beta
      module BetaWebSearchToolResultErrorCode
        extend Anthropic::Internal::Type::Enum

        INVALID_TOOL_INPUT = :invalid_tool_input
        UNAVAILABLE = :unavailable
        MAX_USES_EXCEEDED = :max_uses_exceeded
        TOO_MANY_REQUESTS = :too_many_requests
        QUERY_TOO_LONG = :query_too_long

        # @!method self.values
        #   @return [Array<Symbol>]
      end
    end

    BetaWebSearchToolResultErrorCode = Beta::BetaWebSearchToolResultErrorCode
  end
end