Earlier quoted context omitted.
Hmm, but this how we handle it? We just have a CLI that outputs exactly, goal, state, and asks user for more clarity if needed, no GUI. The original idea was to make it completely headless.
I'm sorry I'm definitely off today, and am missing it, I appreciate your patience. I'm thinking maybe the goal/state stuff might have clouded my point. Setting aside prompt engineering, just thinking of the stock AI UIs today, i.e. chat based. Then, we want to accomplish some goal using GUI and/or CLI. Given the premise that I'd avoid GUI automation, why am I saying CLI is the way to go? A toy example: let's say the…
Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
41–50 of 75 posts
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#42Earlier quoted context omitted.
I'm sorry I'm definitely off today, and am missing it, I appreciate your patience. I'm thinking maybe the goal/state stuff might have clouded my point. Setting aside prompt engineering, just thinking of the stock AI UIs today, i.e. chat based. Then, we want to accomplish some goal using GUI and/or CLI. Given the premise that I'd avoid GUI automation, why am I saying CLI is the way to go? A toy example: let's say the…
try openinterpreter for cli computer automation.
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#43This looks interesting. I am really impressed with MultiOn [0], and I tried to make something similar, but it's quite challenging doing it with a Chrome extension. I also saw one doing Captcha solving with Selenium [1]. I will keep an eye on your development, good luck! [0] https://www.multion.ai/ [1] https://github.com/VRSEN/agency-swarm
After having spent the last several years building a popular Chrome extension for browser automation [1], I was excited to see if LLMs could actually build automations end-to-end based on a high-level description. Unfortunately, they still get confused quite easily so the holy grail has yet to come. Still fun to play around with though!
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#44It would be amazing if you: a) There were a test / eval suite to determine which model works best for what. It could be divided into a training suite and test suite. (Training tasks can be used for training, test tasks only for evaluation.) Possibly a combination of unit tests against known xpaths, and integration tests that are multi-step and end in a measurable result. I know the web is constantly changing, so I'm…
A) we plan on thoroughly testing that with Mind2Web dataset. They have a very robust set of (persistant) selectors B) so, shadcn for prompts for web agents haha :) but I agree, that would be SICK! Just go to browseruse and get the prompt for your specific use case
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#45Earlier quoted context omitted.
Screenshots aren't as accurate or context-rich as HTML, but they let you bypass the hassle of building logic for permissions and authentication across different apps to pull in text content for the LLM.
Can’t you just make a browser extension to haveaccess to the HTML and CSS, and use LLMs from that?
If you extract entire HTML and CSS your cost + inference time are quickly 10x.
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#46Is it decided then that screenshots are better input for LLMs than HTML, or is that still an active area of investigation? I see that y'all elected for a mostly screenshot-based approach here, wondering if that was based on evidence or just a working theory.
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#47Do you think: 1. Websites release more API functions for agents to interact with them or 2. We will transform with tools like this the UI into functions callable by agents and maybe even cache all inferred functions for websites in a third party service?
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#48Earlier quoted context omitted.
Can’t you just make a browser extension to haveaccess to the HTML and CSS, and use LLMs from that?
Context length + API cost is right now main bottleneck for huge HTML + CSS files. The extraction here is already quite efficient but still: with past messages + system prompt + sometimes extracted text + extracted interactive elements you are quickly already around 2500 tokens (for gpt-4o 0.01$). If you extract entire HTML and CSS your cost + inference time are quickly 10x.
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#49In case anyone else was looking for the functions available to the LLM: https://github.com/gregpr07/browser-use/blob/68a3227c8bc97fe...
Re: Show HN: I wrote an open-source browser alternative for Computer Use for any LLM
#50Earlier quoted context omitted.
Context length + API cost is right now main bottleneck for huge HTML + CSS files. The extraction here is already quite efficient but still: with past messages + system prompt + sometimes extracted text + extracted interactive elements you are quickly already around 2500 tokens (for gpt-4o 0.01$). If you extract entire HTML and CSS your cost + inference time are quickly 10x.
Aren't screenshots far larger than this?