[mob][photos] Fix

This commit is contained in:
laurenspriem
2025-03-04 14:45:34 +05:30
parent b922bacb78
commit 2147e13af4

View File

@@ -133,7 +133,7 @@ Future<dynamic> isolateFunction(
final double similarity = embedding.vector.dot(otherEmbedding);
result[embedding.fileID] = similarity;
}
return Map.from(result);
return Map<int, double>.from(result);
/// Cases for MLComputer end here