Pijush2023 commited on
Commit
0c06c69
·
verified ·
1 Parent(s): 1c96581

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -119
app.py CHANGED
@@ -563,49 +563,56 @@ hardcoded_prompt_3 = "Create a high-energy scene of a DJ performing on a large s
563
 
564
 
565
 
566
- with gr.Blocks(theme='rawrsor1/Everforest', css=".compact {margin: 0 10px;} .full-width {width: 100%;}") as demo:
567
- with gr.Row().style(equal_height=True):
568
  with gr.Column(scale=2):
569
- chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False, label="Chatbot").style(container=False)
 
 
 
 
570
  with gr.Column(scale=1):
571
- gr.Markdown("<h2>Weather</h2>", elem_id="weather-section", css_class="compact")
572
- weather_output = gr.HTML(value=fetch_local_weather(), css_class="compact")
573
- gr.Markdown("<h2>Sponsored</h2>", elem_id="sponsored-section", css_class="compact")
574
- image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=200, height=200, css_class="compact")
575
- image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=200, height=200, css_class="compact")
576
- image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=200, height=200, css_class="compact")
577
 
578
  def setup_ui():
579
  state = gr.State()
580
- with gr.Row().style(equal_height=True):
581
  with gr.Column(scale=1):
582
- gr.Markdown("<h2>Select Style</h2>", elem_id="prompt-section", css_class="compact")
583
- choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational", css_class="compact")
584
- with gr.Column(scale=2):
585
- gr.Markdown("<h2>Ask Radar</h2>", elem_id="query-section", css_class="compact")
586
- chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar", css_class="compact")
 
587
  chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
588
  bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
589
- bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar...", show_label=False, css_class="compact"), None, [chat_input])
590
  chatbot.like(print_like_dislike, None, None)
591
- clear_button = gr.Button("Clear", css_class="compact")
592
  clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
 
593
  with gr.Column(scale=1):
594
- gr.Markdown("<h2>Talk to Radar</h2>", elem_id="voice-section", css_class="compact")
595
- audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy', css_class="compact")
596
  audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
597
 
598
- with gr.Row().style(equal_height=True):
599
  with gr.Column(scale=1):
600
- gr.Markdown("<h2>Map</h2>", elem_id="map-section", css_class="compact")
601
- location_output = gr.HTML(css_class="compact")
602
  bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
 
 
603
  with gr.Column(scale=1):
604
- gr.Markdown("<h2>Suggested Events</h2>", elem_id="events-section", css_class="compact")
605
- events_output = gr.HTML(value=fetch_local_events(), css_class="compact")
 
606
  with gr.Column(scale=1):
607
- gr.Markdown("<h2>Omaha Today Headlines</h2>", elem_id="news-section", css_class="compact")
608
- news_output = gr.HTML(value=fetch_local_news(), css_class="compact")
609
 
610
  setup_ui()
611
 
@@ -620,96 +627,3 @@ demo.launch(share=True)
620
 
621
 
622
 
623
-
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
-
632
-
633
-
634
-
635
-
636
-
637
-
638
-
639
-
640
-
641
-
642
-
643
-
644
-
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
-
653
- # with gr.Blocks(theme='rawrsor1/Everforest') as demo:
654
- # with gr.Row():
655
- # with gr.Column(scale=2):
656
- # chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
657
-
658
- # with gr.Column(scale=1):
659
- # gr.Markdown("<h1>Weather & Sponsored</h1>", elem_id="weather-sponsored-section")
660
- # weather_output = gr.HTML(value=fetch_local_weather())
661
- # gr.Markdown("<h2>Sponsored</h2>", elem_id="image-markdown")
662
- # image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=300, height=300)
663
- # image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=300, height=300)
664
- # image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=300, height=300)
665
-
666
- # def setup_ui():
667
- # state = gr.State()
668
- # with gr.Row():
669
- # with gr.Column(scale=1):
670
- # gr.Markdown("<h1>Select Style</h1>", elem_id="prompt-markdown")
671
- # choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
672
-
673
- # with gr.Column(scale=2): # Larger scale for the right column
674
- # gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
675
- # chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
676
- # chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
677
- # bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
678
- # bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar!!!...", show_label=False), None, [chat_input])
679
- # chatbot.like(print_like_dislike, None, None)
680
- # clear_button = gr.Button("Clear")
681
- # clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
682
-
683
- # with gr.Column(scale=1):
684
- # gr.Markdown("<h1>Talk to RADAR</h1>", elem_id="voice-markdown")
685
- # audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
686
- # audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
687
-
688
- # with gr.Row():
689
- # with gr.Column(scale=1):
690
- # gr.Markdown("<h1>Map</h1>", elem_id="location-markdown")
691
- # location_output = gr.HTML()
692
- # bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
693
-
694
- # with gr.Row():
695
- # with gr.Column(scale=1):
696
- # gr.Markdown("<h1>Suggested Events</h1>", elem_id="events-markdown")
697
- # events_output = gr.HTML(value=fetch_local_events())
698
-
699
- # with gr.Column(scale=1):
700
- # gr.Markdown("<h1>Omaha Today Headlines</h1>", elem_id="news-markdown")
701
- # news_output = gr.HTML(value=fetch_local_news())
702
-
703
- # setup_ui()
704
-
705
- # demo.queue()
706
- # demo.launch(share=True)
707
-
708
-
709
-
710
-
711
-
712
-
713
-
714
-
715
-
 
563
 
564
 
565
 
566
+ with gr.Blocks(theme='rawrsor1/Everforest') as demo:
567
+ with gr.Row():
568
  with gr.Column(scale=2):
569
+ chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
570
+
571
+ with gr.Column(scale=1):
572
+ gr.Markdown("<h1>Weather</h1>", elem_id="weather-sponsored-section")
573
+ weather_output = gr.HTML(value=fetch_local_weather())
574
  with gr.Column(scale=1):
575
+ gr.Markdown("<h2>Sponsored</h2>", elem_id="image-markdown")
576
+ image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=300, height=300)
577
+ image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=300, height=300)
578
+ image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=300, height=300)
 
 
579
 
580
  def setup_ui():
581
  state = gr.State()
582
+ with gr.Row():
583
  with gr.Column(scale=1):
584
+ gr.Markdown("<h1>Select Style</h1>", elem_id="prompt-markdown")
585
+ choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
586
+
587
+ with gr.Column(scale=2): # Larger scale for the right column
588
+ gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
589
+ chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
590
  chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
591
  bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
592
+ bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar!!!...", show_label=False), None, [chat_input])
593
  chatbot.like(print_like_dislike, None, None)
594
+ clear_button = gr.Button("Clear")
595
  clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
596
+
597
  with gr.Column(scale=1):
598
+ gr.Markdown("<h1>Talk to RADAR</h1>", elem_id="voice-markdown")
599
+ audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
600
  audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
601
 
602
+ with gr.Row():
603
  with gr.Column(scale=1):
604
+ gr.Markdown("<h1>Map</h1>", elem_id="location-markdown")
605
+ location_output = gr.HTML()
606
  bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
607
+
608
+ with gr.Row():
609
  with gr.Column(scale=1):
610
+ gr.Markdown("<h1>Suggested Events</h1>", elem_id="events-markdown")
611
+ events_output = gr.HTML(value=fetch_local_events())
612
+
613
  with gr.Column(scale=1):
614
+ gr.Markdown("<h1>Omaha Today Headlines</h1>", elem_id="news-markdown")
615
+ news_output = gr.HTML(value=fetch_local_news())
616
 
617
  setup_ui()
618
 
 
627
 
628
 
629