Files
Mckay Wrigley 34c79c0d66 Prompts (#229)
2023-03-27 09:38:56 -06:00

11 lines
190 B
TypeScript

import { OpenAIModel } from './openai';
export interface Prompt {
id: string;
name: string;
description: string;
content: string;
model: OpenAIModel;
folderId: string | null;
}