Update app.py
Browse files
app.py
CHANGED
|
@@ -213,15 +213,14 @@ def build_interface():
|
|
| 213 |
processed_video_output = gr.File(label="Download Processed Video", interactive=False) # Download button
|
| 214 |
|
| 215 |
with gr.Column(scale=1):
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
|
| 224 |
-
response_message = gr.Textbox(label=None, lines=1, interactive=False)
|
| 225 |
|
| 226 |
|
| 227 |
submit_button.click(
|
|
|
|
| 213 |
processed_video_output = gr.File(label="Download Processed Video", interactive=False) # Download button
|
| 214 |
|
| 215 |
with gr.Column(scale=1):
|
| 216 |
+
gr.Markdown("**Feedback**")
|
| 217 |
+
feedback_input = gr.Textbox(
|
| 218 |
+
placeholder="Leave your feedback here...",
|
| 219 |
+
label=None,
|
| 220 |
+
lines=3,
|
| 221 |
+
)
|
| 222 |
+
feedback_btn = gr.Button("Submit Feeback")
|
| 223 |
+
response_message = gr.Textbox(label=None, lines=1, interactive=False)
|
|
|
|
| 224 |
|
| 225 |
|
| 226 |
submit_button.click(
|