ML data included by default, --exif is the opt-in, --all aliases --exif

ML data (face detections, CLIP embeddings) is now fetched by default
in backup-metadata. Use --no-ml to skip it. EXIF extraction (which
requires downloading every file) remains opt-in via --exif. --all is
an alias for --exif.
This commit is contained in:
2026-06-09 17:38:15 -04:00
parent 8cd57f4d12
commit 21a1a78f07
3 changed files with 41 additions and 16 deletions

View File

@@ -120,7 +120,7 @@ export const runMetadataBackup = async (
opts?: MetadataBackupOptions,
): Promise<void> => {
const log = opts?.onProgress ?? (() => {});
const wantML = opts?.mlData ?? false;
const wantML = opts?.mlData ?? true;
const wantExif = opts?.exif ?? false;
mkdirSync(outDir, { recursive: true });