Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -513,59 +513,49 @@ def update_images():
|
|
513 |
image_3 = generate_image(hardcoded_prompt_3)
|
514 |
return image_1, image_2, image_3
|
515 |
|
516 |
-
|
517 |
-
def greet(name):
|
518 |
-
return f"Hello {name}, welcome to the Gradio app!"
|
519 |
|
520 |
-
|
521 |
-
return "Login clicked! (Implement login functionality here)"
|
522 |
|
523 |
-
with gr.
|
524 |
-
gr.
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
|
543 |
-
|
544 |
-
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
|
545 |
-
audio_input.stream(transcribe_function, inputs=[audio_input], outputs=[chat_input], api_name="SAMLOne_real_time")
|
546 |
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
weather_output = gr.HTML(value=fetch_local_weather())
|
552 |
-
news_output = gr.HTML(value=fetch_local_news())
|
553 |
-
events_output = gr.HTML(value=fetch_local_events())
|
554 |
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
|
|
|
|
563 |
|
564 |
-
return demo
|
565 |
|
566 |
-
|
567 |
-
|
568 |
-
|
|
|
|
|
569 |
|
570 |
-
if __name__ == "__main__":
|
571 |
-
main()
|
|
|
513 |
image_3 = generate_image(hardcoded_prompt_3)
|
514 |
return image_1, image_2, image_3
|
515 |
|
516 |
+
|
|
|
|
|
517 |
|
518 |
+
with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
|
|
519 |
|
520 |
+
with gr.Row():
|
521 |
+
with gr.Column():
|
522 |
+
state = gr.State()
|
523 |
+
|
524 |
+
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
525 |
+
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
526 |
+
|
527 |
+
gr.Markdown("<h1 style='color: red;'>Talk to RADAR</h1>", elem_id="voice-markdown")
|
528 |
+
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
529 |
+
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
530 |
+
bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|
531 |
+
bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar!!!...", show_label=False), None, [chat_input])
|
532 |
+
chatbot.like(print_like_dislike, None, None)
|
533 |
+
clear_button = gr.Button("Clear")
|
534 |
+
clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
|
535 |
+
|
536 |
+
|
537 |
+
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
|
538 |
+
audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
|
|
|
|
|
|
|
|
|
539 |
|
540 |
+
gr.Markdown("<h1 style='color: red;'>Map</h1>", elem_id="location-markdown")
|
541 |
+
location_output = gr.HTML()
|
542 |
+
bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
|
|
|
|
|
|
|
|
|
543 |
|
544 |
+
with gr.Column():
|
545 |
+
weather_output = gr.HTML(value=fetch_local_weather())
|
546 |
+
news_output = gr.HTML(value=fetch_local_news())
|
547 |
+
news_output = gr.HTML(value=fetch_local_events())
|
548 |
+
|
549 |
+
with gr.Column():
|
550 |
+
|
551 |
+
image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
|
552 |
+
image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=400, height=400)
|
553 |
+
image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
|
554 |
|
|
|
555 |
|
556 |
+
refresh_button = gr.Button("Refresh Images")
|
557 |
+
refresh_button.click(fn=update_images, inputs=None, outputs=[image_output_1, image_output_2, image_output_3])
|
558 |
+
|
559 |
+
demo.queue()
|
560 |
+
demo.launch(share=True)
|
561 |
|
|
|
|