ART Framework API Docs
    Preparing search index...

    Interface SystemPromptOverride

    Override provided at instance/thread/call level to select a tag and/or provide variables, or to provide freeform content and a merge strategy.

    SystemPromptOverride

    interface SystemPromptOverride {
        content?: string;
        strategy?: SystemPromptMergeStrategy;
        tag?: string;
        variables?: Record<string, any>;
    }
    Index

    Properties

    content?: string

    Freeform content to apply directly (escape hatch).

    Merge behavior against previous level: append | prepend.

    tag?: string

    Preset tag from the registry (e.g., 'default', 'legal_advisor').

    variables?: Record<string, any>

    Variables to substitute in the selected template.