[feat] add --set-speaker-names CLI flag; implement prompt-based speaker name assignment with tests

This commit is contained in:
2025-08-08 13:06:24 +02:00
parent 1d23be8066
commit 53a7471b99
4 changed files with 122 additions and 4 deletions

View File

@@ -643,6 +643,10 @@ mod tests {
#[test]
fn test_update_local_models_offline_copy_and_manifest() {
use std::sync::{Mutex, OnceLock};
static ENV_LOCK: OnceLock<Mutex<()>> = OnceLock::new();
let _guard = ENV_LOCK.get_or_init(|| Mutex::new(())).lock().unwrap();
let tmp_models = tempdir().unwrap();
let tmp_base = tempdir().unwrap();
let tmp_manifest = tempdir().unwrap();