Event emitted when an agent's context is updated

interface AgentContextUpdated {
    agentId: string;
    agentName: string;
    eventType: "AgentContextUpdated";
    contextId: string;
    messagesCount: number;
    occurredAt: Date;
}

Hierarchy (View Summary)

Properties

agentId: string
agentName: string
eventType: "AgentContextUpdated"
contextId: string
messagesCount: number
occurredAt: Date

The timestamp when this event occurred.