Class: AgUiProtocol::Core::Events::ThinkingTextMessageEndEvent

Inherits:
BaseEvent show all
Defined in:
lib/ag_ui_protocol/core/events.rb

Overview

Event indicating the end of a thinking text message.

Instance Attribute Summary

Attributes inherited from BaseEvent

#raw_event, #timestamp, #type

Instance Method Summary collapse

Methods inherited from BaseEvent

#to_h

Methods inherited from Types::Model

#as_json, #to_h, #to_json

Constructor Details

#initialize(timestamp: nil, raw_event: nil) ⇒ ThinkingTextMessageEndEvent

Returns a new instance of ThinkingTextMessageEndEvent.



321
322
323
# File 'lib/ag_ui_protocol/core/events.rb', line 321

def initialize(timestamp: nil, raw_event: nil)
  super(type: EventType::THINKING_TEXT_MESSAGE_END, timestamp: timestamp, raw_event: raw_event)
end