RETROSPECTIVE RECORD · PREPARED 16 SEPTEMBER 2026The record · 100 retrospective records ↗

The record / Practice

Practice / From the record · 15 December 2022 event · prepared 16 September 2026

A cheaper embedding model made vector search a default tool

OpenAI's ada-002 announcement and the FAISS paper show what an embedding index measures, and why a close vector is not the same as a relevant one.

Visual for this record: A cheaper embedding model made vector search a default tool
Visual published by swopnilacharya.com.np, shown for identification of the record. Credit: swopnilacharya.com.np · source page ↗ Rights: owner-review-pending.

A cheaper, unified embedding model

On 15 December 2022, OpenAI announced text-embedding-ada-002, replacing five separate first-generation embedding models with one. The announcement claimed the new model outperforms the old embedding models on text search, code search and sentence similarity tasks, citing results on the BEIR retrieval benchmarks and the SentEval classification suite, while matching prior performance on text classification. It also cut the published price by 90% compared with earlier models of the same size and by 99.8% compared with the older Davinci embedding, quadrupled the usable context to 8,192 tokens, and shrank the output vector to 1,536 dimensions. These are vendor-reported benchmark results under OpenAI's stated conditions, not an independent measurement, and a benchmark average does not describe performance on any particular collection of documents.

What an index does with the vectors

An embedding on its own is a list of numbers; retrieval requires comparing a query vector against many stored vectors and returning the closest ones. At web scale that comparison cannot be brute force, which is the problem Johnson, Douze and Jégou's FAISS paper addresses: it describes GPU designs for exact search, approximate search, and compressed-domain search using product quantization, reporting a k-nearest-neighbour graph built over 95 million images in 35 minutes and 1 billion vectors indexed in under 12 hours on four GPUs. The open-source FAISS library that resulted from this work states plainly that its compressed-vector methods trade search quality for memory: storing billions of vectors in a modest RAM budget means accepting a less precise search than an exhaustive comparison would give.

What similarity does not guarantee

Closest in embedding space is a geometric statement about the training objective that produced the vectors, not a guarantee that a retrieved passage is relevant, current or correct. Two passages can sit close together because they share vocabulary or topic while disagreeing on the fact a query actually needs, and a retrieval system built on cosine distance alone has no separate mechanism for checking that. Cost and index parameters compound this: a smaller, faster index sacrifices recall, and a benchmark score measured on BEIR's fixed tasks does not transfer automatically to a differently structured internal document set. Treating a retrieved neighbour as evidence rather than as an answer is what the rest of a retrieval pipeline exists to do.

Questions to carry into your own evaluation

  • Was the embedding model's reported benchmark built from tasks that resemble your documents and queries?
  • What recall is being traded away by the index's speed or memory settings?
  • Does anything downstream check a retrieved passage's relevance before it reaches the model as context?

Cheap embeddings and fast approximate search made retrieval a default component of a system rather than a research luxury. They did not make the returned neighbours true.

Sources & reading trail

New and improved embedding model ↗

Announces text-embedding-ada-002, its BEIR/SentEval benchmark claims, the price cut, and the context-length increase to 8,192 tokens.

Source published: 15 December 2022 · Retrieved: 16 September 2026

Billion-scale similarity search with GPUs ↗

Describes the FAISS approach to approximate nearest-neighbour search, its k-selection design and reported indexing throughput.

Source published: 28 February 2017 · Retrieved: 16 September 2026

facebookresearch/faiss ↗

States what similarity search measures (distance or dot product) and the precision-versus-memory trade-off of a compressed index, as retrieved 16 September 2026.

Source published: Not established · Retrieved: 16 September 2026

Papers and official documents establish the record; the reading and the questions are Model Field Guide editorial analysis. This retrospective draft does not imply the site published on the event date.