Glossary — Agentic AI
What is Embedding?
An embedding is a dense vector representation of data in a continuous mathematical space, where semantic similarity is captured by vector proximity — fundamental to search, RAG, and AI reasoning.
WHY IT MATTERS
Embeddings are how AI systems understand meaning numerically. When you embed the word 'wallet,' you get a vector of hundreds of floating-point numbers. Similar concepts have vectors that are close together in this space.
This enables semantic search: instead of keyword matching, you find content by meaning. Embeddings underpin RAG systems, recommendation engines, classification, and clustering.
In the agent stack, they're used to retrieve relevant context, match user intent to tools, and classify transaction types.