Pijush2023 commited on
Commit
6fa3d6f
·
verified ·
1 Parent(s): 9bacc62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -49
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
- def create_gradio_interface():
517
- def greet(name):
518
- return f"Hello {name}, welcome to the Gradio app!"
519
 
520
- def login_button_click():
521
- return "Login clicked! (Implement login functionality here)"
522
 
523
- with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
524
- gr.Markdown("<div style='text-align: right;'><button class='gr-button gr-button-primary' id='login-button'>Login with Google</button></div>")
525
- gr.Markdown(f"### Hello, User! Welcome to the Gradio App")
526
-
527
- name = gr.Textbox(label="Enter your name")
528
- greet_btn = gr.Button("Greet")
529
- output = gr.Textbox(label="Greeting")
530
- greet_btn.click(greet, inputs=name, outputs=output)
531
-
532
- chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
533
- choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
534
-
535
- gr.Markdown("<h1 style='color: red;'>Talk to RADAR</h1>", elem_id="voice-markdown")
536
- chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
537
- chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
538
- bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
539
- bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar!!!...", show_label=False), None, [chat_input])
540
- chatbot.like(print_like_dislike, None, None)
541
- clear_button = gr.Button("Clear")
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
- gr.Markdown("<h1 style='color: red;'>Map</h1>", elem_id="location-markdown")
548
- location_output = gr.HTML()
549
- bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
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
- image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
556
- image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=400, height=400)
557
- image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
558
- refresh_button = gr.Button("Refresh Images")
559
- refresh_button.click(fn=update_images, inputs=None, outputs=[image_output_1, image_output_2, image_output_3])
560
-
561
- login_button = gr.Button("Login with Google", elem_id="login-button")
562
- login_button.click(login_button_click, inputs=[], outputs=[])
 
 
563
 
564
- return demo
565
 
566
- def main(params=None):
567
- demo = create_gradio_interface()
568
- demo.launch()
 
 
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