interface Evaluation {
    agentName?: string;
    appConfig?: AppConfig;
    createdAt: number;
    description?: string;
    evalName: string;
    experimentName: string;
    jobId?: string;
    result: EvalResult[];
    status: {
        message?: string;
        state: EvalJobStatus;
    };
    testSuiteName: string;
    workflowName?: string;
}

Hierarchy (view full)

Properties

agentName?: string
appConfig?: AppConfig
createdAt: number
description?: string
evalName: string
experimentName: string
jobId?: string
result: EvalResult[]
status: {
    message?: string;
    state: EvalJobStatus;
}

Type declaration

testSuiteName: string
workflowName?: string