chat-ui / src /lib /types /Message.ts
victor's picture
victor HF staff
Prettier update (#54)
5da61b4 unverified
raw
history blame
No virus
76 Bytes
export interface Message {
from: "user" | "assistant";
content: string;
}