@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
16 lines (15 loc) • 351 B
TypeScript
export interface Prompt {
name: string;
system_prompt?: string | null;
description?: string;
messages: {
role: 'user' | 'assistant';
text: string;
}[];
}
export interface MCPOptions {
promptsCollection?: string;
allowDeletes?: boolean;
systemPromptEnabled?: boolean;
systemPrompt?: string | null;
}