@presidio-dev/factifai-agent
Version:
An AI powered browser automation testing agent powered by LLMs.
18 lines • 555 B
TypeScript
import { GraphStateType } from "../../graph/graph";
/**
* Configuration for preprocessing limitations
*/
export declare const PREPROCESSING_CONFIG: {
MAX_INPUT_LENGTH: number;
};
/**
* Minimal preprocessing node that only handles serious formatting issues
*/
export declare const preprocessTestInputNode: ({ instruction, }: GraphStateType) => Promise<{
processedInstruction: string;
preprocessingError?: undefined;
} | {
processedInstruction: string;
preprocessingError: string;
}>;
//# sourceMappingURL=preprocessing-node.d.ts.map