Upload folder using huggingface_hub
Browse files
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 |
-
|
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 |
-
|
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 |
|