Class: OmniAI::Google::Chat::Stream
- Inherits:
-
Chat::Stream
- Object
- Chat::Stream
- OmniAI::Google::Chat::Stream
- Defined in:
- lib/omniai/google/chat/stream.rb
Overview
Combine chunks into a hash. For each chunk yield the text (delta) if a block is given and the chunk is text.
Instance Method Summary collapse
Instance Method Details
#stream! {|delta| ... } ⇒ Hash
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/omniai/google/chat/stream.rb', line 12 def stream!(&block) @data = { "candidates" => [] } @chunks.each do |chunk| parser.feed(chunk) do |type, data, id| process!(type, data, id, &block) end end @data end |