UNPKG

editcodewithai

Version:
13 lines (12 loc) 472 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, imageFiles, }: { filesContext: string; prompt: string; editFormat?: EditFormat; imageFiles?: string[]; }): string;