this post was submitted on 22 Aug 2026
305 points (97.8% liked)

Technology

87390 readers
3818 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
 

A new Coddy Developer Survey found that four in five developers, 80%, say their use of AI has felt more like a dependence than an advantage.

you are viewing a single comment's thread
view the rest of the comments
[–] dogdeanafternoon@lemmy.ca 1 points 5 hours ago (2 children)

This is crazy lol they obviously have access to information.

[–] chilicheeselies@lemmy.world 2 points 3 hours ago

You are both right. An LLM inherently has access to stuff the same way a brain in a jar has access to stuff. It's information comes from fine-tuning the models to return syntax that agent code can interpret as a request to invoke a tool. That tool returns information to the context of the conversation. It doesn't learn and it can't truly remember things. Every time you start a session it is brand new. It sees your codebase for the first time every time.

The information access they have is whatever the agent allows it to access via tool exposure. Be it built in tools, or MCP servers

[–] kescusay@lemmy.world 1 points 4 hours ago* (last edited 4 hours ago)

As I've mentioned elsewhere, not if by "information" you mean semantic content that a mind can process. What they have are vector fields (essentially just numbers) with statistically more or less likely relationships.

If I say, "take me out to the ballgame" to an LLM, the tokens representing the words in the next verse of the song are statistically "close" in the vector database, so it's likely to generate them. But that doesn't mean it actually knows the lyrics... or even has those lyrics recorded in a regular database anywhere.

That's why they hallucinate. The model determines that the next token is something nonsensical, but it has no way of understanding that it has made a mistake. In a sense, it actually hasn't made a mistake. It's done exactly what it's designed to do. It's just that in the case of hallucinations, its output isn't useful.