semantic-cache / semcache /__init__.py
SaitejaMothukuri's picture
Deploy semantic-cache
8186ed2 verified
Raw
History Blame Contribute Delete
263 Bytes
"""Embedding-keyed semantic cache for LLM responses."""
from .cache import AskResult, CacheEntry, CacheStats, LookupResult, SemanticCache, ask
__all__ = [
"SemanticCache",
"CacheEntry",
"CacheStats",
"LookupResult",
"AskResult",
"ask",
]