chat-ui / src /lib /types /Message.ts
nsarrazin's picture
nsarrazin HF staff
Add initial support for web browsing (#237)
0c4cf03 unverified
raw
history blame
No virus
163 Bytes
export interface Message {
from: "user" | "assistant";
id: ReturnType<typeof crypto.randomUUID>;
content: string;
webSearchId?: string;
score?: -1 | 0 | 1;
}