Viewing profile — hackgician
hackgician
HN member- Joined
- Tue, Feb 14, 2023, 3:53 AM UTC
- HN karma
- 131
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About hackgician
Recent public activity
-
comment
Comment #45952466
So many people building AI browsers definitely had this as an internal tool already lol, nice to see Chrome leaning in here; CDP is a huge pain to write and debug
-
comment
Comment #45943015
hey! cool project, feels very similar to [stagehand]( https://github.com/browserbase/stagehand ), although stagehand doesn't have much in the way of e2e testing. might be worth bui…
-
comment
Comment #43989382
accessibility (a11y) trees are super helpful for LLMs; we use them extensively in stagehand! the context is nice for browsers, since you have existing frameworks like selenium/play…
-
comment
Comment #43896606
Hey everyone! Thought I'd share my weekend conversation with ChatGPT. The crux of this hinges on the fact that LLMs and reasoning models are fundamentally incapable of self-correct…
- story
-
comment
Comment #42650797
Octomind is sick, web agents are such an interesting space; would love to talk to you more about challenges you might've faced in building it
-
comment
Comment #42650748
Yes and no. Getting a VLM to work on the web would definitely be great, but it comes with its own problems, mainly around developing and acting on bounding boxes. We have vision as…
-
comment
Comment #42650728
Whoa -- this is so cool! Is this open source? Would love to check it out
-
comment
Comment #42650723
Thanks so much! Yes, a lot of antibots are able to detect Playwright based on browser config. Generally, antibots are a good thing -- I think in the future, as web agents become mo…
-
comment
Comment #42650713
This is super interesting, is it open source? Would love to talk to you more about how this worked
-
comment
Comment #42650550
Big fan of Hack Club and everything you guys are doing! Such a phenomenal initiative
-
comment
Comment #42650513
This is sick! Starred, thanks for sharing :)
-
comment
Comment #42650491
Yes^ this is what we suggest. Stagehand is meant to execute isolated tasks on browsers; we support using custom contexts (cookies) with the following command: npx create-browser-ap…
-
comment
Comment #42650486
Yes! These are both phenomenal projects, and kudos to their authors as well. Stagehand is different in that it makes fine-grained control a first-class citizen. Often times, you wa…
-
comment
Comment #42650465
We accidentally didn't release the right types for LLMClient :/ However, if you set the version in package.json to "alpha", it will install what's on the main branch on GitHub, whi…
-
comment
Comment #42650449
Thanks so much! Crawlspace is pretty sick too, as is Integuru. A lot of people have different takes here on the level of automation to leave up to the user. As a developer building…
-
comment
Comment #42650436
That's definitely compelling, but not something we have in mind for the immediate future. Let me know if you end up building something here!
-
comment
Comment #42642512
Definitely a very interesting problem we're trying to dig deep into. We'd welcome any PRs here as well from the community :)
-
comment
Comment #42642487
Thanks so much Zane!!
-
comment
Comment #42642469
Yeah, I think someone opened a similar issue on GitHub: https://github.com/browserbase/stagehand/issues/389 Repeatability of extract() is definitely super interesting and something…
-
comment
Comment #42642152
Yes, you can certainly use Ollama! However, we strongly recommend using a more beefed up model to get sustainable results. Check out our external_client.ts file in examples/ that s…
-
comment
Comment #42642123
The purpose of using Playwright is to basically write deterministic workflows in deterministic automation code. We have basic prompt caching right now that works if the DOM doesn't…
-
comment
Comment #42642112
It's a little hacky, but we have a method in the act() handler called performPlaywrightMethod that takes in a playwright method + xpath and executes the playwright method on the xp…
-
comment
Comment #42640753
Appreciate the feedback. Our take is that Playwright is an open-sourced library with a lot of built-in features that make building with it a lot easier, so it's definitely an easie…
-
comment
Comment #42640303
Interesting, thanks for the feedback! By "taking the place of Playwright," we don't mean the AI itself is going to replace Playwright. Rather, you can continue to use existing Play…