Update app.py
Browse files
app.py
CHANGED
@@ -15,14 +15,15 @@ def show_info(section):
|
|
15 |
|
16 |
# Creating Gradio Interface
|
17 |
with gr.Blocks() as app:
|
18 |
-
gr.Markdown("## Rishiraj Acharya")
|
19 |
-
gr.Image("profile.png")
|
20 |
-
|
21 |
with gr.Row():
|
22 |
with gr.Column():
|
23 |
-
|
24 |
with gr.Column():
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
|
27 |
section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
|
28 |
|
|
|
15 |
|
16 |
# Creating Gradio Interface
|
17 |
with gr.Blocks() as app:
|
|
|
|
|
|
|
18 |
with gr.Row():
|
19 |
with gr.Column():
|
20 |
+
gr.Markdown("## Rishiraj Acharya")
|
21 |
with gr.Column():
|
22 |
+
gr.Image("profile.png")
|
23 |
+
|
24 |
+
with gr.Row():
|
25 |
+
section_dropdown = gr.Dropdown(["Experiences", "Communities", "Recommendations", "Conferences"], label="Select Information to Display")
|
26 |
+
info_display = gr.Textbox(label="Information")
|
27 |
|
28 |
section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
|
29 |
|