this post was submitted on 24 May 2026
805 points (98.8% liked)

Fuck AI

7157 readers
1195 users here now

"We did it, Patrick! We made a technological breakthrough!"

A place for all those who loathe AI to discuss things, post articles, and ridicule the AI hype. Proud supporter of working people. And proud booer of SXSW 2024.

AI, in this case, refers to LLMs, GPT technology, and anything listed as "AI" meant to increase market valuations.

founded 2 years ago
MODERATORS
 

Source (Bluesky)

TranscriptHere’s an example that Google’s Josh Woodward, VP of the Gemini app, Google Labs, and AI Studio, shared in a blog post about how Personal Intelligence can work. Google also put together a similar example in a video that I’ve embedded below:

For example, we needed new tires for our 2019 Honda minivan two weeks ago. Standing in line at the shop, I realized I didn’t know the tire size. I asked Gemini. These days any chatbot can find these tire specs, but Gemini went further. It suggested different options: one for daily driving and another for all-weather conditions, referencing our family road trips to Oklahoma found in Google Photos. It then neatly pulled ratings and prices for each. As I got to the counter, I needed our license plate. Instead of searching for it or losing my spot in line to walk back to the parking lot, I asked Gemini. It pulled the seven-digit number from a picture in Photos and also helped me identify the van’s specific trim by searching Gmail. Just like that, we were set.

you are viewing a single comment's thread
view the rest of the comments
[–] Buddahriffic@lemmy.world 3 points 1 day ago (1 children)

I'm a professional that works with software dev and I can say that LLMs and all the agent stuff keeps flipping between "surprised at what it can do" and "oh another big sign that it's just a really fancy text predictor".

At best, it has reduced the number of times I reach out to colleagues for a problem I solve myself in the process of explaining it and has helped me find obscure settings to fix obscure issues. For coding, I'm still not sure whether or not it saves time. It can write things quickly but it embeds all kinds of assumptions in there and might not even follow instructions.

Like it's safer to think of it as a conversation partner who can pretend to be many different people, including experts in the topics you discuss, but also has ADHD so severe it can switch what it is pretending to be mid-sentence. Even when you ask it to explain what happened after the fact, it just makes up more bullshit because it doesn't have thoughts or awareness, it just predicts tokens.

[–] zarkanian@sh.itjust.works 2 points 1 day ago (1 children)

I ask a question, they give me the wrong answer. I tell them they gave me the wrong answer. They apologize, and then repeat the same mistake in the next answer. Or they give me a different wrong answer. I eventually give up and solve it with a web search.

I don't know if my questions are about really obscure stuff or what, but it's really annoying. Like, I know that they're only predicting tokens, but how hard is it to program them to go "Okay, we've already established that this pattern of tokens is wrong, so I'm not going to include it in the next answer".

[–] Buddahriffic@lemmy.world 1 points 21 hours ago

They have no sense of "truth", it's a complex graph and weights that predict the most likely next token. You can change the output by doing training or adjusting the context by changing the prompt (also temperature that affects the randomness).

The training data affects what it will predict, but if the training data includes a debate, then both sides get encoded into the weights and the context is what determines what "side" of the debate your response gets. It can't determine the truth; the truth doesn't even factor in to what its output is (even if it "talks" about the truth in that output).