UNPKG

editcodewithai

Version:
12 lines (11 loc) 433 B
import type { EditFormat } from "./types"; export declare const PROMPT_TEMPLATE_VERSION = 1; export declare const FORMAT_INSTRUCTIONS: Record<EditFormat, string>; /** * Assembles the full prompt by combining task, files context, and formatting instructions */ export declare function assembleFullPrompt({ filesContext, prompt, editFormat, }: { filesContext: string; prompt: string; editFormat?: EditFormat; }): string;