We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 712c13c commit d64d1caCopy full SHA for d64d1ca
src/models/whisper_cpp.rs
@@ -166,6 +166,7 @@ impl ModelRuntime for WhisperCpp {
166
let mut params = FullParams::new(SamplingStrategy::Greedy { best_of: 1 });
167
168
// Configure parameters from ModelConfig
169
+ info!("Using {} threads for transcription", config.n_threads);
170
params.set_n_threads(config.n_threads as i32);
171
// Auto-detect language (None = auto-detection enabled)
172
params.set_language(None);
0 commit comments