this post was submitted on 05 Aug 2026
387 points (97.1% liked)

Technology

86879 readers
3535 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
[–] MangoCats@feddit.it 2 points 3 hours ago

"Chatbot" style AI is wildly good and bad at varying kinds of tasks, and a lot of that has to do with how it has been prepared.

Some LLMs have been trained to make images - I've not been too impressed with them, but that's what they're "good" at - and better than the LLMs that have been trained to write computer code when you ask the coding LLMs to draw a picture.

The code writing LLMs have actually improved the most at reviewing code over the past 8-9 months, and that ability to review their own code makes them dramatically better at writing code as well.

I find Google Gemini to be pretty impressive at scanning laws and regulations and finding, not creative, but functional solutions to stated problems within the constraints of (often frustratingly bizarre) legal structures.

And all of them will lie to you, tell you what a great idea you have, etc. They're not really lying, they're mostly just taking what they read at face value without checking corroborating sources enough to find the obvious (to you) blunders. If you want the LLM to be sure, ask it to go on the RAG (Research Augmented Generation) - check everything before saying it, they can do that, especially "paid mode" engines, but it reduces their capacity for analysis of complex problems by 3-10x, because they're spending so much context window "being sure" - you can alternatively spend 3-10x as long solving complex problems / accomplishing complex tasks if you have them do their homework, verify everything from "the best" available sources 3x and build up a local document set of "trusted information" which is used in preference to whatever it might find at random on the internet. This isn't as sexy as "Hey Claude, code me up a database that does X Y Z" and getting the result in 30 seconds, but it is how professionals have been doing their jobs for centuries: learn reliable information first, then act on it.