lib/anthropic/models/thinking_delta.rb



# frozen_string_literal: true

module Anthropic
  module Models
    class ThinkingDelta < Anthropic::Internal::Type::BaseModel
      # @!attribute thinking
      #
      #   @return [String]
      required :thinking, String

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

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