added distil models

This commit is contained in:
2026-04-03 10:25:48 -06:00
parent ea3f1d2b23
commit c7445206cc
3 changed files with 126 additions and 7 deletions

View File

@ -46,6 +46,7 @@ pub fn transcribe_audio(
// Run Python script
let output = Command::new(python_exe)
.args(&args)
.env("PYTHONPATH", crate::paths::project_root().join(".venv312").join("lib").join("python3.12").join("site-packages"))
.output()
.map_err(|e| format!("Failed to run Python script: {}", e))?;