Register and share your invite link to earn from video plays and referrals.

Gregor Zunic
@gregpr07
founder @browser_use
592 Following    30.5K Followers
Our browser benchmark looks suspiciously like my coding preferences. I LOVE Astra. DeepSeek V4.1 Flash is my go-to for uncensored coding. Feels like long browser tasks reveal more than just browser ability 👀
Show more
Grok 4.7 just dropped. Still chasing DeepSeek 👀 Long Horizon Browser Use Benchmark v2 > GPT-6 Astra: 80.6 > DeepSeek V4.1 Flash: 47.9 > Grok 4.7: 39.9 > Grok 4.6: 31.2 Better than 4.6. Still less than half Astra's score.
Show more
Grok 4.7 just dropped. Still chasing DeepSeek 👀 Long Horizon Browser Use Benchmark v2 > GPT-6 Astra: 80.6 > DeepSeek V4.1 Flash: 47.9 > Grok 4.7: 39.9 > Grok 4.6: 31.2 Better than 4.6. Still less than half Astra's score.
Show more
One night autoresearch didn't generalize yet. It tried so much crazy stuff optimizing vLLM though. > optimized caching specifically for custom harness > implemented diffusion transformer on a 2048 block which made inference 17x faster
Show more
Jev really inspired me to build SUPER fast browser agents without sacrificing accuracy. I gave Codex access to vLLM on 2×B300 and let it change everything from the harness to inference. The constrained optimization: > min end-to-end task time > s.t. score ≥ baseline Caching, thinking, action batching, inference. Any part of the pipeline is fair game. First results below on 12 local form tasks. The goal: 10× faster on long tasks.
Show more
41x the recorded cost for 1.7 extra points - Grok 4.7 (high) vs DeepSeek V4.1 Flash (low) on BU Bench v2 👀 W open source this time.
Grok 4.7 just dropped. Still chasing DeepSeek 👀 Long Horizon Browser Use Benchmark v2 > GPT-6 Astra: 80.6 > DeepSeek V4.1 Flash: 47.9 > Grok 4.7: 39.9 > Grok 4.6: 31.2 Better than 4.6. Still less than half Astra's score.
Show more
Touch grass while coding lfg
Introducing Superset for iPhone. Remotely control agents running on your computer. Review and ship PRs from your pocket.
Jev really inspired me to build SUPER fast browser agents without sacrificing accuracy. I gave Codex access to vLLM on 2×B300 and let it change everything from the harness to inference. The constrained optimization: > min end-to-end task time > s.t. score ≥ baseline Caching, thinking, action batching, inference. Any part of the pipeline is fair game. First results below on 12 local form tasks. The goal: 10× faster on long tasks.
Show more
hiring velocity is so 2025. Just hire agents lil bro
Pulled the fastest growing startups by hiring velocity over the past 90 days:
“Dropbox is just a ftp account mounted with curlftpfs” is the real lesson here
I'm very sensitive to this feeling, cause I've been there. Someone does something cool, gets a lot of attention, and you're frustrated cause you already did it, a while ago. It's not enough to do things, you must also tell people. Maybe it's not fair, but it's true
Show more
Jev Ultrafast is insane for WebMCP.
We just ran Jev on our WebMCP benchmark. The result: basically broke the benchmark. Jev + Mercury 2.5 (a fast, low-cost LLM) using WebMCP solved 100% of the tasks at roughly 112× lower model cost than GPT-6 Astra using computer use with code execution. Compared to Astra using screenshot-based computer use, the model cost was 245× lower (!). We also compared Jev operating the browser with and without WebMCP. We used Browser Use’s open-source Ultrafast, with some improvements to the harness to make it more reliable across the benchmark. Jev’s browser-control accuracy on its own was not amazing - adding WebMCP nearly doubled the number of solved tasks, from 25/49 to 49/49, while reducing model cost by 18% (more on why below). The benchmark and methodology are fully open and reproducible. Full results: A few words on how the Jev + WebMCP harness works and why this is exciting: Jev receives text as input and a set of discrete options it can choose from. With WebMCP, those options are the tools exposed by the website. At each step, Jev sees the task, the available tools and previous results, then picks what to do next. The limitation is that Jev can’t generate arbitrary text, which you need for tool arguments. For example, it can choose the search_products tool, but it can’t generate the search query itself. So we split the work: Jev picks the tool and Mercury 2.5 generates the arguments if needed. This works well because turns out most of the cognitive load in these tasks is around choosing the right action. The argument generation itself is relatively simple, so we can delegate to a small and very fast model. We used Mercury, which outputs 1,000+ tokens/sec and is very cheap. The result is a pretty simple combination: Jev for tool selection + Mercury for arguments + WebMCP for the interface. It ends up being very reliable, very fast, and very cheap. A few words about Ultrafast and why do we think it underperforms: Without WebMCP, Jev chooses from the page’s controls: which button to click, which field to fill, or which option to select. But choosing a valid button is different from choosing the right next step. The agent still has to navigate menus, understand forms, recover from errors and recognize when the task is actually complete. Our hypothesis is that WebMCP makes the decision space much simpler. Instead of figuring out a sequence of clicks through a website, Jev chooses explicit actions that directly advance the task. @typesafeai itself documents weaker accuracy on questions requiring multiple reasoning steps. WebMCP moves much of that complexity into the website’s tools, leaving Jev with clearer decisions and fewer opportunities to go wrong (in a sense WebMCP "compresses" a sequence of clicks into one tool call). Our modified Ultrafast setup solved 25/49 tasks - that is a result for our particular implementation and benchmark, not a universal limit on Jev or Browser Use. We are open to more harness optimization to get this result to perform better, feel free to directly contribute to the benchmark here: Browser-use ultrafast:
Show more
Lots of people ask us why we don’t ship a browser. Because browsers are dead and we have killed them. I don’t want to interact with a browser. I only want to tell my computer what to do and it does it. Why would I need to interact with a terrible UI like a monkey? Browser Use CLI does it 10 times better than me.
Show more
Very realistic overview. Hard to discern hype from reality about Jev so here are some bitter facts: - Jev can’t write text: it’s not an autoregressive model, so forget about anything related to coding or writing - Jev can’t see (yet): text only, althought there is nothing fundamentally preventing it from being multimodal. I’m sure they will add support for images? - Jev can ONLY choose a set of predefined actions: the good thing about computer and browser use is that by very nature it’s a STATE -> ACTION model. The problem with long running state action models is that the reasoning and state understanding becomes extremely important. - Jev is extremely cheap and fast It opened up my eyes into what’s possible. We are often stuck in optimizing problems inside the box. This is one the real “think outside the box” solutions to problems we have been trying to solve. I am extremely hyped about the future of computer and browser use. Latency matters, and people are clearly hyped about it. We can surely combine some sort of global state understanding (LLM) with super fast actor model (System One). Obviously it’s possible - FSD and robotics companies have solved this already. How hard can it be to apply the same thing to browser use?
Show more
Jev is awesome but for the love of god please STOP posting fake demos
Jev agent got 1/20 vs 17/20 for BrowserCode + Luna on our long horizon task benchmarks. The speed is INSANE. Feels like early Browser Use.(loads of potential, unsolved problems) Browser use is very complex state space search. Very often you just have to think hard or go back. A model with 0 reasoning ability simply can't do that (yet?). Can we get that behavior with better memory + search, without adding a reasoning model? Really hope I can make this work.
Show more
Breaking: Browser Use + Jev = Ultrafast ⚡ Findings flights took 7s and cost only $0.0039 🤯 > new action space every step > DOM state space > small LLM fallback to type (this video is at 1x speed btw) Built a tiny open source browser agent. try it below ↓
Show more
This is INSANE...We got an Ultrafast browser agent before GTA 6. 100% Opensource.
ULTRAFAST is coming to Browser Use Cloud ⚡ > superhuman speed > cheap > undetectable Tell us what you’d automate and get on the waitlist ↓
Show more
We should RL our own super small LLM and make it SOTA for browser use
Breaking: Browser Use + Jev = Ultrafast ⚡ Findings flights took 7s and cost only $0.0039 🤯 > new action space every step > DOM state space > small LLM fallback to type (this video is at 1x speed btw) Built a tiny open source browser agent. try it below ↓
Show more
0
276
9K
643
Forward to community
Only hire people that make you the dumbest person in the room.