Update app.py
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ mic_transcribe = gr.Interface(
|
|
55 |
inputs=[
|
56 |
gr.Audio(sources="microphone", type="filepath"),
|
57 |
gr.Radio(["transcribe", "translate"], label="Task"),
|
58 |
-
gr.Checkbox(
|
59 |
],
|
60 |
outputs="text",
|
61 |
layout="horizontal",
|
@@ -72,7 +72,7 @@ file_transcribe = gr.Interface(
|
|
72 |
inputs=[
|
73 |
gr.Audio(sources="upload", type="filepath", label="Upload Audio File"),
|
74 |
gr.Radio(["transcribe", "translate"], label="Task"),
|
75 |
-
gr.Checkbox(
|
76 |
],
|
77 |
outputs="text",
|
78 |
layout="horizontal",
|
|
|
55 |
inputs=[
|
56 |
gr.Audio(sources="microphone", type="filepath"),
|
57 |
gr.Radio(["transcribe", "translate"], label="Task"),
|
58 |
+
gr.Checkbox(label="Return timestamps"),
|
59 |
],
|
60 |
outputs="text",
|
61 |
layout="horizontal",
|
|
|
72 |
inputs=[
|
73 |
gr.Audio(sources="upload", type="filepath", label="Upload Audio File"),
|
74 |
gr.Radio(["transcribe", "translate"], label="Task"),
|
75 |
+
gr.Checkbox(label="Return timestamps"),
|
76 |
],
|
77 |
outputs="text",
|
78 |
layout="horizontal",
|