Commit
·
4d5623e
1
Parent(s):
43b8920
Update app.py
Browse files
app.py
CHANGED
@@ -5,10 +5,13 @@ def update_fn(val):
|
|
5 |
|
6 |
with gr.Blocks() as demo:
|
7 |
gr.Markdown(
|
|
|
|
|
|
|
|
|
8 |
inp = gr.Dropdown(label="Taxonomic Heirarchy", choices=["Alex", "Bert"])
|
9 |
out = gr.Dropdown(label="Name", interactive=True)
|
10 |
inp.change(update_fn, inp, out)
|
11 |
-
)
|
12 |
|
13 |
|
14 |
demo.launch()
|
|
|
5 |
|
6 |
with gr.Blocks() as demo:
|
7 |
gr.Markdown(
|
8 |
+
"""
|
9 |
+
# Hello World!
|
10 |
+
Start typing below to see the output.
|
11 |
+
""")
|
12 |
inp = gr.Dropdown(label="Taxonomic Heirarchy", choices=["Alex", "Bert"])
|
13 |
out = gr.Dropdown(label="Name", interactive=True)
|
14 |
inp.change(update_fn, inp, out)
|
|
|
15 |
|
16 |
|
17 |
demo.launch()
|