chat-ui / src /lib /types /SharedConversation.ts
coyotte508's picture
coyotte508 HF staff
♻️ Duplicate convos in DB when they are shared (#44)
76d4779 unverified
raw
history blame
No virus
189 Bytes
import type { Message } from './Message';
export interface SharedConversation {
_id: string;
hash: string;
title: string;
messages: Message[];
createdAt: Date;
updatedAt: Date;
}