chatbot / types /prompt.ts
matthoffner's picture
Upload 242 files
15d9c3e
raw
history blame
190 Bytes
import { OpenAIModel } from './openai';
export interface Prompt {
id: string;
name: string;
description: string;
content: string;
model: OpenAIModel;
folderId: string | null;
}