Files
copilotkit__copilotkit/packages/shared/src/debug-event-envelope.ts

10 lines
181 B
TypeScript

import { BaseEvent } from "@ag-ui/client";
export interface DebugEventEnvelope {
timestamp: number;
agentId: string;
threadId: string;
runId: string;
event: BaseEvent;
}