Update app.py
Browse files
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.
|
153 |
with gr.Column():
|
154 |
gr.Markdown(topics) # Show the topics on the left side
|
155 |
-
with gr.
|
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)
|