supermy commited on
Commit
536d4b9
1 Parent(s): 1728aa5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ def transcribe(microphone, file_upload):
34
  file = microphone if microphone is not None else file_upload
35
 
36
  text = pipe(file,language='zh')["text"]
37
-
38
  return warn_output + text
39
 
40
 
 
34
  file = microphone if microphone is not None else file_upload
35
 
36
  text = pipe(file,language='zh')["text"]
37
+ # TODO 翻译目标 Chinese
38
  return warn_output + text
39
 
40