browser-use/jev-ultrafast

i. am. speed.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 34 minutes ago
Added to GitGenius on September 18th, 2026
Created on September 16th, 2026
Open Issues & Pull Requests: 37 (+0)
GitHub issues: Enabled
Number of forks: 398
Total Stargazers: 6,283 (+184)
Total Subscribers: 11 (-1)

Repository Insights (GitGenius)

Median issue/PR response: 0.8 hours
Mean response time: 2.4 hours
90th percentile: 6.3 hours
Tracked items: 3

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 9
New in 7 days: 9
Closed in 7 days: 0
Avg open age: 0 days
Stale 30+ days: 0
Stale 90+ days: 0

Recent activity

Opened in 7 days: 9
Closed in 7 days: 0
Comments in 7 days: 3
Events in 7 days: 5

Top labels

No label distribution available yet.

Detailed Description

Jev Ultrafast is a browser agent that uses a dynamic, indexed action space to complete web tasks with minimal inference overhead.

The tool addresses the problem of slow browser automation by separating decision-making into two lightweight steps: first, the model selects an operation type from those available on the current page, then it selects a target element. This two-decision structure fits into a single network round trip. Text generation happens only when the operation is TYPE_TEXT, avoiding expensive token generation for navigation and interaction tasks. The approach uses a small language model with an OpenAI-compatible interface, supporting providers like OpenRouter, Gemini, GLM, and DeepSeek. Element targeting uses native dropdown indices where applicable, and the action space includes CLICK, TYPE_TEXT, SELECT, SCROLL_UP, SCROLL_DOWN, WAIT, DONE, and BLOCKED operations.

The tool suits developers building web automation systems where latency matters—the demonstration completes a Google Flights search from Zürich to London in 7.1 seconds including actual page loads and text generation. It requires no site-specific scripts or pre-written field strings; the policy works generically across different web interfaces. The project provides a local inspector at http://127.0.0.1:8766 for debugging, with options to step through execution or run automatically. Setup uses uv for dependency management and connects to Chrome through Browser Harness with remote debugging enabled.

The codebase is compact and readable, with the core agent loop available in a single file for inspection. Development appears focused and deliberate, with clear documentation of performance characteristics and a working example that independently verifies outcomes rather than relying on scripted assertions. The project maintains a homepage separate from the repository and provides both a library interface for custom tasks and a complete example implementation.