mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import { BaseEvent } from "@ag-ui/client";
|
|
|
|
export interface DebugEventEnvelope {
|
|
timestamp: number;
|
|
agentId: string;
|
|
threadId: string;
|
|
runId: string;
|
|
event: BaseEvent;
|
|
}
|