Langfuse JS/TS SDKs
    Preparing search index...
    interface LlmAsJudge {
        createdAt: string;
        evaluationRuleCount: number;
        id: string;
        modelConfig: null | unstable.EvaluatorModelConfig;
        name: string;
        outputDefinition: unstable.PublicEvaluatorOutputDefinition;
        prompt: string;
        scope: unstable.EvaluatorScope;
        type: "llm_as_judge";
        updatedAt: string;
        variables: string[];
        version: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdAt: string

    Timestamp when this evaluator was created.

    evaluationRuleCount: number

    Number of evaluation rules in the project that currently use this evaluator version.

    id: string

    Identifier of this evaluator.

    modelConfig: null | unstable.EvaluatorModelConfig

    Explicit model configuration, or null when the project default evaluation model is used.

    name: string

    Evaluator name.

    Structured output schema returned by this evaluator.

    Responses always include dataType and omit the internal output-definition version. Use dataType to decide how future scores should be interpreted.

    prompt: string

    Prompt template used during evaluation.

    Where this evaluator comes from: your project or Langfuse-managed defaults.

    type: "llm_as_judge"
    updatedAt: string

    Timestamp when this evaluator was last updated.

    variables: string[]

    Variables that can be mapped when creating an evaluation rule.

    LLM evaluators require every variable to be mapped exactly once. Code evaluators always expose the fixed runtime payload fields and Langfuse maps them automatically.

    version: number

    Version number of this evaluator.