evalution
    Preparing search index...

    Interface NormalizedPromptUpdates

    Updates that can be applied to a NormalizedPrompt via PromptProvider.updatePromptProperties. A value of null removes that field from the underlying source.

    interface NormalizedPromptUpdates {
        messages?: NormalizedMessage[] | null;
        model?: ModelPropValue | null;
        modelParameters?: Record<string, PropValue | null>;
        system?: PropValue | null;
    }
    Index

    Properties

    messages?: NormalizedMessage[] | null
    model?: ModelPropValue | null
    modelParameters?: Record<string, PropValue | null>

    Per-parameter updates, keyed by parameter name. null removes.

    system?: PropValue | null