class RubyLLM::DeprecationError

Raised when a deprecated API is used and Configuration#deprecation_behavior is :raise. With the default :warn, deprecations are logged instead.

RubyLLM.configure do |config|
  config.deprecation_behavior = :raise
end