ollama / types /prompt.ts
rippanteq7's picture
Upload folder using huggingface_hub
bbef364 verified
raw
history blame contribute delete
190 Bytes
import { OllamaModel } from './ollama';
export interface Prompt {
id: string;
name: string;
description: string;
content: string;
model: OllamaModel;
folderId: string | null;
}