sophcheng commited on
Commit
c244248
·
verified ·
1 Parent(s): 2daef3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -174,15 +174,16 @@ with gr.Blocks(theme=theme) as demo:
174
  with gr.Column():
175
  gr.Image("ally.png", container = False, show_share_button = False, show_download_button = False, label="output", show_label=True, elem_id="output_image", scale=0, width=500)
176
  gr.Markdown(welcome_message) # Display the formatted welcome message
177
-
178
- with gr.Row():
179
- with gr.Column():
180
- with gr.Row():
181
- with gr.Column():
182
- gr.Markdown(topicList)
183
  with gr.Row(equal_height=True):
184
  gr.Markdown(topics1) # Show the topics on the left side
185
  gr.Markdown(topics2)
 
 
 
 
186
  question = gr.Textbox(label="Your question:", placeholder="What do you want to ask about?")
187
  submit_button = gr.Button("Submit!")
188
  answer = gr.Textbox(label="AI-nswer:", placeholder="AI-nstein will respond here...", interactive=False, lines=10)
 
174
  with gr.Column():
175
  gr.Image("ally.png", container = False, show_share_button = False, show_download_button = False, label="output", show_label=True, elem_id="output_image", scale=0, width=500)
176
  gr.Markdown(welcome_message) # Display the formatted welcome message
177
+ with gr.Row():
178
+ with gr.Column():
179
+ gr.Markdown(topicList)
 
 
 
180
  with gr.Row(equal_height=True):
181
  gr.Markdown(topics1) # Show the topics on the left side
182
  gr.Markdown(topics2)
183
+
184
+ with gr.Row():
185
+ with gr.Column():
186
+ gr.Markdown(" ")
187
  question = gr.Textbox(label="Your question:", placeholder="What do you want to ask about?")
188
  submit_button = gr.Button("Submit!")
189
  answer = gr.Textbox(label="AI-nswer:", placeholder="AI-nstein will respond here...", interactive=False, lines=10)