Update app.py
Browse files
app.py
CHANGED
|
@@ -130,10 +130,11 @@ my_inputs = [
|
|
| 130 |
|
| 131 |
ui = gr.Interface(fn=transcribe,
|
| 132 |
inputs=my_inputs,
|
| 133 |
-
outputs=[RichTextbox(label="Your Note (gpt4-turbo-preview)"),
|
| 134 |
#gr.Textbox(label="Your Note (GPT 3.5 Turbo)", show_copy_button=True),
|
| 135 |
gr.Number(label="Audio Word Count"),
|
| 136 |
-
gr.Number(label=".mp3 MB")]
|
|
|
|
| 137 |
)
|
| 138 |
|
| 139 |
|
|
|
|
| 130 |
|
| 131 |
ui = gr.Interface(fn=transcribe,
|
| 132 |
inputs=my_inputs,
|
| 133 |
+
outputs=[RichTextbox(label="Your Note (gpt4-turbo-preview)", elem_id="htext"),
|
| 134 |
#gr.Textbox(label="Your Note (GPT 3.5 Turbo)", show_copy_button=True),
|
| 135 |
gr.Number(label="Audio Word Count"),
|
| 136 |
+
gr.Number(label=".mp3 MB")],
|
| 137 |
+
css="#htext span {white-space: pre}"
|
| 138 |
)
|
| 139 |
|
| 140 |
|