reset method
Clears all cached AI responses.
Implementation
@override
Future<void> reset({CancellationToken? cancellationToken}) async {
final dir = Directory(_cacheRootPath);
if (dir.existsSync()) await dir.delete(recursive: true);
}
Clears all cached AI responses.
@override
Future<void> reset({CancellationToken? cancellationToken}) async {
final dir = Directory(_cacheRootPath);
if (dir.existsSync()) await dir.delete(recursive: true);
}