2024-06-21 15:40:46 -04:00

6 lines
117 B
TypeScript

export type ChatWindowMessage = {
content: string;
role: "human" | "ai";
runId?: string;
traceUrl?: string;
}