chat-ui / src /lib /types /Conversation.ts
nsarrazin's picture
nsarrazin HF staff
Store preprompt in conversation (#422) (#470)
af58e08 unverified
raw history blame
No virus
399 Bytes
import type { ObjectId } from "mongodb";
import type { Message } from "./Message";
import type { Timestamps } from "./Timestamps";
import type { User } from "./User";
export interface Conversation extends Timestamps {
_id: ObjectId;
sessionId?: string;
userId?: User["_id"];
model: string;
title: string;
messages: Message[];
meta?: {
fromShareId?: string;
};
preprompt?: string;
}