FreeGpt / types /prompt.ts
Daniton's picture
Duplicate from yxmnjxzx/chatbot-mini
5d4afba
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;
}