Class: OmniAI::Chat::Stream
- Inherits:
-
Object
- Object
- OmniAI::Chat::Stream
- Defined in:
- lib/omniai/chat/stream.rb
Overview
A stream is used to process a series of chunks of data. It converts the following into a combined payload:
{ "id":"...", "choices": [{ "index": 0,"delta": { "role" :"assistant", "content":"" } }] }
{ "id":"...", "choices": [{ "index": 0,"delta": { "content" :"A" } }] }
{ "id":"...", "choices": [{ "index": 0,"delta": { "content" :"B" } }] }
...
Every
Instance Method Summary collapse
-
#initialize(chunks:, logger: nil) ⇒ Stream
constructor
A new instance of Stream.
- #stream! {|delta| ... } ⇒ Hash
Constructor Details
#initialize(chunks:, logger: nil) ⇒ Stream
Returns a new instance of Stream.
16 17 18 19 |
# File 'lib/omniai/chat/stream.rb', line 16 def initialize(chunks:, logger: nil) @chunks = chunks @logger = logger end |
Instance Method Details
#stream! {|delta| ... } ⇒ Hash
25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/omniai/chat/stream.rb', line 25 def stream!(&block) @data = { "choices" => [] } @chunks.map do |chunk| parser.feed(chunk) do |type, data, id| process!(type, data, id, &block) end end @data end |