Update app.py
Browse files
app.py
CHANGED
@@ -95,23 +95,6 @@ with gr.Blocks() as demo:
|
|
95 |
color_palette = gr.Radio(label="What color palette do you wear often?", choices=["Neutrals", "Bright Colors", "Pastels", "Dark Shades"])
|
96 |
everyday_style = gr.Radio(label="How would you describe your everyday style?", choices=["Relaxed", "Trendy", "Elegant", "Bold"])
|
97 |
|
98 |
-
# Additional fashion-related questions
|
99 |
-
fashion_questions = [
|
100 |
-
("What do you prioritize when choosing an outfit?", ["Comfort", "Style", "Affordability", "Brand"]),
|
101 |
-
("How often do you experiment with new trends?", ["Always", "Sometimes", "Rarely", "Never"]),
|
102 |
-
("What kind of accessories do you usually wear?", ["Watches", "Rings", "Necklaces", "Bracelets", "Earrings"]),
|
103 |
-
("Do you follow fashion trends?", ["Always", "Sometimes", "Never"]),
|
104 |
-
("How satisfied are you with your wardrobe?", ["Yes", "No"]),
|
105 |
-
("Do you consider your style unique?", ["Yes", "No"]),
|
106 |
-
("How confident do you feel in your style?", ["Very Confident", "Somewhat Confident", "Not Confident"]),
|
107 |
-
("Where do you look for fashion inspiration?", ["Social Media", "Fashion Magazines", "Friends", "Other"]),
|
108 |
-
("Do you have specific attire for special occasions?", ["Yes", "No"]),
|
109 |
-
("Do you wear gender-neutral clothing?", ["Yes", "No"])
|
110 |
-
]
|
111 |
-
|
112 |
-
for question, choices in fashion_questions:
|
113 |
-
gr.Radio(label=question, choices=choices)
|
114 |
-
|
115 |
# Chat functionality
|
116 |
chatbox = gr.Chatbot(type='messages')
|
117 |
user_input = gr.Textbox(label="Your Message", placeholder="Type your message here...")
|
|
|
95 |
color_palette = gr.Radio(label="What color palette do you wear often?", choices=["Neutrals", "Bright Colors", "Pastels", "Dark Shades"])
|
96 |
everyday_style = gr.Radio(label="How would you describe your everyday style?", choices=["Relaxed", "Trendy", "Elegant", "Bold"])
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
# Chat functionality
|
99 |
chatbox = gr.Chatbot(type='messages')
|
100 |
user_input = gr.Textbox(label="Your Message", placeholder="Type your message here...")
|