/** * Curation Prompt Builder. * * Constructs system and user prompts for LLM-based intent * classification of natural language memory curation commands. * * Part of Phase 6E: Natural Language Curation. */ /** * Built prompt pair for the curation LLM call. */ export interface ICurationPrompt { readonly system: string; readonly user: string; } /** * Build an intent classification prompt from natural language input. * * @param input - The user's natural language command */ export declare function buildCurationPrompt(input: string): ICurationPrompt; //# sourceMappingURL=curation.d.ts.map