()
| 4471 | } |
| 4472 | |
| 4473 | export function createAgentsKilledMessage(): SystemAgentsKilledMessage { |
| 4474 | return { |
| 4475 | type: 'system', |
| 4476 | subtype: 'agents_killed', |
| 4477 | timestamp: new Date().toISOString(), |
| 4478 | uuid: randomUUID(), |
| 4479 | isMeta: false, |
| 4480 | } |
| 4481 | } |
| 4482 | |
| 4483 | export function createApiMetricsMessage(metrics: { |
| 4484 | ttftMs: number |