Interface PromptTemplateConfig

Template configuration for dynamic prompt generation

interface PromptTemplateConfig {
    template: string;
    variables?: Record<string, any>;
    partials?: Record<string, string>;
}

Properties

template: string
variables?: Record<string, any>
partials?: Record<string, string>