Merge remote-tracking branch 'origin/master'

This commit is contained in:
Niko 2024-11-28 23:17:32 -07:00
commit f8b36d717d
No known key found for this signature in database

View file

@ -585,6 +585,10 @@ impl<'a> WhisperContextParameters<'a> {
dtw_aheads_preset =
whisper_rs_sys::whisper_alignment_heads_preset_WHISPER_AHEADS_LARGE_V3;
}
DtwModelPreset::LargeV3Turbo => {
dtw_aheads_preset =
whisper_rs_sys::whisper_alignment_heads_preset_WHISPER_AHEADS_LARGE_V3_TURBO;
}
},
}
@ -649,6 +653,7 @@ pub enum DtwModelPreset {
LargeV1,
LargeV2,
LargeV3,
LargeV3Turbo,
}
#[cfg(test)]