AI & LLMs
Embedding
An embedding is a list of numbers (a vector) that represents the meaning of a piece of text, image, or code so that similar things sit close together.
An embedding turns content - a sentence, a document, an image - into a fixed-length vector of numbers. The model that produces it is trained so that items with similar meaning land near each other in that vector space.
Once content is embedded, "find similar" becomes a math operation (measuring distance between vectors) instead of exact keyword matching. Embeddings are the backbone of vector search, semantic search, and RAG.
In GraphCanon
GraphCanon stores an embedding for each tool so it can measure how semantically close two tools are - useful for suggesting neighbours and detecting miscategorization.
See also
Related terms
Last reviewed 2026-07-09