LLMStreamingFrameReceivedEvent
data class LLMStreamingFrameReceivedEvent(val runId: String, val frame: StreamFrame, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)
Event representing the receipt of a streaming frame from a Language Learning Model (LLM).
This event occurs as part of the streaming interaction with the LLM, where individual frames of data are sent incrementally. The event contains details about the specific frame received, as well as metadata related to the event's timing and identity.
Constructors
Link copied to clipboard
constructor(runId: String, frame: StreamFrame, timestamp: Long = Clock.System.now().toEpochMilliseconds())