LintDB is a multi-vector database meant for Gen AI. LintDB natively supports late interaction like ColBERT and PLAID.
LintDB relies on OpenBLAS for accerlated matrix multiplication. To smooth the process of installation, we only support conda.
conda install lintdb -c deployql -c conda-forge
LintDB makes it easy to upload data, even if you have multiple tenants.
Below shows creating a database. LintDB defines a schema for a given database that can be used to index embeddings, floats, strings, even dates. Fields can be indexed, stored, or used as a filter.
from lintdb.core import (
Schema,
ColbertField,
QuantizerType,
Configuration,
IndexIVF
)
schema = Schema(
[
ColbertField('colbert', DataType.TENSOR, {
'dimensions': 128,
'quantization': QuantizerType.BINARIZER,
"num_centroids": 32768,
"num_iterations": 10,
})
]
)
config = Configuration()
index = IndexIVF(index_path, schema, config)
)
And querying the database. We can query any of the data fields we indexed.
from lintdb.core import (
Query,
VectorQueryNode
)
for id, query in zip(data.qids, data.queries):
embedding = checkpoint.queryFromText(query)
e = np.squeeze(embedding.cpu().numpy().astype('float32'))
query = Query(
VectorQueryNode(
TensorFieldValue('colbert', e)
)
)
results = index.search(0, query, 10)
print(results)
LintDB aims to support late interaction and more advanced retrieval models.
LintDB aims to be a retrieval platform for Gen AI. We believe that to do this, we must support flexible retrieval and scoring methods while maintaining a high level of performance.
LintDB is one of two databases that support token level embeddings. The other being Vespa.
Vespa is a robust, mature search engine with many features. However, the learning curve to get started and operate Vespa is high.
With embedded LintDB, there's no setup required. conda install lintdb -c deployql
and get started.
Chroma is an embedded vector database available in Python and Javascript. LintDB currently only supports Python.
However, unlike Chroma, LintDB offers multi-tenancy support.
For detailed documentation on using LintDB, refer to the official documentation
LintDB is licensed under the Apache 2.0 License. See the LICENSE file for details.
We need your help! If you'd want a managed LintDB, reach out and let us know.
Book time on the founder's calendar: https://calendar.app.google/fsymSzTVT8sip9XX6