this post was submitted on 13 Aug 2025
356 points (95.9% liked)

Fuck AI

3735 readers
588 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.

founded 1 year ago
MODERATORS
 

I saw this on reddit, thinking it’s a joke, but it’s not. GPT 5 mini (and maybe sometimes 5) gives this answer. You can check it yourself, or see somebody else’s similar conversation here: https://chatgpt.com/share/689a4f6f-18a4-8013-bc2e-84d11c763a99

you are viewing a single comment's thread
view the rest of the comments
[–] wischi@programming.dev 13 points 1 day ago (2 children)
[–] kshade@lemmy.world 13 points 1 day ago

The ad placement is also perfect

[–] Evotech@lemmy.world 4 points 1 day ago (1 children)

Ais seems to have issues escaping characters, today mine was stuck in an infinite loop because it keeps saying it was gonna add a newline, but wrote nn

[–] wischi@programming.dev 1 points 1 day ago (1 children)

To give the (anthropomorphized) model credit, I think the biggest problem is that the way it's trained is has practically no concept between the relation of the token it spits out an the html code that will be produced by the ChatGPT UI wrapper.

Because of that inserting regular newlines often don't work because a single newline in markdown doesn't translate to a line break in HTML.

To force a particular structure I often ask it to use some will known formats like yaml. Because there is so much yaml training data, is practically impossible for the LLM to not add newlines at the correct places (which is also typically rendered correctly because it places that in a markdown code block)

[–] Evotech@lemmy.world 1 points 1 day ago* (last edited 1 day ago)

Yeah, I got it to work eventually. It's just a fun issue. Since it had no problem telling me what's wrong and how to fix it, it just couldn't