chat-ui / src /lib /types /Conversation.ts
coyotte508's picture
coyotte508 HF staff
✨ Can chat in shared convo (#55)
0bfcf81 unverified
raw history blame
No virus
321 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;
meta?: {
fromShareId?: string;
};
}