module RubyLLM::Streaming

def handle_stream(&block)

def handle_stream(&block)
  to_json_stream do |data|
    block.call(build_chunk(data)) if data
  end
end