cindywqng commited on
Commit
9380c82
·
verified ·
1 Parent(s): aa0ba9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -149,10 +149,10 @@ topics = """
149
  # Setup the Gradio Blocks interface with custom layout components
150
  with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
151
  gr.Markdown(welcome_message) # Display the formatted welcome message
152
- with gr.Row():
153
  with gr.Column():
154
  gr.Markdown(topics) # Show the topics on the left side
155
- with gr.Row():
156
  with gr.Column():
157
  question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
158
  answer = gr.Textbox(label="CalmConnect's Response", placeholder="CalmConnect will respond here...", interactive=False, lines=10)
 
149
  # Setup the Gradio Blocks interface with custom layout components
150
  with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
151
  gr.Markdown(welcome_message) # Display the formatted welcome message
152
+ with gr.Column():
153
  with gr.Column():
154
  gr.Markdown(topics) # Show the topics on the left side
155
+ with gr.Column():
156
  with gr.Column():
157
  question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
158
  answer = gr.Textbox(label="CalmConnect's Response", placeholder="CalmConnect will respond here...", interactive=False, lines=10)