this post was submitted on 25 Mar 2026
400 points (98.3% liked)

Not The Onion

20984 readers
1887 users here now

Welcome

We're not The Onion! Not affiliated with them in any way! Not operated by them in any way! All the news here is real!

The Rules

Posts must be:

  1. Links to news stories from...
  2. ...credible sources, with...
  3. ...their original headlines, that...
  4. ...would make people who see the headline think, “That has got to be a story from The Onion, America’s Finest News Source.”

Please also avoid duplicates.

Comments and post content must abide by the server rules for Lemmy.world and generally abstain from trollish, bigoted, ableist, or otherwise disruptive behavior that makes this community less fun for everyone.

And that’s basically it!

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] selokichtli@lemmy.ml 0 points 4 hours ago (1 children)
[–] Bazell@lemmy.zip 1 points 4 hours ago* (last edited 4 hours ago)

Basically, yes, but more nerfed. This ability is essential for many current AI chatbots and works on basic level of accessing specific needed info from storage. Easy example for a search bot will a chatbot that answers questions. Instead of giving LLM AI model access to all database(thousands of sentences), special algorithm(usually a semantic search) retrieves only a small relevant to the user input part of info(like only a dozen of sentences) and gives it to LLM model for further analyzing and formatting. This approach reduces the amount of tokens for which you pay, makes answers more correct and fast.

For a bot to be a true search bot such searching algorithm should be able to use internet and local storage together. And the interesting part is that you don't even need to have an LLM in this chain. You can only use RAG system to search for needed info in any text file. The only issue is that it will not be formatted and analyzed automatically.