class RubyLLM::Models

def method_missing(method, ...)

def method_missing(method, ...)
  if instance.respond_to?(method)
    instance.send(method, ...)
  else
    super
  end
end