log start event w/ agent data

This commit is contained in:
Ramnique Singh 2025-11-16 18:21:41 +05:30
parent 144bbe5878
commit 92b702d039
3 changed files with 24 additions and 14 deletions

View file

@ -10,8 +10,7 @@ const BaseRunEvent = z.object({
export const RunStartEvent = BaseRunEvent.extend({
type: z.literal("start"),
runId: z.string(),
agentId: z.string(),
agent: Agent,
agent: z.string(),
interactive: z.boolean(),
});