Update app.py
Browse files
app.py
CHANGED
|
@@ -71,7 +71,9 @@ iface = gr.Interface(
|
|
| 71 |
gr.Audio(label="π Spoken Feedback", type="filepath")
|
| 72 |
],
|
| 73 |
title="π£ Communications Tutor with LLM Feedback",
|
| 74 |
-
description="Speak your answer. The AI tutor will transcribe it, analyze it using GPT, and give spoken feedback on how to improve."
|
|
|
|
| 75 |
)
|
| 76 |
|
|
|
|
| 77 |
iface.launch()
|
|
|
|
| 71 |
gr.Audio(label="π Spoken Feedback", type="filepath")
|
| 72 |
],
|
| 73 |
title="π£ Communications Tutor with LLM Feedback",
|
| 74 |
+
description="Speak your answer. The AI tutor will transcribe it, analyze it using GPT, and give spoken feedback on how to improve.",
|
| 75 |
+
allow_flagging="never" # π This disables flagging entirely
|
| 76 |
)
|
| 77 |
|
| 78 |
+
|
| 79 |
iface.launch()
|