mirror of
https://github.com/QuentinFuxa/WhisperLiveKit.git
synced 2026-03-07 14:23:18 +00:00
Fix local agreement backend, removing excess parameter, fixes https://github.com/QuentinFuxa/WhisperLiveKit/issues/295
This commit is contained in:
@@ -151,7 +151,7 @@ class FasterWhisperASR(ASRBase):
|
||||
if segment.no_speech_prob > 0.9:
|
||||
continue
|
||||
for word in segment.words:
|
||||
token = ASRToken(word.start, word.end, word.word, probability=word.probability)
|
||||
token = ASRToken(word.start, word.end, word.word)
|
||||
tokens.append(token)
|
||||
return tokens
|
||||
|
||||
|
||||
Reference in New Issue
Block a user