class Ollama::Handlers::Say

def call(response)

def call(response)
  if content = response.response || response.message&.content
    @output.print content
  end
  response.done and @output.close
  self
end