By meaning — embeddings & semantic search.
How the search finds the right record even when not one word matches.
Page 1 promised the search finds records “by meaning”. Here is the trick. Every piece of text — each record's description, and your query alike — is turned into a position in a space of meaning. Related meanings sit close together; unrelated ones sit far apart. That position is called an embedding.
The position comes from meaning, not spelling. “Modal opener” and “dorian vamp” share no words, yet they land side by side, because they describe the same sound. “Blues shuffle” sits in another neighbourhood, and “studio chatter” further off still.
So searching turns into geometry. Drop your query into the same space and grab its nearest neighbours — the handful of closest points. No keyword matching, just whatever sits nearest in meaning.
The real space isn't two dimensions but hundreds or thousands — each embedding is a long list of numbers, produced by a dedicated embedding model. But the picture below holds exactly: near means similar, far means different.
Pick a query and watch it drop onto the meaning map. The nearest records light up — even the ones that share none of the same words — and you can hear how they sound.
Turn text into a point, then find the nearest.
Embedding is done once and stored. At query time you embed the query and take its closest neighbours — that is the whole of “search by meaning”.
Near in meaning, not in words.
An embedding is a position that captures what text means, so similar ideas sit close together no matter what words they use. Search then becomes geometry: turn the query into a point and take its nearest neighbours.
This is why RAG can find the right record even when your query and the record share not a single word — it is matching meaning, not spelling.