logoalt Hacker News

alin23yesterday at 8:29 PM3 repliesview on HN

My main gripe with LLMs is the cringe AI phrasings that they use in UI elements. Pompous things like "Your keys, supercharged" or weird yoda-speak stuff like "searches the app remembers" instead of just naming the thing "Learned searches".. you know, proper GUI copy like it was done for the past decades.

I jumped when I saw a mention about "writing style improvements" so I gave it a try on a recent feature in rcmd [0]. I prompted Fable 5.1 to find these wordings and propose simpler plain language.

    For context, I recently worked with Fable to give users a way to fuzzy search and focus any browser tabs, terminal panes etc. but the UI was still a prototype full of AI writings.
It took every string including the ones I already rewrote by hand, and proposed even more weird LLM speak. Like for "Left Command conflict detected" it proposed "This keyboard can't tell left from right".

It's a very capable coding agent, but I can't understand how it can be so bad at writing. Where are all these verbal tics coming from and why is it so hard to get rid of them?

[0] https://lowtechguys.com/rcmd


Replies

cainxinthyesterday at 9:08 PM

> Pompous things like "Your keys, supercharged" or weird yoda-speak stuff like "searches the app remembers"...

It's copywriting. They fed these models the internet, which is loaded with it.

show 1 reply
northzentoday at 5:10 AM

It's watermarking.

This style provides a high entropy basis distribution, so they can from a bigger pool to pick from and phrases to watermark the sentence.

You have much bigger variation of this idiotic phrases and words, which states a simple fact in that sophisticated and twisted manner.

jiggawattsyesterday at 9:11 PM

> Where are all these verbal tics coming from and why is it so hard to get rid of them?

It’s a side effect of post-training for effectiveness and efficiency at technical tasks.

Over time the models learn to pack as much information as possible into their available context window, because that’s one way to increase the effective intelligence.

Humans do this too with industry jargon, dense tech-talk, etc.

We have a limited capacity so packing it densely maximises what we can do with it.

If you’ve ever heard a “non technical” manager complain about the terminology in an IT meeting — this is why.

show 2 replies