Langfuse JS/TS SDKs
    Preparing search index...

    Interface UpdateCodeEvaluatorRequest

    interface UpdateCodeEvaluatorRequest {
        description?: null | string;
        name?: string;
        sourceCode: string;
        sourceCodeLanguage: CodeEvaluatorSourceCodeLanguage;
        type: "code";
    }
    Index

    Properties

    description?: null | string

    New description. Set to null to clear it.

    name?: string

    New human-readable evaluator name.

    sourceCode: string

    Complete replacement source code.

    Runtime language used to execute the source code.

    type: "code"

    Evaluator type. The type of an existing evaluator cannot change.