@presidio-dev/factifai-agent
Version:
An AI powered browser automation testing agent powered by LLMs.
30 lines • 1.02 kB
TypeScript
import { GraphStateType } from "../../graph/graph";
export declare const generateReportNode: ({ testSteps, messages, lastError, sessionId, testStartTime, testEndTime, testDuration, reportFormat, }: GraphStateType) => Promise<{
testSummary?: undefined;
passRate?: undefined;
recommendations?: undefined;
criticalIssues?: undefined;
errorAnalysis?: undefined;
testEndTime?: undefined;
testDuration?: undefined;
lastError?: undefined;
} | {
testSummary: string;
passRate: number;
recommendations: string[] | null;
criticalIssues: string[] | null;
errorAnalysis: string | null;
testEndTime: number | null;
testDuration: number | null;
lastError?: undefined;
} | {
testSummary: string;
lastError: string | null;
passRate?: undefined;
recommendations?: undefined;
criticalIssues?: undefined;
errorAnalysis?: undefined;
testEndTime?: undefined;
testDuration?: undefined;
}>;
//# sourceMappingURL=report-generation-node.d.ts.map