donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
15 lines • 820 B
TypeScript
import type { z } from 'zod/v4';
import type { ToolCallContext } from '../models/ToolCallContext';
import { ToolCallResult } from '../models/ToolCallResult';
import { BaseGptArgsSchema, NoArgsSchema } from '../models/ToolSchema';
import { Tool } from './Tool';
/**
* This tool pauses the Donobu flow to let the user interact with the webpage manually.
*/
export declare class PauseForUserInteractionTool extends Tool<typeof NoArgsSchema, typeof BaseGptArgsSchema> {
static readonly NAME = "pauseForUserInteraction";
constructor();
call(context: ToolCallContext, _parameters: z.infer<typeof NoArgsSchema>): Promise<ToolCallResult>;
callFromGpt(context: ToolCallContext, _parameters: z.infer<typeof BaseGptArgsSchema>): Promise<ToolCallResult>;
}
//# sourceMappingURL=PauseForUserInteractionTool.d.ts.map