Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -74,16 +74,15 @@ iface = gr.Interface(
|
|
| 74 |
gr.inputs.Audio(source="microphone", type="filepath") # Audio input
|
| 75 |
],
|
| 76 |
outputs=gr.inputs.Textbox(), # Using inputs.Textbox as an output to make it editable
|
| 77 |
-
description=img_html
|
| 78 |
<div style="text-align: center; font-size: medium;">
|
| 79 |
<a href="https://forms.moe.edu.sg/forms/J0lmkJ" target="_blank">
|
| 80 |
-
|
| 81 |
</a>
|
| 82 |
</div>
|
| 83 |
-
''', #
|
| 84 |
css="custom.css" # Link to the custom CSS file
|
| 85 |
)
|
| 86 |
|
| 87 |
iface.queue(max_size=99, concurrency_count=40).launch(debug=True)
|
| 88 |
|
| 89 |
-
|
|
|
|
| 74 |
gr.inputs.Audio(source="microphone", type="filepath") # Audio input
|
| 75 |
],
|
| 76 |
outputs=gr.inputs.Textbox(), # Using inputs.Textbox as an output to make it editable
|
| 77 |
+
description=img_html + '''
|
| 78 |
<div style="text-align: center; font-size: medium;">
|
| 79 |
<a href="https://forms.moe.edu.sg/forms/J0lmkJ" target="_blank">
|
| 80 |
+
📝 Click here to provide feedback on the initial prototype of the Oral Coach 📝
|
| 81 |
</a>
|
| 82 |
</div>
|
| 83 |
+
''', # Corrected string concatenation
|
| 84 |
css="custom.css" # Link to the custom CSS file
|
| 85 |
)
|
| 86 |
|
| 87 |
iface.queue(max_size=99, concurrency_count=40).launch(debug=True)
|
| 88 |
|
|
|