@presidio-dev/factifai-agent
Version:
An AI powered browser automation testing agent powered by LLMs.
31 lines • 871 B
TypeScript
/**
* Displays the FACTIFAI logo in a minimal, pretty box
*/
export declare const displayFactifaiLogo: () => void;
export declare const executeBrowserTask: (instruction: string, sessionId: string, options?: {
noReport?: boolean;
reportFormat?: string;
skipAnalysis?: boolean;
}) => Promise<{
success: boolean;
error: string;
testSteps: {
id: number;
instruction: string;
status: "not_started" | "in_progress" | "passed" | "failed";
notes: string;
}[];
testSummary: string | null;
} | {
success: boolean;
testSteps: {
id: number;
instruction: string;
status: "not_started" | "in_progress" | "passed" | "failed";
notes: string;
}[];
testSummary: string | null;
error?: undefined;
}>;
export * from "./core/graph/graph";
//# sourceMappingURL=index.d.ts.map