From 895c841441b10ec6832770bf53672d9cfed28241 Mon Sep 17 00:00:00 2001 From: "Michael J. Culbertson" Date: Tue, 28 Jul 2026 17:08:11 -0500 Subject: [PATCH] Fix typo --- src/whisper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/whisper.cpp b/src/whisper.cpp index 5790f2892..1359fcd2a 100644 --- a/src/whisper.cpp +++ b/src/whisper.cpp @@ -7182,7 +7182,7 @@ int whisper_full_with_state( std::vector probs(n_logits); // Get the SOT logits, which aren't at position 0 if there was a prompt prefix - const std::vector sot_logits = state->logits;( + const std::vector sot_logits( state->logits.begin() + (size_t) sot_index * n_logits, state->logits.begin() + (size_t) (sot_index + 1) * n_logits);