mirror of
https://github.com/ente-io/ente.git
synced 2025-05-29 22:09:43 +00:00
11 lines
267 B
Dart
11 lines
267 B
Dart
import "dart:io" show Platform;
|
|
|
|
const faceMlVersion = 1;
|
|
const clipMlVersion = 1;
|
|
const clusterMlVersion = 1;
|
|
const minimumClusterSize = 2;
|
|
|
|
const embeddingFetchLimit = 200;
|
|
final fileDownloadMlLimit = Platform.isIOS ? 5 : 10;
|
|
const maxFileDownloadSize = 100000000;
|