Not for me, thanks.
Have you thought about this topic:
Make sure you ask what you mean
Disclaimer: This post is the result of a collaboration with Claude. It is a distillation of my own opinions, in my own words. It took 11 prompt iterations to get here — which rather proves the point.
---
Why does an LLM always give you the same number when you ask for one between 1 and 100?
It's not a bug. It's a semantics problem.
Here's what's actually happening:

User: "Give me a number between 1 and 100"

User expectation: a random number

LLM logic (paraphrased): "Aha, I've seen this question many times. It's probably best to be consistent in my answers. Let me check what I said last time. The answer is 73."
The LLM isn't malfunctioning. It's answering the question you asked, not the one you meant. "Give me a number" reads as a request for a preference — and LLMs are rewarded for consistency.
This unlocks something important about working with AI:

Precision is iterative — you can refine tone, format, and content as you go

Semantics needs a moment's thought upfront — are you asking for an opinion, a fact, or generation?

Ideally, LLMs need to improve their semantic parsing — the burden shouldn't be on the user at all
In the meantime, "good enough" is an underrated standard. A sufficiently unpredictable number serves almost every real use case. Perfect randomness is a mathematical concept; what most people actually want is an unbiased result.
The same applies to "what's your favourite colour?" vs "pick a random colour." Same surface structure, completely different intent.
And the 42 answer? That's Douglas Adams' fault. "42" is so over-represented in training data as the archetypal answer to a numerical question that it has become the least random number an LLM can produce. The joke has eaten itself.
The ideal fix isn't to burden users with prompt engineering theory. It's for the LLM to silently recognise the ambiguity and resolve it — returning an unbiased result without explaining why it can't be truly random.
Semantic analysis of a prompt should be the LLM's job, not the user's.
#AI #PromptEngineering #LLM #ArtificialIntelligence #UX