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