UNPKG

@kyleroberts69/core

Version:

Core library for the Chatbot project

10 lines (9 loc) 201 B
import { OpenAIModel } from './openai'; export interface Prompt { id: string; name: string; description: string; content: string; model: OpenAIModel; folderId: string | null; }