Skip to main content

No project description provided

Project description

VecCache

VecCache is a Python package that provides an easy interface to cache embeddings of texts using OpenAI's API and allows for fast similarity searches over the cached embeddings.

Features

  • Utilize OpenAI's API to generate text embeddings.
  • Cache the embeddings efficiently using faiss.
  • Quick similarity searches over the cached embeddings.

Installation

pip install vec_cache

Note: You need to have an OpenAI API key to use this package.

Usage

Basic Usage

from vec_cache import VecCache

# Initialize the cache with your OpenAI API key. If openai_api_key is not provided, .env or environment variable is loaded.
cache = VecCache(ttl=3600, openai_api_key="YOUR_OPENAI_API_KEY")

# Store a text in the cache
cache.store("Hello, World!")

# Search for the most similar text in the cache
result = cache.search("Hi, World!")
print(result)  # Outputs: "Hello, World!"

Storing with Precomputed Vectors

If you have precomputed vectors, you can store them directly:

vector = [0.1, 0.2, ...]  # Some precomputed vector
cache.store_with_vector("Some text", vector)

Searching with Distance

If you wish to obtain the distance along with the result:

result, distance = cache.search("Hi, World!", return_with_distance=True)
print(result)   # Outputs: "Hello, World!"
print(distance) # Outputs the L2 distance

Configuration

VecCache accepts the following parameters:

  • ttl: Time to live for cached vectors.
  • openai_api_key: Your OpenAI API key.
  • embedding_model_name: Name of the OpenAI embedding model. Default is "text-embedding-ada-002".
  • vector_size: Size of the vector. Default is 1536.

Contributions

We welcome contributions! Please submit a pull request or open an issue if you'd like to improve the package.

Using pre-commit for a Smoother Contribution Experience

To ensure consistent code quality and avoid common pitfalls, we use pre-commit hooks in our development process. Before you submit your pull request, it's recommended that you set up pre-commit to ensure your changes adhere to our coding standards and guidelines.

Steps to set up pre-commit:

  1. Install pre-commit: If you haven't already, install packages including pre-commit:

    poetry install
    
  2. Activate pre-commit for the repository: Navigate to the root directory of this repository and run:

    pre-commit install
    

License

This project is licensed under the MIT License.


Feel free to customize the content based on your package's details and specific requirements.

Of course! Here's a message you can include in your README.md file to encourage contributors to use pre-commit:


Contributing to [Your Project Name]

Using pre-commit for a Smoother Contribution Experience

To ensure consistent code quality and avoid common pitfalls, we use pre-commit hooks in our development process. Before you submit your pull request, it's recommended that you set up pre-commit to ensure your changes adhere to our coding standards and guidelines.

Steps to set up pre-commit:

  1. Install pre-commit: If you haven't already, install pre-commit:

    pip install pre-commit
    
  2. Activate pre-commit for the repository: Navigate to the root directory of this repository and run:

    pre-commit install
    
  3. Run pre-commit on all files (optional): If you want to run the hooks on all the files in the repository (useful for the first-time setup):

    pre-commit run --all-files
    

With pre-commit set up, before every commit, the hooks will automatically check your changes and ensure they meet the repository's guidelines. If any issues are found, pre-commit will notify you, and in some cases, it might auto-fix the problems.

We appreciate your contribution and effort, and by setting up pre-commit, you're helping us maintain the quality and consistency of the project. Thank you!


Make sure to customize the placeholder [Your Project Name] with the actual name of your project. Adjust any other details as needed to better fit the specifics of your project or your desired messaging style.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vec_cache-0.1.4.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

vec_cache-0.1.4-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file vec_cache-0.1.4.tar.gz.

File metadata

  • Download URL: vec_cache-0.1.4.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.17 Linux/5.15.0-1042-azure

File hashes

Hashes for vec_cache-0.1.4.tar.gz
Algorithm Hash digest
SHA256 a26c954ada0d58b8865f6416ee46cc704e0a230f1d380e9d566e4608983d0266
MD5 288df726be5df03445a0ed07780bce5e
BLAKE2b-256 9016a3b58dd6b44b4c85986470be71384f04f93f81a41d75f53133af036c2324

See more details on using hashes here.

File details

Details for the file vec_cache-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: vec_cache-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.17 Linux/5.15.0-1042-azure

File hashes

Hashes for vec_cache-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 5961be39b2933030fb550ca7f9cdb43840d60e82023746aaadfd7ee6702624af
MD5 ed99c7ed324b057daed10b2c1693347d
BLAKE2b-256 fcbd93cfabff26faab4d44572a78233f4307c630bfd5a49b941526d45e0c588a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page