Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -565,10 +565,11 @@ with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
|
565 |
with gr.Row():
|
566 |
with gr.Column():
|
567 |
state = gr.State()
|
568 |
-
|
569 |
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
570 |
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
571 |
|
|
|
572 |
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
573 |
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
574 |
bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|
|
|
565 |
with gr.Row():
|
566 |
with gr.Column():
|
567 |
state = gr.State()
|
568 |
+
|
569 |
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
570 |
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
571 |
|
572 |
+
gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
|
573 |
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
574 |
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
575 |
bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|