Stupid Vector Store (SVS): a vector database for the rest of us
Project description
Stupid Vector Store (SVS)
-
🤔 What is SVS?
- Semantic search via deep-learning vector embeddings.
- A stupid-simple library for storing and retrieving your documents.
-
💩 Why is it stupid?
-
🧠 Is it possibly... smart in any way though?
- Maybe.
- It will squeeze the most juice from your machine: 🍊
- Optimized SQL
- Cache-friendly memory access
- Fast in the places that matter 🚀
- All with a simple Python interface
- Supports storing arbitrary metadata with each document. 🗃️
- Supports storing and querying (optional) parent-child relationships between documents. 👪
- Fully hierarchical - parents can have parents, children can have children, whatever you need...
- Supports storing an (optional) graph structure over your documents.
- So you can do GraphRAG!
- Batteries not included:
- This library only handles graph storage.
- You have to implement your own graph algorithms.
- Supports generic key/value storage, for those random things you don't know where else to put. 🤷
- Both sync and asyncio implementations:
- use the synchronous impl (
svs.KB
) for scripts, notebooks, etc - use the asyncio impl (
svs.AsyncKB
) for web-services, etc
- use the synchronous impl (
- 100% Python type hints!
Overview
SVS is stupid yet can handle a million documents on commodity hardware, so it's probably perfect for you.
Should you use SVS? SVS is designed for the use-case where:
- you have less than a million documents, and
- you don't add/remove documents very often.
If that's you, then SVS will probably be the simples (and stupidest) way to manage your document vectors!
Table of Contents
Installation
pip install -U svs
Used By
SVS is used in production by:
Quickstart
Here is the most simple use-case; it just queries a pre-built knowledge base! This particular example queries a knowledge base of "Dad Jokes" 🤩.
(taken from ./examples/quickstart.py)
import svs # <-- pip install -U svs
import os
from dotenv import load_dotenv; load_dotenv()
assert os.environ.get('OPENAI_API_KEY'), "You must set your OPENAI_API_KEY environment variable!"
#
# The database remembers which embeddings provider (e.g. OpenAI) was used.
#
# The "Dad Jokes" database below uses OpenAI embeddings, so that's why you had
# to set your OPENAI_API_KEY above!
#
# NOTE: The first time you run this script it will download this database,
# so expect that to take a few seconds...
#
DB_URL = 'https://github.com/Rhobota/svs/raw/main/examples/dad_jokes/dad_jokes.sqlite.gz'
def demo() -> None:
kb = svs.KB(DB_URL)
records = kb.retrieve('chicken', n = 10)
for record in records:
score = record['score']
text = record['doc']['text']
print(f" 😆 score={score:.4f}: {text}\n")
kb.close()
if __name__ == '__main__':
demo()
⚠️ Want to see how that Dad Jokes knowledge base was created? See: ./examples/dad_jokes/Build Dad Jokes KB.ipynb
Speed & Benchmarks
SQLite and NumPy are fast, thus SVS is fast 🏎️. Our goal is to minimize the amount of work done at the Python-layer.
Also, your bottleneck will certainly be the remote API calls to get document embeddings (e.g. calling out to OpenAI's API to get embeddings will be the slowest thing), so it's likely not critical to further optimize the Python-layer bits.
The following benchmarks were performed on 2018-era commodity hardware (Intel i3-8100):
Number of Documents | Load into SQLite | Get Embeddings for All Documents (remote API call) | Cosine Similarity + Sort + Retrieve Top-100 Documents [^3] |
---|---|---|---|
10,548 jokes [^1] | 0.07 seconds | 80 seconds | 0.5 seconds (first query) + 0.011 seconds (subsequent queries) |
1,000,000 synthetic documents [^2] | 8 seconds | 2 hours [^4] | 2 minutes (first query) + 0.24 seconds (subsequent queries) |
[^1]: This benchmark is from the Dad Jokes KB from this notebook.
[^2]: This benchmark is over one million synthetic documents, where those documents have an average length of 1,200 characters. Specifically, this notebook.
[^3]: This time does not include the time it takes to obtain the query string's embedding from the external service (i.e. from OpenAI's API); rather, it captures the time it takes to (1) compute the cosine similarity of the query string with all the documents' vectors (where embedding dimensionality is 1,536), then (2) sort the results, and then (3) retrieve the top-100 documents from the database. Note: The first query is slow because it must load the vectors from disk into RAM, while subsequent queries are fast since those vectors stay cached in RAM.
[^4]: This is an estimate based on the observed typical response times from OpenAI's embeddings API. For this test, we generate synthetic embeddings with dimensionality 1,536 to simulate the correct datasize and computation requirements as if we used "real" embeddings.
Debug Logging
This library logs using Python's builtin logging
module. It logs mostly to INFO
, so here's a snippet of code you can put in your app to see those traces:
import logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
)
# ... now use SVS as you normally would, but you'll see extra log traces!
License
svs
is distributed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file svs-0.6.0.tar.gz
.
File metadata
- Download URL: svs-0.6.0.tar.gz
- Upload date:
- Size: 24.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1bab5171989fec944f96b495c457fafb4c2a94a98d1899b21f10b529504863e |
|
MD5 | 0330c134f28d7551fe0a9a5c046f561e |
|
BLAKE2b-256 | ee8cfc3c69fdb077d960eca522d0fdc7fe0f0fe1475ab6cd2b544a43a80680c3 |
File details
Details for the file svs-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: svs-0.6.0-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 144cfcb0e47c5255d10537c00330237eb669f65deeed84c4b6890d650a3dab14 |
|
MD5 | d1e6a72cceb84f9b3163a6699e7ded16 |
|
BLAKE2b-256 | 26d834a2e64da6f766be0aa5a342dbb5d8cf29008c7db656c1d9a362bb3f80d3 |