File size: 119 Bytes
cad3e14
5da61b4
4a6603b
1b66f8d
cad3e14
1
2
3
4
5
6
export interface Message {
	from: "user" | "assistant";
	id: ReturnType<typeof crypto.randomUUID>;
	content: string;
}