cache.wrapped_embeddings
Wrap an EmbeddingFunction with SQLite caching.
EmbeddingFunction
CachedEmbeddingFunction(inner, cache)
Delegates to inner while reading/writing vectors through EmbeddingCache.
inner
EmbeddingCache
src/chunktuner/cache/wrapped_embeddings.py
12 13 14 15
def __init__(self, inner: EmbeddingFunction, cache: EmbeddingCache): self._inner = inner self._cache = cache self.profile_name = inner.profile_name
From here you can search these documents. Enter your search terms below.