rishiraj commited on
Commit
d1074e8
·
verified ·
1 Parent(s): 7758f57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
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
- section_dropdown = gr.Dropdown(["Experiences", "Communities", "Recommendations", "Conferences"], label="Select Information to Display")
24
  with gr.Column():
25
- info_display = gr.Textbox(label="Information")
 
 
 
 
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