interface EvalJSON {
    agentName?: string;
    appConfig?: AppConfig;
    createdAt: number;
    description?: string;
    jobId?: string;
    status: {
        message?: string;
        state: EvalJobStatus;
    };
    testSuiteName: string;
    workflowName?: string;
}

Hierarchy (view full)

Properties

agentName?: string
appConfig?: AppConfig
createdAt: number
description?: string
jobId?: string
status: {
    message?: string;
    state: EvalJobStatus;
}

Type declaration

testSuiteName: string
workflowName?: string