diff --git a/whisper_streaming/transcriber.py b/whisper_streaming/transcriber.py index 5fcf6f6..07bf6c8 100644 --- a/whisper_streaming/transcriber.py +++ b/whisper_streaming/transcriber.py @@ -70,7 +70,6 @@ class WhisperStreamingTranscriber: self, *, segment: np.ndarray, - prompt, ) -> List[DecodingResult]: assert len(self.config.temperatures) >= 1 t = self.config.temperatures[0] @@ -211,7 +210,6 @@ class WhisperStreamingTranscriber: ) results = self._decode_with_fallback( segment=segment, - prompt=self.buffer_tokens, ) result = results[0]