clearModelCache method
Clears current model cache/state
Implementation
@override
Future<void> clearModelCache() async {
await _ensureInitialized();
_activeInferenceModel = null;
_activeEmbeddingModel = null;
debugPrint('Model cache cleared');
}