Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -555,71 +555,137 @@ def generate_image(prompt):
|
|
555 |
return image
|
556 |
|
557 |
# Hardcoded prompt for image generation
|
558 |
-
hardcoded_prompt_1 = "Useing The top events like 'Summer Art Festival'and Date - 06/19/2024 ,Weather-Sunny Bright Day.Create Highly Visually Compelling High Resolution and High Quality Photographics Advatizement for 'Toyota'"
|
|
|
559 |
hardcoded_prompt_2 = "Create a vibrant poster of Nebraska with beautiful weather, featuring picturesque landscapes, clear skies, and the word 'Nebraska' prominently displayed."
|
560 |
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."
|
561 |
|
562 |
|
563 |
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
566 |
with gr.Row():
|
567 |
chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
|
568 |
with gr.Column():
|
569 |
weather_output = gr.HTML(value=fetch_local_weather())
|
570 |
|
571 |
-
|
572 |
gr.Markdown("<h1>Sponsored</h1>", elem_id="image-markdown")
|
573 |
image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=300, height=300)
|
574 |
image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=300, height=300)
|
575 |
image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=300, height=300)
|
576 |
|
577 |
|
578 |
-
|
579 |
|
580 |
-
|
581 |
-
|
582 |
-
with gr.
|
583 |
-
|
584 |
-
|
585 |
-
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
586 |
-
with gr.Column(): # Larger scale for the right column
|
587 |
-
gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
|
588 |
-
|
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 |
-
|
598 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
599 |
|
600 |
-
|
601 |
-
|
|
|
|
|
|
|
602 |
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
# with gr.Column():
|
611 |
-
# gr.Markdown("<h1>Listen to the audio</h1>", elem_id="audio-markdown")
|
612 |
-
# audio_output = gr.Audio()
|
613 |
-
# bot_msg_audio = bot_msg.then(lambda history: generate_audio_elevenlabs(history[-1][1]), chatbot, audio_output)
|
614 |
-
with gr.Row():
|
615 |
-
|
616 |
-
with gr.Column():
|
617 |
-
gr.Markdown("<h1>Suggested Events</h1>", elem_id="events-markdown")
|
618 |
-
news_output = gr.HTML(value=fetch_local_events())
|
619 |
-
|
620 |
-
with gr.Column():
|
621 |
-
news_output = gr.HTML(value=fetch_local_news())
|
622 |
-
setup_ui()
|
623 |
|
624 |
demo.queue()
|
625 |
-
demo.launch(share=True)
|
|
|
|
|
|
|
|
555 |
return image
|
556 |
|
557 |
# Hardcoded prompt for image generation
|
558 |
+
# hardcoded_prompt_1 = "Useing The top events like 'Summer Art Festival'and Date - 06/19/2024 ,Weather-Sunny Bright Day.Create Highly Visually Compelling High Resolution and High Quality Photographics Advatizement for 'Toyota'"
|
559 |
+
hardcoded_prompt_1="Create an advertisement for Toyota featuring a summer arts festival in Omaha, Nebraska, with lively festival scenes, colorful decorations, and Toyota cars prominently displayed."
|
560 |
hardcoded_prompt_2 = "Create a vibrant poster of Nebraska with beautiful weather, featuring picturesque landscapes, clear skies, and the word 'Nebraska' prominently displayed."
|
561 |
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."
|
562 |
|
563 |
|
564 |
|
565 |
|
566 |
+
# with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
567 |
+
# with gr.Row():
|
568 |
+
# chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
|
569 |
+
# with gr.Column():
|
570 |
+
# weather_output = gr.HTML(value=fetch_local_weather())
|
571 |
+
|
572 |
+
# with gr.Column():
|
573 |
+
# gr.Markdown("<h1>Sponsored</h1>", elem_id="image-markdown")
|
574 |
+
# image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=300, height=300)
|
575 |
+
# image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=300, height=300)
|
576 |
+
# image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=300, height=300)
|
577 |
+
|
578 |
+
|
579 |
+
|
580 |
+
|
581 |
+
# def setup_ui():
|
582 |
+
# state = gr.State()
|
583 |
+
# with gr.Row():
|
584 |
+
# with gr.Column():
|
585 |
+
# gr.Markdown("<h1>Select Style</h1>", elem_id="prompt-markdown")
|
586 |
+
# choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
587 |
+
# with gr.Column(): # Larger scale for the right column
|
588 |
+
# gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
|
589 |
+
|
590 |
+
# chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
591 |
+
# chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
592 |
+
# bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|
593 |
+
# bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar!!!...", show_label=False), None, [chat_input])
|
594 |
+
# chatbot.like(print_like_dislike, None, None)
|
595 |
+
# clear_button = gr.Button("Clear")
|
596 |
+
# clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
|
597 |
+
|
598 |
+
# with gr.Column(): # Smaller scale for the left column
|
599 |
+
# gr.Markdown("<h1>Talk to RADAR</h1>", elem_id="voice-markdown")
|
600 |
+
|
601 |
+
# audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
|
602 |
+
# audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
|
603 |
+
|
604 |
+
# with gr.Row():
|
605 |
+
# with gr.Column():
|
606 |
+
# gr.Markdown("<h1>Map</h1>", elem_id="location-markdown")
|
607 |
+
# location_output = gr.HTML()
|
608 |
+
# bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
|
609 |
+
|
610 |
+
|
611 |
+
# # with gr.Column():
|
612 |
+
# # gr.Markdown("<h1>Listen to the audio</h1>", elem_id="audio-markdown")
|
613 |
+
# # audio_output = gr.Audio()
|
614 |
+
# # bot_msg_audio = bot_msg.then(lambda history: generate_audio_elevenlabs(history[-1][1]), chatbot, audio_output)
|
615 |
+
# with gr.Row():
|
616 |
+
|
617 |
+
# with gr.Column():
|
618 |
+
# gr.Markdown("<h1>Suggested Events</h1>", elem_id="events-markdown")
|
619 |
+
# news_output = gr.HTML(value=fetch_local_events())
|
620 |
+
|
621 |
+
# with gr.Column():
|
622 |
+
# news_output = gr.HTML(value=fetch_local_news())
|
623 |
+
# setup_ui()
|
624 |
+
|
625 |
+
# demo.queue()
|
626 |
+
# demo.launch(share=True)
|
627 |
+
|
628 |
+
|
629 |
+
|
630 |
+
|
631 |
+
|
632 |
+
|
633 |
+
|
634 |
+
|
635 |
+
|
636 |
+
|
637 |
with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
638 |
with gr.Row():
|
639 |
chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
|
640 |
with gr.Column():
|
641 |
weather_output = gr.HTML(value=fetch_local_weather())
|
642 |
|
643 |
+
with gr.Column():
|
644 |
gr.Markdown("<h1>Sponsored</h1>", elem_id="image-markdown")
|
645 |
image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=300, height=300)
|
646 |
image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=300, height=300)
|
647 |
image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=300, height=300)
|
648 |
|
649 |
|
650 |
+
|
651 |
|
652 |
+
state = gr.State()
|
653 |
+
with gr.Row():
|
654 |
+
with gr.Column():
|
655 |
+
gr.Markdown("<h1>Select Style</h1>", elem_id="prompt-markdown")
|
656 |
+
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
|
658 |
+
with gr.Column(): # Larger scale for the right column
|
659 |
+
gr.Markdown("<h1>Ask Radar !!!</h1>", elem_id="query-markdown")
|
660 |
+
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
661 |
+
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
662 |
+
bot_msg = chat_msg.then(bot, [chatbot, choice], [chatbot, gr.Audio(interactive=False, autoplay=True)])
|
663 |
+
bot_msg.then(lambda: gr.Textbox(value="", interactive=True, placeholder="Ask Radar!!!...", show_label=False), None, [chat_input])
|
664 |
+
chatbot.like(print_like_dislike, None, None)
|
665 |
+
clear_button = gr.Button("Clear")
|
666 |
+
clear_button.click(fn=clear_textbox, inputs=None, outputs=chat_input)
|
667 |
+
|
668 |
+
with gr.Column(): # Smaller scale for the left column
|
669 |
+
gr.Markdown("<h1>Talk to RADAR</h1>", elem_id="voice-markdown")
|
670 |
+
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy')
|
671 |
+
audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="SAMLOne_real_time")
|
672 |
|
673 |
+
with gr.Row():
|
674 |
+
with gr.Column():
|
675 |
+
gr.Markdown("<h1>Map</h1>", elem_id="location-markdown")
|
676 |
+
location_output = gr.HTML()
|
677 |
+
bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
|
678 |
|
679 |
+
with gr.Row():
|
680 |
+
with gr.Column():
|
681 |
+
gr.Markdown("<h1>Suggested Events</h1>", elem_id="events-markdown")
|
682 |
+
news_output = gr.HTML(value=fetch_local_events())
|
683 |
+
|
684 |
+
with gr.Column():
|
685 |
+
news_output = gr.HTML(value=fetch_local_news())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
|
687 |
demo.queue()
|
688 |
+
demo.launch(share=True)
|
689 |
+
|
690 |
+
|
691 |
+
|