chat-ui / src /lib /types /Message.ts
coyotte508's picture
coyotte508 HF staff
✨ Retry messages (#121)
4a6603b unverified
raw history blame
No virus
119 Bytes
export interface Message {
from: "user" | "assistant";
id: ReturnType<typeof crypto.randomUUID>;
content: string;
}