EmbeddingCache constructor

EmbeddingCache({
  1. required String cachePath,
  2. int maxEntries = 10000,
})

Implementation

EmbeddingCache({
  required String cachePath,
  int maxEntries = 10000,
})  : _cachePath = cachePath,
      _maxEntries = maxEntries;