6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
|
|
export type ChatWindowMessage = {
|
||
|
|
content: string;
|
||
|
|
role: "human" | "ai";
|
||
|
|
runId?: string;
|
||
|
|
traceUrl?: string;
|
||
|
|
}
|