Update app.py
Browse files
app.py
CHANGED
@@ -243,7 +243,7 @@ def chatbot_response(youtube_url):
|
|
243 |
# Gradio Blocks UI
|
244 |
with gr.Blocks(theme=theme) as demo:
|
245 |
gr.Markdown("# YouTube Audio Downloader Chatbot")
|
246 |
-
with gr.Row():
|
247 |
youtube_input = gr.Textbox(label="Enter YouTube URL", placeholder="https://www.youtube.com/watch?v=...")
|
248 |
submit_button = gr.Button("Download and Display")
|
249 |
|
|
|
243 |
# Gradio Blocks UI
|
244 |
with gr.Blocks(theme=theme) as demo:
|
245 |
gr.Markdown("# YouTube Audio Downloader Chatbot")
|
246 |
+
with gr.Row(equal_height=True):
|
247 |
youtube_input = gr.Textbox(label="Enter YouTube URL", placeholder="https://www.youtube.com/watch?v=...")
|
248 |
submit_button = gr.Button("Download and Display")
|
249 |
|