Chong-U Lim
commited on
Commit
•
e2a35fb
1
Parent(s):
48687d1
Formatting
Browse files
app.py
CHANGED
@@ -18,13 +18,13 @@ with gr.Blocks() as gradio_app:
|
|
18 |
gr.Markdown("## Restaurant Name Generator")
|
19 |
|
20 |
with gr.Row():
|
21 |
-
with gr.Column() as left:
|
22 |
inp_cuisine = gr.Dropdown(
|
23 |
["Indian", "Italian", "Mexican", "Arabic"],
|
24 |
label="Pick a cuisine",
|
25 |
)
|
26 |
|
27 |
-
with gr.Column(variant="panel") as right:
|
28 |
out_restaurant_name = gr.Markdown()
|
29 |
out_menu_items = gr.Markdown()
|
30 |
|
|
|
18 |
gr.Markdown("## Restaurant Name Generator")
|
19 |
|
20 |
with gr.Row():
|
21 |
+
with gr.Column(scale=1) as left:
|
22 |
inp_cuisine = gr.Dropdown(
|
23 |
["Indian", "Italian", "Mexican", "Arabic"],
|
24 |
label="Pick a cuisine",
|
25 |
)
|
26 |
|
27 |
+
with gr.Column(variant="panel", scale=4) as right:
|
28 |
out_restaurant_name = gr.Markdown()
|
29 |
out_menu_items = gr.Markdown()
|
30 |
|