119 points by wittydeveloper 1 day ago | 34 comments | View on ycombinator
wittydeveloper 1 day ago |
MiguelG719 about 3 hours ago |
On the act/extract/observe evals it shows promising results being extremely efficient
- act: 4.3x faster, 97% fewer LLM calls. Pass rate: 97.5% -> 98.3%. - heldout: 4.1x faster, 78% fewer LLM calls. Pass rate: 87.5% -> 97.5%. - observe: 11.1x faster, 69% fewer LLM calls. Pass rate: 75.0% -> 83.3%. - extract: 8.7x faster, 75% fewer LLM calls. Pass rate unchanged at 92%.
cost effectively 0
ulrikrasmussen about 15 hours ago |
How does it determine when a cached act() fails and has to be re-evaluated by the LLM? And in particular, if the cache is saved in the cloud (Browserbase?), won't this lead to a lot of cache churn if used in CI pipelines where different versions of the site are running against the same cache?
Also, is there a technical reason why the cache couldn't just be a local file that's checked in along with the script but must be provided by Browserbase? If it was, devs could heal failing tests locally using LLM calls, while CI runs entirely deterministically.
throw03172019 about 5 hours ago |
vishalanton 1 day ago |
yread about 7 hours ago |
tengkahwee about 15 hours ago |
bensyverson about 19 hours ago |
cl685 1 day ago |
ishankunam 1 day ago |
dot_louis 1 day ago |
alyssamaru 1 day ago |
cl685 1 day ago |
alikhater30000 about 4 hours ago |
hellobuddy9 about 9 hours ago |
shashanoid about 15 hours ago |
Every action performed requires a round trip between your script and the browser (short when running locally but increased when running in the cloud). We also saw multiple posts complaining about the eager token appetite of Playwright MCP.
For this reason, we rebuilt Stagehand from the ground up and shipped v4, where Stagehand controls the browser from an extension automatically loaded upon your browser startup.
Stagehand v4 comes with batch command support, dedicated token-efficient methods `act()` and `extract()`, and a brand new architecture making it 2x faster than Playwright and 80% more token efficient.
You can see for yourself by looking at our benchmarks, comparing its performance across a dozen models (frontier and open weights) and tools (Codex, Claude Code, and more): https://www.stagehand.dev/evals
Ask me anything!