Class: LLMs::Stream::Events::ThinkingDelta
- Defined in:
- lib/llms/stream/events.rb
Instance Attribute Summary collapse
-
#message_id ⇒ Object
readonly
Returns the value of attribute message_id.
-
#thinking ⇒ Object
readonly
Returns the value of attribute thinking.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(message_id, thinking) ⇒ ThinkingDelta
constructor
A new instance of ThinkingDelta.
Constructor Details
#initialize(message_id, thinking) ⇒ ThinkingDelta
Returns a new instance of ThinkingDelta.
31 32 33 34 35 |
# File 'lib/llms/stream/events.rb', line 31 def initialize(, thinking) super() @message_id = @thinking = thinking end |
Instance Attribute Details
#message_id ⇒ Object (readonly)
Returns the value of attribute message_id.
30 31 32 |
# File 'lib/llms/stream/events.rb', line 30 def @message_id end |
#thinking ⇒ Object (readonly)
Returns the value of attribute thinking.
30 31 32 |
# File 'lib/llms/stream/events.rb', line 30 def thinking @thinking end |