[feat] add update_models CLI option and implement local-remote model synchronization logic

This commit is contained in:
2025-08-08 11:32:31 +02:00
parent 29b6a2493b
commit aa8ea14407
2 changed files with 131 additions and 8 deletions

View File

@@ -33,6 +33,10 @@ struct Args {
/// Launch interactive model downloader (list HF models, multi-select and download)
#[arg(long)]
download_models: bool,
/// Update local Whisper models by comparing hashes/sizes with remote manifest
#[arg(long)]
update_models: bool,
}
#[derive(Debug, Deserialize)]