A streamlined Python library that enhances LLM query performance through semantic caching, making responses faster and more cost-effective.
Project description
VectorCache: A Python Library for Efficient LLM Query Caching
A streamlined Python library that enhances LLM query performance through semantic caching, making responses faster and more cost-effective.
What is VectorCache?
As AI applications gain traction, the costs and latency of using large language models (LLMs) can escalate. VectorCache addresses these issues by caching LLM responses based on semantic similarity, thereby reducing both costs and response times.
🤠 Overview
Semantic Vector Cache leverages the power of LLMs to provide two main advantages:
- Faster Responses: By caching, it significantly reduces latency, offering quicker feedback to user queries.
- Lower Costs: It minimizes the number of direct LLM requests, thereby saving on usage costs.
🤔 Benefits
VectorCache, akin to a more nuanced Redis, enables efficient caching by recognizing not just exact matches but also semantically similar queries. This efficiency is particularly useful in domains where queries within a specific topic or field are frequent.
😊 Getting Started
Prerequisites:
- Ensure Python version is 3.9 or higher (
python --version
). pip install vector-cache
NOTE: vector-cache comes with support for multiple vector stores and storage databases, which are optional installs. Read here for more information
-
Install from source
- For library installation issues, upgrade pip:
python -m pip install -r requirements.txt
.
- For library installation issues, upgrade pip:
-
Initialise vector cache:
Initialization Parameters for Vector Cache
The VectorCache
class can be initialized with the following parameters:
-
embedding_model
(BaseEmbedding
): The embedding model used to convert text or other data into vector embeddings. This must be an instance of a class that inherits fromBaseEmbedding
.-
db
(CacheStorageInterface
): The storage interface for caching and retrieving vectors. This must be an instance of a class that inherits fromCacheStorageInterface
. -
vector_store
(VectorStoreInterface
): The vector store interface for storing and searching vectors. This must be an instance of a class that inherits fromVectorStoreInterface
. -
initial_similarity_threshold
(float
, optional, default=0.99): The initial similarity threshold used to determine if a cached vector is considered a hit. -
target_hit_rate
(float
, optional, default=0.8): The target hit rate for cache queries. This is used ifuse_adjustable_threshold
is set toTrue
to dynamically adjust the similarity threshold. -
min_threshold
(float
, optional, default=0.7): The minimum allowed similarity threshold for adaptive thresholding. -
max_threshold
(float
, optional, default=1.99): The maximum allowed similarity threshold for adaptive thresholding. -
adjustment_rate
(float
, optional, default=0.01): The rate at which the similarity threshold is adjusted to achieve the target hit rate. -
verbose
(bool
, optional, default=False): If set toTrue
, enables verbose logging for debugging purposes. -
use_adjustable_threshold
(bool
, optional, default=False): If set toTrue
, enables dynamic adjustment of the similarity threshold based on the target hit rate.
-
Metrics for Adaptive Thresholding
-
total_queries
(int
): The total number of queries made to the vector cache. This is used internally to track performance metrics.cache_hits
(int
): The number of cache hits. This is used internally to track performance metrics and adjust the similarity threshold ifuse_adjustable_threshold
is enabled.
Example
vector_cache = VectorCache( embedding_model=my_embedding_model, db=my_cache_storage, vector_store=my_vector_store, initial_similarity_threshold=0.95, target_hit_rate=0.85, min_threshold=0.75, max_threshold=1.0, adjustment_rate=0.02, verbose=True, use_adjustable_threshold=True )
-
Refer to the
examples
folder for sample usage.
VectorCache is designed to work with any LLM provider. It includes modules for:
- Embedding Models: Facilitates similarity searches through various vector_cache.embedding APIs.
- Cache Storage: Stores LLM responses for future retrieval based on semantic matches.
- Vector Store: Identifies similar requests using the input request's embeddings.
- Cache Manager: Manages cache storage and vector store operations, including eviction policies.
- Similarity Evaluator: Determines the similarity between requests to ascertain cache matches.
** Features: **
- Adaptive Threshold (Alpha) : The vector cache can now incrementally adjust the similarity threshold till a desired hit rate is met. This should be used with caution as the high threshold can cause non-relevant matches to be returned.
🔍 Vector Stores
VectorCache supports multiple vector store options for efficient similarity search. For detailed information on how to use different vector stores, please refer to our Vector Stores README.
Supported vector stores include:
- Redis
- Qdrant
- Deeplake
- ChromaDB
- pgvector
- Pinecone
- Milvus
We're continuously working on expanding our support for other popular vector stores. If you don't see your preferred vector store listed, check our documentation for the most up-to-date information or consider contributing to add support for it!
😆 Contributing
Interested in contributing to VectorCache? Check our contribution guidelines.
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
Built Distribution
Hashes for vector_cache-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 904b24dbd7af8748740b4e8a2535438606f99929983d7d0deed2ea7464173988 |
|
MD5 | 689049109344febd639d4cd9f1b116f0 |
|
BLAKE2b-256 | d630b5496ce3488f17842566a1f758e3f2cede6514c9624fbf24719b754463e1 |