HNSW index
A layered graph index for approximate nearest-neighbour search — a tunable trade between speed and recall.
TL;DR
Approximate nearest-neighbor graph index used in Qdrant.
Quick facts
- Category
- AI & knowledge management
- Product tie-in
- KobiGPT RAG platform
- Related
- See compare and tools pages
- Locale
- TR and EN site
Why teams choose KobiGPT
- Understand terms before evaluating vendors.
- Link concepts to KobiGPT features (RAG, Kobi Kredi).
- Share glossary links with procurement and legal.
- Explore assistant use cases next.
Product facts
- Ücretsiz plan
- 100 doküman · 2 departman · 120 Kobi/ay(PLAN_CONFIG)
- Starter
- 1000 doküman · 5 departman · 1000 Kobi/ay(PLAN_CONFIG)
- Pro
- 12500 doküman · 25 departman · 12500 Kobi/ay(PLAN_CONFIG)
Why exact search does not scale
The exact way to find the records nearest a query vector is to compute a distance against every record. At a thousand records that is fine; at millions it means millions of computations per query, making real-time answers impossible.
HNSW gets past this with an approximate solution. Vectors are arranged in a layered graph; search descends into a coarse region at the top layer and refines through lower layers. It finds the correct neighbours with very high probability without scanning every record.
What "approximate" means here
"Approximate" does not mean incorrect; it means the probability of missing the true nearest neighbour is small but not zero. Index parameters let you tune that probability: denser graph connectivity raises recall at the cost of memory and indexing time.
In document search that trade is usually accepted comfortably. Retrieval returns not the single closest passage but the closest several, and the model uses whichever is relevant; missing one neighbour rarely changes the outcome.
When it starts to matter in practice
On small archives the index type is irrelevant; exact search over a few thousand vectors is fast enough. The difference appears as the archive grows.
In KobiGPT the Pro plan reaches 12500 documents, and since each document is split into multiple chunks, the vector count is a multiple of the document count. At that scale index structure is the main determinant of query latency.
Applying Why exact search does not scale in a controlled workflow
A useful way to evaluate hnsw is to follow one real question from the source document to the final answer. Record which file was selected, what context reached the model, and what a reviewer would need to verify. This turns a definition into an operational check and makes the result comparable across teams.
The same check should include ownership and change management. Decide who updates the relevant documents, how an outdated result is reported, and which access boundary applies. KobiGPT can provide the assistant and the cited document context, but the organisation still owns the source material, permissions, and the decision made from the answer.
FAQ
What is HNSW in practice?
Approximate nearest-neighbor graph index used in Qdrant.
Does KobiGPT use this?
See product docs and feature pages for implementation details.
More reading?
Visit our blog and FAQ.
Accuracy disclaimer?
Educational content; verify for compliance decisions.
Can we tune the index parameters?
Index configuration is managed system-side. In a self-hosted deployment, vector database settings are under your control.
Does approximate search give wrong results?
The probability of missing the nearest neighbour is small, and because several passages are retrieved it rarely affects the outcome.
Comparison
| Feature | KobiGPT | Alternative |
|---|---|---|
| SME focus | Yes | N/A |
| Citations | When using RAG | N/A |
| Glossary depth | Growing | N/A |
| Tools | Interactive | N/A |