Need to let loose a primal scream without collecting footnotes first? Have a sneer percolating in your system but not enough time/energy to make a whole post about it? Go forth and be mid: Welcome to the Stubsack, your first port of call for learning fresh Awful you’ll near-instantly regret.

Any awful.systems sub may be subsneered in this subthread, techtakes or no.

If your sneer seems higher quality than you thought, feel free to cut’n’paste it into its own post — there’s no quota for posting and the bar really isn’t that high.

The post Xitter web has spawned soo many “esoteric” right wing freaks, but there’s no appropriate sneer-space for them. I’m talking redscare-ish, reality challenged “culture critics” who write about everything but understand nothing. I’m talking about reply-guys who make the same 6 tweets about the same 3 subjects. They’re inescapable at this point, yet I don’t see them mocked (as much as they should be)

Like, there was one dude a while back who insisted that women couldn’t be surgeons because they didn’t believe in the moon or in stars? I think each and every one of these guys is uniquely fucked up and if I can’t escape them, I would love to sneer at them.

  • @Architeuthis
    link
    English
    9
    edit-2
    2 months ago

    Current flavor AI is certainly getting demystified a lot among enterprise people. Let’s dip our toes into using an LLM to make our hoard of internal documents more accessible, it’s supposed to actually be good at that, right? is slowly giving way to “What do you mean RAG is basically LLM flavored elasticsearch only more annoying and less documented? And why is all the tooling so bad?”

    • Mii
      link
      English
      11
      edit-2
      2 months ago

      “What do you mean RAG is basically LLM flavored elasticsearch only more annoying and less documented? And why is all the tooling so bad?”

      Our BI team is trying to implement some RAG via Microsoft Fabrics and Azure AI search because we need that for whatever reason, and they’ve burned through almost 10k for the first half of the running month already, either because it’s just super expensive or because it’s so terribly documented that they can’t get it to work and have to try again and again. Normal costs are somewhere around 2k for the whole month for traffic + servers + database and I haven’t got the foggiest what’s even going on there.

      But someone from the C suite apparently wrote them a blank check because it’s AI …

    • @o7___o7
      link
      English
      10
      edit-2
      2 months ago

      Confucius, the Buddha, and Lao Tzu gather around a newly-opened barrel of vinegar.

      Confucius tastes the vinegar and perceives bitterness.

      The Buddha tastes the vinegar and perceives sourness.

      Lao Tzu tastes the vinegar and perceives sweetness, and he says, “Fellas, I don’t know what this is but it sure as fuck isn’t vinegar. How much did you pay for it?”

    • @V0ldek
      link
      English
      102 months ago

      RAG

      The fuck’s a rag in an AI context

      • @corbin
        link
        English
        112 months ago
        NSFW (including funny example, don't worry)

        RAG is “Retrieval-Augmented Generation”. It’s a prompt-engineering technique where we run the prompt through a database query before giving it to the model as context. The results of the query are also included in the context.

        In a certain simple and obvious sense, RAG has been part of search for a very long time, and the current innovation is merely using it alongside a hard prompt to a model.

        My favorite example of RAG is Generative Agents. The idea is that the RAG query is sent to a database containing personalities, appointments, tasks, hopes, desires, etc. Concretely, here’s a synthetic trace of a RAG chat with Batman, who I like using as a test character because he is relatively two-dimensional. We ask a question, our RAG harness adds three relevant lines from a personality database, and the model generates a response.

        > Batman, what's your favorite time of day?
        Batman thinks to themself: I am vengeance. I am the night.
        Batman thinks to themself: I strike from the shadows.
        Batman thinks to themself: I don't play favorites. I don't have preferences.
        Batman says: I like the night. The twilight. The shadows getting longer.
        
      • @pyrex
        link
        English
        82 months ago

        It’s the technique of running a primary search against some other system, then feeding an LLM the top ~25 or so documents and asking it for the specific answer.

        • @V0ldek
          link
          English
          72 months ago

          So you run a normal query but then run the results through an enshittifier to make sure nothing useful is actually returned to the user.

      • @selfA
        link
        English
        52 months ago

        so, uh, you remember AskJeeves?

        (alternative answer: the third buzzword in a row that’s supposed to make LLMs good, after multimodal and multiagent systems absolutely failed to do anything of note)

    • @rook
      link
      English
      82 months ago

      What do you mean RAG is basically LLM flavored elasticsearch

      I always saw it more as LMGTFYaaS.

    • @imadabouzu
      link
      English
      32 months ago

      Maybe hot take, but I actually feel like the world doesn’t need strictly speaking more documentation tooling at all, LLM / RAG or otherwise.

      Companies probably actually need to curate down their documents so that simpler thinks work, then it doesn’t cost ever increasing infrastructure to overcome the problems that previous investment actually literally caused.

      • @Architeuthis
        link
        English
        62 months ago

        Companies probably actually need to curate down their documents so that simpler thinks work, then it doesn’t cost ever increasing infrastructure to overcome the problems that previous investment actually literally caused

        Definitely, but the current narrative is that you don’t need to do any of that, as long as you add three spoonfulls of AI into the mix you’ll be as good as.

        Then you find out what you actually signed up for is to do all the manual preparation of building an on-premise search engine to query unstructured data, and you still might end up with a tool that’s only slightly better than trying to grep a bunch of pdfs at the same time.