/** * Model constants for LLM interactions * * Centralized model configuration to make it easy to update models across the codebase. */ /** * Default model for complex reasoning tasks: * - Command generation (Playwright selectors) * - Goal completion checks (critical decisions) * - Repair suggestions (complex logic) * - Agent orchestration (decision-making) */ export declare const DEFAULT_MODEL = "gpt-5-mini"; /** * Simpler model for structured/guided tasks: * - Scenario breakdown (structured splitting) * - Screenshot need assessment (yes/no decision) * - Repair confidence assessment (comparison task) * - Test name generation (text formatting) * - Hashtag generation (semantic tags) * - Script parsing (extract steps) * - Final script merging (text concatenation) */ export declare const DEFAULT_SIMPLER_MODEL = "gpt-4o-mini"; /** * Vision-capable model for visual diagnostics: * - Screenshot analysis * - Visual element identification * - UI blocker detection */ export declare const VISION_MODEL = "gpt-5-mini"; //# sourceMappingURL=model-constants.d.ts.map