simonraj commited on
Commit
f5734da
·
1 Parent(s): 28ee00f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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
- 📝 Click here to provide feedback on the initial prototype of the Oral Coach 📝
81
  </a>
82
  </div>
83
- ''', # Added feedback link, centralized with medium font size and emoticons
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
+ &#x1F4DD; Click here to provide feedback on the initial prototype of the Oral Coach &#x1F4DD;
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