Metadata-Version: 2.3
Name: localstored
Version: 0.0.2
Summary: A simple local vector store implementation using numpy
Project-URL: Homepage, https://github.com/theyashwanthsai/localstored
Project-URL: Bug Tracker, https://github.com/theyashwanthsai/localstored/issues
Author-email: Sai Yashwanth <taddishetty34@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# localstored

localstored is a simple vector store implementation using numpy, and stored locally.

## Features

- Educational project. Not aimed for production grade usecases
- Similarity search using cosine similarity (Many more to add)
- Save and load functionality for persistent storage

## Installation

To install NumpyVectorStore, run the following command:
```
pip install localstored
```

## Todo:
- [ ] Add documentation
