Vector database
A database type that stores embedding vectors and finds nearest neighbours among millions of records in milliseconds.
TL;DR
Stores embeddings for fast nearest-neighbor retrieval (e.g. 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 a separate database is needed
Relational databases are designed for equality and range queries, not for "the five records nearest this vector". Running that query on a SQL table means computing a distance against every row, which stops being practical as record counts grow.
Vector databases specialise in exactly this query type. Using approximate nearest-neighbour indexes they return results far faster without scanning every record, at an acceptable loss in precision. KobiGPT uses Qdrant for this layer.
The hybrid data model
In KobiGPT the vector database does not work alone. Relational data — users, companies, document metadata, authorisation — lives in PostgreSQL; Qdrant holds only vectors and the minimum metadata search requires.
That split is deliberate. Authorisation decisions are made on the relational side and search results are filtered accordingly; a vector database is not an access control system. Mixing the two layers weakens isolation guarantees.
Multi-tenant isolation
A separate collection is created per company. Isolation is therefore enforced at the collection level rather than through a query filter; one company's vectors are never present in another company's search space.
That is a stronger guarantee than filter-based isolation: a filter can be forgotten, a collection boundary cannot. In multi-tenant systems this design choice structurally lowers the risk of data leakage.
Applying Why a separate database is needed in a controlled workflow
A useful way to evaluate vector-database 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 Vector in practice?
Stores embeddings for fast nearest-neighbor retrieval (e.g. 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.
Which vector database is used?
Qdrant. A separate collection is created per company and isolation is enforced at collection level.
Why is PostgreSQL still needed?
Users, companies, document metadata, and authorisation live on the relational side; Qdrant is only the vector layer.
Comparison
| Feature | KobiGPT | Alternative |
|---|---|---|
| SME focus | Yes | N/A |
| Citations | When using RAG | N/A |
| Glossary depth | Growing | N/A |
| Tools | Interactive | N/A |