Navigate a browser with Jev
jev_navigateNavigate a real headless browser from a start URL to complete a natural-language task. Returns the final page in your chosen format, step trace, captured errors, token usage, and a screenshot.
Instructions
Give a task and a start URL; a Jev-driven agent navigates a real headless browser until the goal is met, the stuck gate fires, or a budget (steps/seconds) is exhausted. Returns the final page in a chosen format (text, markdown, html, or an aria snapshot), the full step trace with confidences, console/page/network errors captured along the way, token usage with estimated cost, and a final screenshot.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | What the agent should accomplish, in natural language. | |
| format | No | Final page payload format: text (default, 8k chars), markdown (16k, via turndown), html (1MB, for app-side parsing), aria (16k, Playwright aria snapshot YAML). | |
| max_chars | No | Override the format's default character cap. | |
| max_steps | No | Hard step cap. Default 24. | |
| start_url | Yes | Where to start. | |
| screenshot | No | Final viewport JPEG. Default 'final'. | |
| max_seconds | No | Wall-clock cap in seconds. Default 180. | |
| allow_typing | No | Whether the agent may type into fields (uses the configured small model, or a keyword fallback). Default true. |