MuhammadFarhanAslam commited on
Commit
7b457f9
·
verified ·
1 Parent(s): 5a05ff2

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -63,7 +63,7 @@ mic_transcribe = gr.Interface(
63
  lines=4, # Slightly more lines for longer transcriptions
64
  placeholder="Your transcribed text will appear here..."
65
  ),
66
- allow_flagging="never", # Disable flagging
67
  description="Record your voice directly using your device's microphone. Get an instant transcription."
68
  )
69
 
@@ -80,7 +80,7 @@ file_transcribe = gr.Interface(
80
  lines=4, # Slightly more lines
81
  placeholder="Upload an audio file (e.g., .wav, .mp3) to get its transcription."
82
  ),
83
- allow_flagging="never", # Disable flagging
84
  description="Upload an audio file for transcription."
85
  )
86
 
 
63
  lines=4, # Slightly more lines for longer transcriptions
64
  placeholder="Your transcribed text will appear here..."
65
  ),
66
+ flagging_mode="never", # Disable flagging
67
  description="Record your voice directly using your device's microphone. Get an instant transcription."
68
  )
69
 
 
80
  lines=4, # Slightly more lines
81
  placeholder="Upload an audio file (e.g., .wav, .mp3) to get its transcription."
82
  ),
83
+ flagging_mode="never", # Disable flagging
84
  description="Upload an audio file for transcription."
85
  )
86