11 lines
190 B
TypeScript
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;
|
|
}
|