Member Junction
    Preparing search index...

    InputDefinition for a Prompt Eval test — the frozen state the model decides from.

    interface PromptEvalInput {
        conversationMessages?: ChatMessage[];
        payload?: Record<string, unknown>;
        templateData?: Record<string, unknown>;
    }
    Index

    Properties

    conversationMessages?: ChatMessage[]

    Prior conversation, including any action-result annotations for mid-loop cases.

    payload?: Record<string, unknown>

    The starting payload. Surfaced to the template as _CURRENT_PAYLOAD (§3.1).

    templateData?: Record<string, unknown>

    Anything else the template needs.