chat-ui / src /lib /types /Conversation.ts
coyotte508's picture
coyotte508 HF staff
♻️ Duplicate convos in DB when they are shared (#44)
76d4779 unverified
raw
history blame
No virus
282 Bytes
import type { ObjectId } from 'mongodb';
import type { Message } from './Message';
export interface Conversation {
_id: ObjectId;
// Can be undefined for shared convo then deleted
sessionId: string;
title: string;
messages: Message[];
createdAt: Date;
updatedAt: Date;
}