Circle V2 API Docs
    Preparing search index...

    Type Alias RunDateResolutionEvalOptions

    type RunDateResolutionEvalOptions = {
        datasetName: string;
        experimentPrefix?: string;
        maxConcurrency?: number;
        metadata?: Record<string, unknown>;
        model?: ChatOpenAI;
        numRepetitions?: number;
        timeZone?: string;
    }
    Index

    Properties

    datasetName: string

    LangSmith dataset of { question, referenceInstant, timeZone? } -> gold { intent, window } examples.

    experimentPrefix?: string
    maxConcurrency?: number
    metadata?: Record<string, unknown>
    model?: ChatOpenAI

    Extraction model for the LLM fallback path; defaults to gpt-4.1-mini (the eval's chosen model).

    numRepetitions?: number

    Run each example N times (LangSmith repetitions) to measure per-example consistency.

    timeZone?: string

    Fallback zone when an example omits one.