Class: AgUiProtocol::Core::Events::ThinkingTextMessageStartEvent

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

Overview

Event indicating the start 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) ⇒ ThinkingTextMessageStartEvent

Returns a new instance of ThinkingTextMessageStartEvent.



289
290
291
# File 'lib/ag_ui_protocol/core/events.rb', line 289

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