LLMStreamingStartingEvent
data class LLMStreamingStartingEvent(val runId: String, val prompt: Prompt, val model: String, val tools: List<String>, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)
Represents an event triggered when a language model (LLM) streaming operation is starting.
This event holds metadata related to the initiation of the LLM streaming process, including details about the run, the input prompt, the model used, and the tools involved.