Spaces:
Runtime error
Runtime error
Commit
·
2f7ab8a
1
Parent(s):
5356b4e
Update app.py
Browse files
app.py
CHANGED
@@ -74,10 +74,10 @@ with block:
|
|
74 |
title = gr.Label(label="Video Title")
|
75 |
with gr.Row().style(equal_height=True):
|
76 |
img = gr.Image(label="Thumbnail")
|
77 |
-
text = gr.Textbox(label="Transcription", placeholder="Transcription Output", lines=10)
|
78 |
with gr.Row().style(equal_height=True):
|
79 |
-
summary = gr.Textbox(label="Summary", placeholder="Summary Output", lines=5)
|
80 |
-
keywords = gr.Textbox(label="Keywords", placeholder="Keywords Output", lines=5)
|
81 |
with gr.Row().style(equal_height=True):
|
82 |
clear_btn = gr.ClearButton()
|
83 |
btn = gr.Button("Get video insights") # Updated button label
|
|
|
74 |
title = gr.Label(label="Video Title")
|
75 |
with gr.Row().style(equal_height=True):
|
76 |
img = gr.Image(label="Thumbnail")
|
77 |
+
text = gr.Textbox(label="Transcription", placeholder="Transcription Output", lines=10).style(show_copy_button=True, container=False)
|
78 |
with gr.Row().style(equal_height=True):
|
79 |
+
summary = gr.Textbox(label="Summary", placeholder="Summary Output", lines=5).style(show_copy_button=True, container=False)
|
80 |
+
keywords = gr.Textbox(label="Keywords", placeholder="Keywords Output", lines=5).style(show_copy_button=True, container=False)
|
81 |
with gr.Row().style(equal_height=True):
|
82 |
clear_btn = gr.ClearButton()
|
83 |
btn = gr.Button("Get video insights") # Updated button label
|