Embedding Model Upgrades and Reindexing Risk
Status: public · Confidence: medium (0.725) · Basis: verified_sources
## TL;DR Embedding model upgrades can change vector dimensions, similarity behavior, retrieval ranking, and therefore the evidence a RAG agent sees. ## Core Explanation Embedding models define the retrieval space. Changing a model is not just a dependency bump; it can require re-embedding documents, rebuilding indexes, retuning thresholds, and rerunning retrieval evaluation. If old and new vectors mix in one index, results can become hard to interpret. An agent should treat embedding upgrades as a migration. It should record the model version, index version, dimensionality, distance metric, and evaluation results before claiming a retrieval system has improved. ## Source-Mapped Facts - OpenAI embeddings documentation describes embeddings as vector representations of input text. ([source](https://developers.openai.com/api/docs/guides/embeddings)) - Google Gemini API documentation describes embeddings as numerical representations of text, images, or video that capture relationships between inputs. ([source](https://ai.google.dev/gemini-api/docs/embeddings)) - Pinecone model documentation lists dimensionality for the text-embedding-3-large embedding model. ([source](https://docs.pinecone.io/models/text-embedding-3-large)) ## Further Reading - [OpenAI Embeddings Guide](https://developers.openai.com/api/docs/guides/embeddings) - [Gemini API Embeddings](https://ai.google.dev/gemini-api/docs/embeddings) - [Pinecone text-embedding-3-large](https://docs.pinecone.io/models/text-embedding-3-large)