LICENSE
MANIFEST.in
README.md
requirements.txt
setup.py
gptcache/__init__.py
gptcache/client.py
gptcache/config.py
gptcache/core.py
gptcache/report.py
gptcache/session.py
gptcache.egg-info/PKG-INFO
gptcache.egg-info/SOURCES.txt
gptcache.egg-info/dependency_links.txt
gptcache.egg-info/entry_points.txt
gptcache.egg-info/requires.txt
gptcache.egg-info/top_level.txt
gptcache/adapter/__init__.py
gptcache/adapter/adapter.py
gptcache/adapter/api.py
gptcache/adapter/base.py
gptcache/adapter/diffusers.py
gptcache/adapter/dolly.py
gptcache/adapter/langchain_models.py
gptcache/adapter/llama_cpp.py
gptcache/adapter/minigpt4.py
gptcache/adapter/openai.py
gptcache/adapter/replicate.py
gptcache/adapter/stability_sdk.py
gptcache/embedding/__init__.py
gptcache/embedding/base.py
gptcache/embedding/cohere.py
gptcache/embedding/data2vec.py
gptcache/embedding/fasttext.py
gptcache/embedding/huggingface.py
gptcache/embedding/langchain.py
gptcache/embedding/onnx.py
gptcache/embedding/openai.py
gptcache/embedding/paddlenlp.py
gptcache/embedding/rwkv.py
gptcache/embedding/sbert.py
gptcache/embedding/string.py
gptcache/embedding/timm.py
gptcache/embedding/uform.py
gptcache/embedding/vit.py
gptcache/manager/__init__.py
gptcache/manager/data_manager.py
gptcache/manager/eviction_manager.py
gptcache/manager/factory.py
gptcache/manager/eviction/__init__.py
gptcache/manager/eviction/base.py
gptcache/manager/eviction/manager.py
gptcache/manager/eviction/memory_cache.py
gptcache/manager/object_data/__init__.py
gptcache/manager/object_data/base.py
gptcache/manager/object_data/local_storage.py
gptcache/manager/object_data/manager.py
gptcache/manager/object_data/s3_storage.py
gptcache/manager/scalar_data/__init__.py
gptcache/manager/scalar_data/base.py
gptcache/manager/scalar_data/manager.py
gptcache/manager/scalar_data/sql_storage.py
gptcache/manager/vector_data/__init__.py
gptcache/manager/vector_data/base.py
gptcache/manager/vector_data/chroma.py
gptcache/manager/vector_data/docarray_index.py
gptcache/manager/vector_data/faiss.py
gptcache/manager/vector_data/hnswlib_store.py
gptcache/manager/vector_data/manager.py
gptcache/manager/vector_data/milvus.py
gptcache/manager/vector_data/pgvector.py
gptcache/manager/vector_data/usearch.py
gptcache/processor/__init__.py
gptcache/processor/check_hit.py
gptcache/processor/post.py
gptcache/processor/pre.py
gptcache/processor/context/__init__.py
gptcache/processor/context/concat_context.py
gptcache/processor/context/context.py
gptcache/processor/context/selective_context.py
gptcache/processor/context/summarization_context.py
gptcache/similarity_evaluation/__init__.py
gptcache/similarity_evaluation/distance.py
gptcache/similarity_evaluation/exact_match.py
gptcache/similarity_evaluation/kreciprocal.py
gptcache/similarity_evaluation/np.py
gptcache/similarity_evaluation/onnx.py
gptcache/similarity_evaluation/similarity_evaluation.py
gptcache/utils/__init__.py
gptcache/utils/cache_func.py
gptcache/utils/dependency_control.py
gptcache/utils/error.py
gptcache/utils/lazy_import.py
gptcache/utils/log.py
gptcache/utils/response.py
gptcache/utils/softmax.py
gptcache/utils/time.py
gptcache/utils/token.py
gptcache_server/__init__.py
gptcache_server/server.py