Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -563,7 +563,7 @@ hardcoded_prompt_2="A vibrant and dynamic football game scene in the style of Pe
|
|
563 |
hardcoded_prompt_3 = "Create a high-energy scene of a DJ performing on a large stage with vibrant lights, colorful lasers, a lively dancing crowd, and various electronic equipment in the background."
|
564 |
|
565 |
|
566 |
-
with gr.Blocks(theme='
|
567 |
with gr.Row():
|
568 |
with gr.Column():
|
569 |
state = gr.State()
|
@@ -571,7 +571,7 @@ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
|
571 |
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
572 |
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
573 |
|
574 |
-
gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
|
575 |
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
576 |
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
577 |
bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|
@@ -580,28 +580,25 @@ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
|
580 |
clear_button = gr.Button("Clear")
|
581 |
clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
|
582 |
|
583 |
-
|
584 |
-
gr.Markdown("<h1>Talk to RADAR</h1>", elem_id="voice-markdown")
|
585 |
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
|
586 |
audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
|
587 |
|
588 |
-
|
589 |
-
gr.Markdown("<h1>Map</h1>", elem_id="location-markdown")
|
590 |
location_output = gr.HTML()
|
591 |
bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
|
592 |
|
593 |
with gr.Column():
|
594 |
weather_output = gr.HTML(value=fetch_local_weather())
|
595 |
news_output = gr.HTML(value=fetch_local_news())
|
596 |
-
|
597 |
news_output = gr.HTML(value=fetch_local_events())
|
598 |
|
599 |
with gr.Column():
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
|
606 |
demo.queue()
|
607 |
demo.launch(share=True)
|
|
|
563 |
hardcoded_prompt_3 = "Create a high-energy scene of a DJ performing on a large stage with vibrant lights, colorful lasers, a lively dancing crowd, and various electronic equipment in the background."
|
564 |
|
565 |
|
566 |
+
with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
567 |
with gr.Row():
|
568 |
with gr.Column():
|
569 |
state = gr.State()
|
|
|
571 |
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
572 |
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
573 |
|
574 |
+
gr.Markdown("<h1 style='color: red;'>Ask Radar !!!</h1>", elem_id="query-markdown")
|
575 |
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
576 |
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
577 |
bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|
|
|
580 |
clear_button = gr.Button("Clear")
|
581 |
clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
|
582 |
|
583 |
+
gr.Markdown("<h1 style='color: red;'>Talk to RADAR</h1>", elem_id="voice-markdown")
|
|
|
584 |
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
|
585 |
audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
|
586 |
|
587 |
+
gr.Markdown("<h1 style='color: red;'>Map</h1>", elem_id="location-markdown")
|
|
|
588 |
location_output = gr.HTML()
|
589 |
bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
|
590 |
|
591 |
with gr.Column():
|
592 |
weather_output = gr.HTML(value=fetch_local_weather())
|
593 |
news_output = gr.HTML(value=fetch_local_news())
|
594 |
+
gr.Markdown("<h1 style='color: red;'>Suggested Events</h1>", elem_id="events-markdown")
|
595 |
news_output = gr.HTML(value=fetch_local_events())
|
596 |
|
597 |
with gr.Column():
|
598 |
+
gr.Markdown("<h1 style='color: red;'>Sponsored</h1>", elem_id="image-markdown")
|
599 |
+
image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
|
600 |
+
image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=400, height=400)
|
601 |
+
image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
|
|
|
602 |
|
603 |
demo.queue()
|
604 |
demo.launch(share=True)
|