Class: OmniAI::Chat::Delta

Inherits:
Object
  • Object
show all
Defined in:
lib/omniai/chat/delta.rb

Overview

An ‘OmniAI::Chat::Delta` is used to assist with streaming. It represents a chunk of a conversation that is yielded back to the caller.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(text:) ⇒ Delta

Returns a new instance of Delta.

Parameters:

  • text (String)


13
14
15
# File 'lib/omniai/chat/delta.rb', line 13

def initialize(text:)
  @text = text
end

Instance Attribute Details

#textObject



10
11
12
# File 'lib/omniai/chat/delta.rb', line 10

def text
  @text
end

Instance Method Details

#text?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/omniai/chat/delta.rb', line 18

def text?
  !text.empty?
end