diff --git a/docs/docs/understanding/indexing/indexing.md b/docs/docs/understanding/indexing/indexing.md index 004e26611be00fc9762981adeedd2bae98f9a705..51f0f4a04dd4bfc6d27fde119a31f5dd134b57b2 100644 --- a/docs/docs/understanding/indexing/indexing.md +++ b/docs/docs/understanding/indexing/indexing.md @@ -12,8 +12,6 @@ LlamaIndex offers several different index types. We'll cover the two most common A `VectorStoreIndex` is by far the most frequent type of Index you'll encounter. The Vector Store Index takes your Documents and splits them up into Nodes. It then creates `vector embeddings` of the text of every node, ready to be queried by an LLM. -(what-is-an-embedding)= - ### What is an embedding? `Vector embeddings` are central to how LLM applications function.