@langwatch/scenario
    Preparing search index...

    Interface TestingAgentConfig

    General configuration for a testing agent.

    interface TestingAgentConfig {
        maxTokens?: number;
        model?: LanguageModelV1;
        name?: string;
        systemPrompt?: string;
        temperature?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    maxTokens?: number

    The maximum number of tokens to generate.

    model?: LanguageModelV1

    The language model to use for generating responses. If not provided, a default model will be used.

    name?: string

    The name of the agent.

    systemPrompt?: string

    System prompt to use for the agent.

    Useful in more complex scenarios where you want to set the system prompt for the agent directly. If left blank, this will be automatically generated from the scenario description.

    temperature?: number

    The temperature for the language model. Defaults to 0.