Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -534,10 +534,19 @@ with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
|
| 534 |
|
| 535 |
with gr.Column(scale=5):
|
| 536 |
news_output = gr.HTML(value=fetch_local_news())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 537 |
|
| 538 |
def setup_ui():
|
| 539 |
state = gr.State()
|
| 540 |
with gr.Row():
|
|
|
|
|
|
|
|
|
|
|
|
|
| 541 |
with gr.Column():
|
| 542 |
gr.Markdown("<h1>Choose the prompt</h1>", elem_id="prompt-markdown")
|
| 543 |
|
|
|
|
| 534 |
|
| 535 |
with gr.Column(scale=5):
|
| 536 |
news_output = gr.HTML(value=fetch_local_news())
|
| 537 |
+
|
| 538 |
+
with gr.Column():
|
| 539 |
+
gr.Markdown("<h1>Local Events</h1>", elem_id="events-markdown")
|
| 540 |
+
|
| 541 |
+
news_output = gr.HTML(value=fetch_local_events())
|
| 542 |
|
| 543 |
def setup_ui():
|
| 544 |
state = gr.State()
|
| 545 |
with gr.Row():
|
| 546 |
+
with gr.Column():
|
| 547 |
+
chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
|
| 548 |
+
|
| 549 |
+
|
| 550 |
with gr.Column():
|
| 551 |
gr.Markdown("<h1>Choose the prompt</h1>", elem_id="prompt-markdown")
|
| 552 |
|