Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -562,28 +562,22 @@ hardcoded_prompt_1="Give a high quality photograph of a great looking red 2026 t
|
|
562 |
hardcoded_prompt_2="A vibrant and dynamic football game scene in the style of Peter Paul Rubens, showcasing the intense match between Alabama and Nebraska. The players are depicted with the dramatic, muscular physiques and expressive faces typical of Rubens' style. The Alabama team is wearing their iconic crimson and white uniforms, while the Nebraska team is in their classic red and white attire. The scene is filled with action, with players in mid-motion, tackling, running, and catching the ball. The background features a grand stadium filled with cheering fans, banners, and the natural landscape in the distance. The colors are rich and vibrant, with a strong use of light and shadow to create depth and drama. The overall atmosphere captures the intensity and excitement of the game, infused with the grandeur and dynamism characteristic of Rubens' work."
|
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 |
|
567 |
css = """
|
568 |
-
.
|
569 |
color: red;
|
570 |
}
|
571 |
-
|
572 |
-
.choice-block .gradio-radio {
|
573 |
-
border: 2px solid red;
|
574 |
-
padding: 10px;
|
575 |
-
border-radius: 5px;
|
576 |
-
}
|
577 |
"""
|
578 |
|
579 |
-
with gr.Blocks(theme='Pijush2023/scikit-learn-pijush'
|
580 |
|
581 |
with gr.Row():
|
582 |
with gr.Column():
|
583 |
state = gr.State()
|
584 |
|
585 |
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
586 |
-
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
|
587 |
|
588 |
gr.Markdown("<h1 style='color: red;'>Ask Radar !!!</h1>", elem_id="query-markdown")
|
589 |
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|
|
|
562 |
hardcoded_prompt_2="A vibrant and dynamic football game scene in the style of Peter Paul Rubens, showcasing the intense match between Alabama and Nebraska. The players are depicted with the dramatic, muscular physiques and expressive faces typical of Rubens' style. The Alabama team is wearing their iconic crimson and white uniforms, while the Nebraska team is in their classic red and white attire. The scene is filled with action, with players in mid-motion, tackling, running, and catching the ball. The background features a grand stadium filled with cheering fans, banners, and the natural landscape in the distance. The colors are rich and vibrant, with a strong use of light and shadow to create depth and drama. The overall atmosphere captures the intensity and excitement of the game, infused with the grandeur and dynamism characteristic of Rubens' work."
|
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 |
+
#Radio Buttom Label
|
566 |
|
567 |
css = """
|
568 |
+
.gradio-container label {
|
569 |
color: red;
|
570 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
"""
|
572 |
|
573 |
+
with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
574 |
|
575 |
with gr.Row():
|
576 |
with gr.Column():
|
577 |
state = gr.State()
|
578 |
|
579 |
chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
|
580 |
+
choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational",css=css)
|
581 |
|
582 |
gr.Markdown("<h1 style='color: red;'>Ask Radar !!!</h1>", elem_id="query-markdown")
|
583 |
chat_input = gr.Textbox(show_copy_button=True, interactive=True, show_label=False, label="ASK Radar !!!")
|