AgentStartingEvent

data class AgentStartingEvent(val eventId: String, val executionInfo: AgentExecutionInfo, val agentId: String, val runId: String, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)

Represents an event triggered when an AI agent starts executing a strategy.

This event provides details about the agent's strategy, making it useful for monitoring, debugging, and tracking the lifecycle of AI agents within the system.

Constructors

Link copied to clipboard
constructor(eventId: String, executionInfo: AgentExecutionInfo, agentId: String, runId: String, timestamp: Long = Clock.System.now().toEpochMilliseconds())
constructor(agentId: String, runId: String)

Properties

Link copied to clipboard

The unique identifier of the AI agent;

Link copied to clipboard
open override val eventId: String

A unique identifier for the event or a group of events;

Link copied to clipboard

Provides contextual information about the execution associated with this event.

Link copied to clipboard
open override val messageType: FeatureMessage.Type

Specifies the type of the feature message for this event.

Link copied to clipboard

The unique identifier of the AI agen run;

Link copied to clipboard
open override val timestamp: Long

The timestamp of the event, in milliseconds since the Unix epoch.