Update app.py
Browse files
app.py
CHANGED
@@ -179,11 +179,11 @@ theme = gr.themes.Monochrome(
|
|
179 |
with gr.Blocks(theme=theme) as demo:
|
180 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
181 |
with gr.Row():
|
182 |
-
with gr.
|
183 |
gr.Markdown(topics) # Show the topics on the left side
|
184 |
gr.HTML(display_iframe()) # Embed the iframe on the left side
|
185 |
with gr.Row():
|
186 |
-
with gr.
|
187 |
question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
|
188 |
answer = gr.Textbox(label="CalmBot's Response", placeholder="CalmBot will respond here...", interactive=False, lines=17)
|
189 |
submit_button = gr.Button("Submit")
|
|
|
179 |
with gr.Blocks(theme=theme) as demo:
|
180 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
181 |
with gr.Row():
|
182 |
+
with gr.Row():
|
183 |
gr.Markdown(topics) # Show the topics on the left side
|
184 |
gr.HTML(display_iframe()) # Embed the iframe on the left side
|
185 |
with gr.Row():
|
186 |
+
with gr.Column():
|
187 |
question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
|
188 |
answer = gr.Textbox(label="CalmBot's Response", placeholder="CalmBot will respond here...", interactive=False, lines=17)
|
189 |
submit_button = gr.Button("Submit")
|