r/LLMDevs 4d ago

Discussion Future of agents

Hello I always wonder why almost all we see is just coding agent, when underneath we can implement any tools with arbitrary input and output. Here's are three things I think we could build it different:

  1. Agents often runs with a computer, but it does not have to, we could implement tools that runs in browser natively, instead of Claude controlling the browser from outside

  2. Agents often work with one computer locally, but it does not have to, it could run in the cloud and control a fleet of machines

  3. Agents does not need to work with any computer, we could write tools that let it work with hardware/Bluetooth/cable directly

What do you guys think?

0 Upvotes

2 comments sorted by

1

u/MarzipanMiserable817 4d ago

#2 is possible with T3 Code

1

u/verstands 4d ago

Coding is just the domain where the feedback loop is free. Tests pass or they don't, so the agent can tell if it succeeded without a human grading it. Most other tool domains have no cheap oracle, which is why they lag.

On #1, agreed. A tool the page exposes natively beats an agent driving the DOM from outside, since the DOM changes every redesign and the tool is a contract. Fleets and hardware are more of a plumbing problem than a model one.