this post was submitted on 21 Sep 2026
382 points (97.3% liked)

Technology

88183 readers
3249 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] benjirenji@slrpnk.net 2 points 2 hours ago

Agents is just the LLM prompting itself with subtasks. This can be helpful to compartmentalize larger and more complex tasks. I find the tool calls most important. An agent that can compile and test its own code will make fewer mistakes (assuming the tests weren't also written by LLMs but even then).

So there's a self-correcting feedback loop that will improve quality, but is also a lot more expensive. The problem is that the temptation is huge to give more and more complex tasks to the agents and then they go off for 30min or longer and may or may not create complete and utter bullshit because something led them astray or they forgot something one agent did wrong and never fixed it. The end result may work, but it may be less efficient or come with a share of dead code that's never called etc.

You end up with hundreds of lines to verify. You could just ask an agent to do it, but at some point adding more agents to the pile is not going to help... and probably takes longer than just reading it yourself.