clearModelCache method
Clears current model cache/state
Implementation
@override
Future<void> clearModelCache() async {
await _ensureInitialized();
_path = null;
_loraPath = null;
_currentActiveModel = null;
_installedModels.clear();
_modelPaths.clear();
_loraPaths.clear();
_loadCompleters.clear();
debugPrint('WebModelManager: Model cache cleared');
}