numpy-vector-store 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/.github/workflows/publish-pypi.yml +2 -2
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/.github/workflows/publish-testpypi.yml +2 -2
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/PKG-INFO +1 -1
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/src/numpy_vector_store/__init__.py +1 -1
- numpy_vector_store-0.3.1/src/numpy_vector_store/py.typed +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/.github/FUNDING.yml +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/.gitignore +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/LICENSE +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/README.md +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/justfile +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/pyproject.toml +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/src/numpy_vector_store/vector_store.py +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/tests/__init__.py +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/tests/test_vector_store.py +0 -0
- {numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: numpy-vector-store
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A fast, lightweight, and zero-setup in-memory vector store powered by NumPy
|
|
5
5
|
Project-URL: Homepage, https://github.com/tvanreenen/numpy-vector-store
|
|
6
6
|
Project-URL: Repository, https://github.com/tvanreenen/numpy-vector-store
|
|
@@ -5,7 +5,7 @@ This package provides a lightweight vector store implementation for storing
|
|
|
5
5
|
and searching vector embeddings using NumPy arrays.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "0.3.
|
|
8
|
+
__version__ = "0.3.1"
|
|
9
9
|
__author__ = "Tim VanReenen"
|
|
10
10
|
|
|
11
11
|
from .vector_store import VectorHit, VectorStore
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{numpy_vector_store-0.3.0 → numpy_vector_store-0.3.1}/src/numpy_vector_store/vector_store.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|