lib/anthropic/models/beta/beta_stop_reason.rb (15 lines of code) (raw):

# frozen_string_literal: true module Anthropic module Models module Beta module BetaStopReason extend Anthropic::Internal::Type::Enum END_TURN = :end_turn MAX_TOKENS = :max_tokens STOP_SEQUENCE = :stop_sequence TOOL_USE = :tool_use finalize! # @!parse # # @return [Array<Symbol>] # def self.values; end end end BetaStopReason = Beta::BetaStopReason end end