@langwatch/scenario
    Preparing search index...

    Interface JudgeAgentConfig

    Configuration for the judge agent.

    interface JudgeAgentConfig {
        criteria: string[];
        maxTokens?: number;
        model?: LanguageModel;
        name?: string;
        systemPrompt?: string;
        temperature?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    criteria: string[]

    The criteria that the judge will use to evaluate the conversation.

    maxTokens?: number = ...
    model?: LanguageModel = ...
    name?: string

    The name of the agent.

    systemPrompt?: string

    A custom system prompt to override the default behavior of the judge.

    temperature?: number = ...