This commit is contained in:
yumoqing 2025-11-06 15:09:05 +08:00
parent 25cce934c4
commit 853a83e3b9

View File

@ -46,7 +46,7 @@ class MyLongTask(LongTasks):
words = [] words = []
for s in segments: for s in segments:
if s.words: if s.words:
words.append([word.start, word.end, word.word for word in s.words]) words.append([word.start, word.end, word.word] for word in s.words])
return { return {
'language': info.language, 'language': info.language,