evalution
    Preparing search index...

    Interface NormalizedParameter

    A model parameter (temperature, maxTokens, …) attached to a prompt. Mirrors the PropDefinition + current value pair that the playground UI needs for rendering a parameter editor.

    interface NormalizedParameter {
        def: PropDefinition;
        editable: boolean;
        value?: PropValue;
    }
    Index

    Properties

    Properties

    Describes the parameter's name, type, and documentation.

    editable: boolean

    Whether the current value can be edited from the UI.

    value?: PropValue

    The parameter's current value, or undefined if not set on the prompt.