/** * Externalized LLM prompt constants for the yaml-workflow pipeline. * * Template strings live in prompt-templates.ts. This file re-exports them * and provides builder functions that compose prompts at runtime. */ export { COMPILATION_PROMPT, VALIDATION_PROMPT, EXTRACT_DEFAULT_SYSTEM_PROMPT, EXTRACT_DEFAULT_USER_TEMPLATE, } from './prompt-templates'; /** * Build the retry hint injected into the compile stage when * user feedback or a prior deployment error triggers recompilation. */ export declare function buildRecompilationHint(feedback: string, priorYaml?: string): string;