Member Junction
    Preparing search index...

    Defines a system placeholder that can be used in prompt templates.

    SystemPlaceholder

    interface SystemPlaceholder {
        category?: string;
        description?: string;
        getValue: SystemPlaceholderFunction;
        name: string;
    }
    Index

    Properties

    category?: string

    Optional category for grouping placeholders in UI

    description?: string

    Optional description of what this placeholder provides

    Async function that returns the placeholder value

    name: string

    The placeholder name (e.g., '_CURRENT_DATE')