interface Evaluation {
    agentName?: string;
    appConfig?: Record<string, any>;
    createdAt: number;
    description?: string;
    evalName: string;
    experimentName: string;
    jobId?: string;
    result: EvalTestCaseResult[];
    status: {
        message?: string;
        state: JobQueueStatus;
    };
    testSuiteName: string;
    workflowName?: string;
}

Hierarchy (view full)

Properties

agentName?: string
appConfig?: Record<string, any>
createdAt: number
description?: string
evalName: string
experimentName: string
jobId?: string
status: {
    message?: string;
    state: JobQueueStatus;
}

Type declaration

testSuiteName: string
workflowName?: string