chat-ui / src /lib /types /Message.ts
coyotte508's picture
coyotte508 HF staff
Split app structure & create convos (#20)
1b66f8d unverified
raw
history blame
No virus
76 Bytes
export interface Message {
from: 'user' | 'assistant';
content: string;
}