Update app.py
Browse files
app.py
CHANGED
|
@@ -211,12 +211,12 @@ def build_interface():
|
|
| 211 |
# post_output = gr.Textbox(label="Posting Status", interactive=False)
|
| 212 |
translated_output = gr.JSON(label="Video transcript")
|
| 213 |
processed_video_output = gr.File(label="Download Processed Video", interactive=False) # Download button
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
submit_button.click(
|
| 221 |
upload_and_manage,
|
| 222 |
inputs=[file_input, language_input],
|
|
|
|
| 211 |
# post_output = gr.Textbox(label="Posting Status", interactive=False)
|
| 212 |
translated_output = gr.JSON(label="Video transcript")
|
| 213 |
processed_video_output = gr.File(label="Download Processed Video", interactive=False) # Download button
|
| 214 |
+
with gr.Column():
|
| 215 |
+
gr.Markdown("## Provide Your Feedback")
|
| 216 |
+
feedback_input = gr.Textbox(label="Your Feedback", placeholder="Enter your feedback here...", lines=3)
|
| 217 |
+
feedback_btn = gr.Button("Submit Feedback")
|
| 218 |
+
result_output = gr.Textbox(label="Submission Status", interactive=False)
|
| 219 |
+
|
| 220 |
submit_button.click(
|
| 221 |
upload_and_manage,
|
| 222 |
inputs=[file_input, language_input],
|