getStats method
Gets cache statistics.
Implementation
CacheStats getStats() {
return CacheStats(
entryCount: _cache.length,
maxEntries: _maxEntries,
embeddingDimensions: _cache.isEmpty ? 0 : _cache.values.first.embedding.length,
);
}
Gets cache statistics.
CacheStats getStats() {
return CacheStats(
entryCount: _cache.length,
maxEntries: _maxEntries,
embeddingDimensions: _cache.isEmpty ? 0 : _cache.values.first.embedding.length,
);
}