arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
23 lines • 577 B
TypeScript
import { Page } from 'playwright';
interface PilotOptions {
goal: string;
maxSteps?: number;
model?: string;
screenshotsDir: string;
}
interface PilotAction {
type: 'click' | 'type' | 'scroll' | 'wait' | 'done';
selector?: string;
text?: string;
reasoning: string;
}
interface PilotStep {
stepNumber: number;
screenshot: string;
action: PilotAction;
success: boolean;
error?: string;
}
export declare function runAIPilot(page: Page, options: PilotOptions): Promise<PilotStep[]>;
export {};
//# sourceMappingURL=pilot.d.ts.map