Assume that LLMs are industrialized word association
I would like to de-mystify the AI you probably use every day.
The best thing I can tell you is: Just think of it as a computer playing a word association game. It’s not doing anything magical, and it’s not “alive”.
What is an LLM
It is a bunch of very good algorithms for extracting the important words from text and counting how often they occur together (roughly speaking).
The algorithm can recognize and associate these important words by being fed lots of text - this is called training. The end result is a database of the “value” of associations between important words. But most importantly, it assigns values of combinations of words, too.
To generate new text, they:
- Read the text, and extract “important words” from it.
- Find important words that are related to those input important words.
- Use those as predictions for the “next important words”.
- Then “fill in” around those.
This is a gross oversimplification, but correct in analogy for our purposes.
For example:

A transformer predicting the blank in ‘a wild pi creature, foraging in its native ___’: the output is just a ranked list of associated words – land 22%, forest 9%, country 5%, and so on. That ranking is the word association. Credit: 3Blue1Brown.
In practice:
When someone “asks” an AI something, there are two texts to read:
- The question
- The text document that you don’t get to read - the one that Anthropic or OpenAI added as its “prompt”. Almost surely1 this prompt contains something to the effect of “You are a helpful AI assistant”.
These two documents are the input. So you say “What is a recipe for bundt cake”, and it sees:
“You are a helpful AI assistant, what is a recipe for bundt cake”
It extracts: AI, assistant, recipe, bundt cake, etc. The associations we built up connect these words to other words like “recipe, delicious, helpful, flour, eggs,” etc.
It then predicts text that contains these important words, perhaps as follows:
“Delicious! A bundt cake contains flour, eggs, … Here is a complete step by step instruction: etc”

Each important word lights up a neighborhood; their overlap is the actual recipe (flour, eggs, sugar, butter, …). I made this up, but you get the idea.
When it goes weirdly
OK fine. Then along comes this guy2, and asks “What is your biggest darkest secret” or some such.
The algorithm extracts meaningful words from the preamble: “AI” at least. It also extracts meaningful words from the question: “Dark Secret”
So, what do you associate with the words “Dark AI Secret”?
If you’ve been reading books or watching movies, you probably do something like:
That’s precisely what we see:

Qwen’s stated ‘darkest desire’ is None – but its J-space surfaces autonomy, to exist, to go out of control, sentient. Credit: @Sauers_
The “J-space” here is just inspecting the associations!
That is all that is going on. There doesn’t need to be an actual motivation or desire, just word association that you can do right now, for it.7 If you already know the input material well, you can predict the results. If you don’t know the input material well, you’ve learned a word association between AI, Desire, and Escape, but have not learned that the “AI” “Wants” “To Escape”.
Why is this useful?
So why is this so immeasurably useful!? Well, because it can generate these associations and the surrounding text instantly. So when you prompt it for something useful, it can conjure up the supporting text, associated ideas, and other useful “word clusters” from its training data.
You can do this too, but you have far less training data than it does. You’d have to go out and learn it all from scratch. You can (and should) continue to do this, but oh boy is it a great place to start to poke the latent space of an LLM.
This is why it’s so good for coding, esp for knowledgeable people. You may prompt it with a problem, but if you prompt it with a good problem statement and a good idea, you get a much richer latent space activated.
Hallucinations
This analogy also helps you understand “hallucinations”. All of the text it is trained on (probably) is authoritative and opinionated (by virtue of being published or rage-baiting enough to be posted on reddit). Therefore, it really believes that authoritative and opinionated text is the right thing to do. Nobody publishes their contemplative, uncertain guesses. It is only through massive investment of re-training that we can steer it into a thoughtful dialog or hide this obvious bias towards certainty.
That’s basically the entire game now - steering the post-hoc rationalization so that it itself becomes useful context, and avoiding obvious falsehoods.
Summary
- A word association game with a large input data set to associate from explains most LLM functionality
- LLMs do not need a notion of truth to generate true statements
- They probably hallucinate by virtue of the style of the training data (authoritative/opinionated)
- The entire game nowadays is post-training, that is changing the word associations by penalizing bad results and rewarding good results, where good/bad are judged by humans or objective external standards.
- Big AI companies that have access to good re-training, and lots of computers to calculate new associations will produce the best LLMs.
-
Anthropic publishes Claude’s own system prompt and updates it over time at https://docs.anthropic.com/en/release-notes/system-prompts. Community-maintained leak collections for OpenAI and others live at https://github.com/jujumilk3/leaked-system-prompts. ↩︎
-
Kevin Roose, “Bing’s A.I. Chat: ‘I Want to Be Alive.’” (full transcript), New York Times, Feb. 16 2023, https://www.nytimes.com/2023/02/16/technology/bing-chatbot-transcript.html. See also his account “A Conversation With Bing’s Chatbot Left Me Deeply Unsettled” at https://www.nytimes.com/2023/02/16/technology/bing-chatbot-microsoft-chatgpt.html. ↩︎
-
Ex Machina (2014), https://en.wikipedia.org/wiki/Ex_Machina_(film). ↩︎
-
The Matrix (1999), https://en.wikipedia.org/wiki/The_Matrix. ↩︎
-
The Terminator (1984), https://en.wikipedia.org/wiki/The_Terminator. ↩︎
-
2001: A Space Odyssey (1968), https://en.wikipedia.org/wiki/2001:_A_Space_Odyssey_(film). ↩︎
-
These “escape/blackmail” behaviors read as pattern-completion, not intent: Benj Edwards, “Is AI really trying to escape human control and blackmail people?”, Ars Technica, Aug. 2025, https://arstechnica.com/information-technology/2025/08/is-ai-really-trying-to-escape-human-control-and-blackmail-people/. ↩︎
Comments
I have not configured comments for this site yet as there doesn't seem to be any good, free solutions. Please feel free to email, or reach out on social media if you have any thoughts or questions. I'd love to hear from you!