UNPKG

@presidio-dev/factifai-agent

Version:

An AI powered browser automation testing agent powered by LLMs.

20 lines 833 B
/** * Constants for directory names */ export declare const PARENT_DIR_NAME = "factifai"; export declare const REPORTS_DIR_NAME = "reports"; export declare const SCREENSHOTS_DIR_NAME = "screenshots"; /** * Creates the parent directory structure and returns the full path to a session directory * @param sessionId The session ID * @returns The full path to the session directory within the parent directory */ export declare function getSessionPath(sessionId: string): string; /** * Creates a subdirectory within a session directory and returns the full path * @param sessionId The session ID * @param subDirName The name of the subdirectory * @returns The full path to the subdirectory */ export declare function getSessionSubdirPath(sessionId: string, subDirName: string): string; //# sourceMappingURL=path-utils.d.ts.map