/** * Orchestrator Agent Prompts * Extracted from orchestrator-agent.ts for better maintainability */ import { AgentContext } from './types'; export declare class OrchestratorPrompts { /** * Build SoM (Set-of-Marks) system prompt for visual element identification */ static buildSomSystemPrompt(restrictCoordinates?: boolean, toolDescriptions?: string, enableVerifications?: boolean, finalResultProtoInstructions?: string): string; /** * Build user prompt with context */ static buildUserPrompt(context: AgentContext, consecutiveFailures?: number): string; /** * Build exploratory system prompt for autonomous exploration */ static buildExploratorySystemPrompt(toolDescriptions: string, finalResultProtoInstructions?: string): string; /** * Build exploratory user prompt with context */ static buildExploratoryUserPrompt(context: AgentContext, explorationPrompt: string, testDataPrompt?: string, stepNumber?: number, maxSteps?: number): string; } //# sourceMappingURL=orchestrator-prompts.d.ts.map