lib/anthropic/models/cache_control_ephemeral.rb (7 lines of code) (raw):

# frozen_string_literal: true module Anthropic module Models class CacheControlEphemeral < Anthropic::Internal::Type::BaseModel # @!attribute type # # @return [Symbol, :ephemeral] required :type, const: :ephemeral # @!parse # # @param type [Symbol, :ephemeral] # # # def initialize(type: :ephemeral, **) = super # def initialize: (Hash | Anthropic::Internal::Type::BaseModel) -> void end end end