Marti Umbert commited on
Commit
685f83e
·
1 Parent(s): b58a787

whisperlivekit/whisper_streaming_custom/backends.py: separator should be an empty space

Browse files
whisperlivekit/whisper_streaming_custom/backends.py CHANGED
@@ -92,7 +92,7 @@ class WhisperTimestampedASR(ASRBase):
92
 
93
  class FasterWhisperASR(ASRBase):
94
  """Uses faster-whisper as the backend."""
95
- sep = ""
96
 
97
  def load_model(self, modelsize=None, cache_dir=None, model_dir=None):
98
  from faster_whisper import WhisperModel, BatchedInferencePipeline
 
92
 
93
  class FasterWhisperASR(ASRBase):
94
  """Uses faster-whisper as the backend."""
95
+ sep = " "
96
 
97
  def load_model(self, modelsize=None, cache_dir=None, model_dir=None):
98
  from faster_whisper import WhisperModel, BatchedInferencePipeline