No project description provided
Project description
affine
Affine is a Python library for providing a uniform and structured interface to various backing vector databases and approximate nearest neighbor libraries. It allows simple dataclass-like objects to describe collections together with a high-level query syntax for doing filtered vector search.
For vector databases, it currently supports:
- qdrant
- weaviate
- pinecone
For local mode, the following approximate nearest neighbor libraries are supported:
- FAISS
- annoy
- pynndescent
- scikit-learn KDTree
- naive/NumPy
Note: this project is very similar to vectordb-orm, which looks to be no longer maintained.
Installation
pip install affine
# or `pip install affine[qdrant]` for qdrant support
# `pip install affine[weaviate]` for weaviate support
# `pip install affine[pinecone]` for pinecone support
Basic Usage
from affine import Collection, Vector, Filter, Query
# Define a collection
class MyCollection(Collection):
vec: Vector[3] # declare a 3-dimensional vector
# support for additional fields for filtering
a: int
b: str
db = LocalEngine()
# Insert vectors
db.insert(MyCollection(vec=[0.1, 0.0, -0.5], a=1, b="foo"))
db.insert(MyCollection(vec=[1.3, 2.1, 3.6], a=2, b="bar"))
db.insert(MyCollection(vec=[-0.1, 0.2, 0.3], a=3, b="foo"))
# Query vectors
result: list[MyCollection] = (
db.query(MyCollection)
.filter(MyCollection.b == "foo")
.similarity([2.8, 1.8, -4.5])
.limit(1)
)
Engines
A fundamental notion of affine are Engine
classes. All such classes conform to the same API for interchangeabillity (with the exception of a few engine-specific restrictions which are be mentioned below). There are two broad types of engines
-
LocalEngine
: this does nearest neighbor search on the executing machine, and supports a variety of libraries for the backing nearest neighborsearch (these are called the backend of the local engine). -
Vector database engines: these are engines that connect to a vector database service, such as QDrant, Weaviate, or Pinecone.
Vector Databases
The currently supported vector databases are:
Database | Class | Constructor arguments | Notes |
---|---|---|---|
Qdrant | affine.engine.QdrantEngine |
host: str hostname to useport: int port to use |
- |
Weaviate | affine.engine.WeaviateEngine |
host: str hostname to useport: int port to use |
- |
Pinecone | affine.engine.PineconeEngine |
api_key: Union[str, None] pinecone API key. if not provided, it will be read from the environment variable PINECONE_API_KEY.spec: Union[ServerlessSpec, PodSpec, None] the PodSpec or ServerlessSpec object. If not provided, aServerlessSpec will be created from the environment variables PINECONE_CLOUD and PINECONE_REGION. |
the Pinecone engine has the restriction that every collection must contain exactly one vector attribute. |
Approximate Nearest Neighbor Libraries
The LocalEngine
class provides an interface for doing nearest neighbor search on the executing machine, supporting a variety of libraries for the backing nearest neighborsearch. Which one is specified by the backend
argument to the constructor. For example, to use annoy
:
from affine.engine.local import LocalEngine, AnnoyBackend
db = LocalEngine(backend=AnnoyBackend(n_tress=10))
The options and settings for the various supported backends are as follows:
Library | Class | Constructor arguments | Notes |
---|---|---|---|
naive/numpy | affine.engine.local.NumPyBackend |
- | - |
scikit-learn KDTree | affine.engine.local.KDTreeBackend |
keyword arguments that get passed directly to sklearn.neighbors.KDTree |
- |
annoy | affine.engine.local.AnnoyBackend |
n_trees: int number of trees to usen_jobs: int defaults to -1 |
- |
FAISS | affine.engine.local.FAISSBackend |
index_factory_str: str |
- |
PyNNDescent | affine.engine.local.PyNNDescentBackend |
keyword arguments that get passed directly to pynndescent.NNDescent |
- |
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 affine_vectordb-0.1.0a1.tar.gz
.
File metadata
- Download URL: affine_vectordb-0.1.0a1.tar.gz
- Upload date:
- Size: 20.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9c0d2e8eb8dd635a11116a3ecc9722fc55376f0e6c76963de73a5bd2b931bb7 |
|
MD5 | 46e0ad0a4fa95fa3d5ef33798a8476da |
|
BLAKE2b-256 | 4550d4f6b419f8d89da3ce4b296fd4a932e49b6749b2fa9e6cf92becc9d929b8 |
Provenance
The following attestation bundles were made for affine_vectordb-0.1.0a1.tar.gz
:
Publisher:
build-and-publish.yml
on ekorman/affine
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
affine_vectordb-0.1.0a1.tar.gz
- Subject digest:
e9c0d2e8eb8dd635a11116a3ecc9722fc55376f0e6c76963de73a5bd2b931bb7
- Sigstore transparency entry: 147795636
- Sigstore integration time:
- Predicate type:
File details
Details for the file affine_vectordb-0.1.0a1-py3-none-any.whl
.
File metadata
- Download URL: affine_vectordb-0.1.0a1-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93a8e8d8f34c380041922db3c0962cfb7838a678b6f9028751ef3aa94f5e0e90 |
|
MD5 | 57ac57cd95e13b6aad0e2e69de3947b5 |
|
BLAKE2b-256 | 2a4eff41b627f8c38651a7f049682248e4578fc4fb0f6bcd4255cb9b770a3fd8 |
Provenance
The following attestation bundles were made for affine_vectordb-0.1.0a1-py3-none-any.whl
:
Publisher:
build-and-publish.yml
on ekorman/affine
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
affine_vectordb-0.1.0a1-py3-none-any.whl
- Subject digest:
93a8e8d8f34c380041922db3c0962cfb7838a678b6f9028751ef3aa94f5e0e90
- Sigstore transparency entry: 147795638
- Sigstore integration time:
- Predicate type: