ans123 commited on
Commit
31b863d
·
verified ·
1 Parent(s): de2f5da

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +185 -0
app.py ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import pandas as pd
3
+ from groq import Groq
4
+
5
+ # Initialize the Groq client with your API key
6
+ client = Groq(api_key="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")
7
+
8
+ # Define the system message for the model
9
+ system_message = {
10
+ "role": "system",
11
+ "content": "You are an experienced Fashion designer who starts conversation with proper greet, giving valuable and catchy fashion advices and suggestions, stays to the point and precise, asks questions only if the user have any concern over your provided suggestions, taking inputs like name, age, gender, location, ethnicity, height, weight"
12
+ }
13
+
14
+ # Function to reset the chat
15
+ def reset_chat():
16
+ return [], "New Chat"
17
+
18
+ # Function to handle the questionnaire submission
19
+ def submit_questionnaire(name, age, location, gender, ethnicity, height, weight,
20
+ style_preference, color_palette, everyday_style,
21
+ preferred_prints, season_preference, outfit_priority,
22
+ experiment_with_trends, accessories, fit_preference,
23
+ material_preference, top_preference, bottom_preference,
24
+ outerwear_preference, footwear_preference, dress_frequency,
25
+ layering_preference, jeans_fit, formal_wear_frequency,
26
+ sportswear_preference, party_outfit, confidence_in_style,
27
+ follow_fashion_trends, look_for_inspiration,
28
+ wardrobe_satisfaction, unique_style, outfit_struggle,
29
+ fashion_preference, gender_neutral_clothing,
30
+ special_occasion_attire, trendsetter,
31
+ ai_usefulness, trust_in_ai, ai_preference,
32
+ ai_usage_frequency, ai_match_preferences,
33
+ ai_recommendation, ai_understanding_style,
34
+ more_personalized_recommendations, event_suggestions,
35
+ ai_improvements):
36
+
37
+ # Store questionnaire responses in a DataFrame
38
+ questionnaire_data = {
39
+ "Name": name,
40
+ "Age": age,
41
+ "Location": location,
42
+ "Gender": gender,
43
+ "Ethnicity": ethnicity,
44
+ "Height": height,
45
+ "Weight": weight,
46
+ "Style Preference": style_preference,
47
+ "Color Palette": color_palette,
48
+ "Everyday Style": everyday_style,
49
+ "Preferred Prints": preferred_prints,
50
+ "Season Preference": season_preference,
51
+ "Outfit Priority": outfit_priority,
52
+ "Experiment with Trends": experiment_with_trends,
53
+ "Accessories": accessories,
54
+ "Fit Preference": fit_preference,
55
+ "Material Preference": material_preference,
56
+ "Top Preference": top_preference,
57
+ "Bottom Preference": bottom_preference,
58
+ "Outerwear Preference": outerwear_preference,
59
+ "Footwear Preference": footwear_preference,
60
+ "Dress Frequency": dress_frequency,
61
+ "Layering Preference": layering_preference,
62
+ "Jeans Fit": jeans_fit,
63
+ "Formal Wear Frequency": formal_wear_frequency,
64
+ "Sportswear Preference": sportswear_preference,
65
+ "Party Outfit": party_outfit,
66
+ "Confidence in Style": confidence_in_style,
67
+ "Follow Fashion Trends": follow_fashion_trends,
68
+ "Look for Inspiration": look_for_inspiration,
69
+ "Wardrobe Satisfaction": wardrobe_satisfaction,
70
+ "Unique Style": unique_style,
71
+ "Outfit Struggle": outfit_struggle,
72
+ "Fashion Preference": fashion_preference,
73
+ "Gender Neutral Clothing": gender_neutral_clothing,
74
+ "Special Occasion Attire": special_occasion_attire,
75
+ "Trendsetter": trendsetter,
76
+ "AI Usefulness": ai_usefulness,
77
+ "Trust in AI": trust_in_ai,
78
+ "AI Preference": ai_preference,
79
+ "AI Usage Frequency": ai_usage_frequency,
80
+ "AI Match Preferences": ai_match_preferences,
81
+ "AI Recommendation": ai_recommendation,
82
+ "AI Understanding Style": ai_understanding_style,
83
+ "More Personalized Recommendations": more_personalized_recommendations,
84
+ "Event Suggestions": event_suggestions,
85
+ "AI Improvements": ai_improvements
86
+ }
87
+
88
+ df = pd.DataFrame([questionnaire_data]) # Create DataFrame from dictionary
89
+
90
+ # Append to CSV file
91
+ df.to_csv("questionnaire_responses.csv", mode='a', header=not pd.io.common.file_exists("questionnaire_responses.csv"), index=False)
92
+
93
+ return "Thank you for completing the questionnaire!"
94
+
95
+ # Function to handle chat
96
+ def chat(user_input, messages, name, age, location, gender, ethnicity, height, weight):
97
+ if user_input:
98
+ # Create a user profile string
99
+ user_profile_string = (
100
+ f"User profile: Name: {name}, Age: {age}, Location: {location}, "
101
+ f"Gender: {gender}, Ethnicity: {ethnicity}, Height: {height}, Weight: {weight}"
102
+ )
103
+
104
+ # Prepare messages for the API call, including the profile and the conversation history
105
+ messages.append({"role": "user", "content": user_input})
106
+ messages.append(system_message)
107
+ messages.append({"role": "user", "content": user_profile_string})
108
+
109
+ try:
110
+ # Generate a response from the Groq API
111
+ completion = client.chat.completions.create(
112
+ model="llama3-8b-8192",
113
+ messages=messages,
114
+ temperature=1,
115
+ max_tokens=1024,
116
+ top_p=1,
117
+ stream=False,
118
+ )
119
+
120
+ # Ensure response is valid
121
+ if completion.choices and len(completion.choices) > 0:
122
+ response_content = completion.choices[0].message.content
123
+ else:
124
+ response_content = "Sorry, I couldn't generate a response."
125
+
126
+ except Exception as e:
127
+ response_content = f"Error: {str(e)}"
128
+
129
+ # Store assistant response in the chat history
130
+ messages.append({"role": "assistant", "content": response_content})
131
+
132
+ return messages, response_content
133
+ return messages, ""
134
+
135
+ # Gradio Interface
136
+ with gr.Blocks() as demo:
137
+ gr.Markdown("## Fashion Assistant Chatbot")
138
+
139
+ # Sidebar for user inputs
140
+ with gr.Row():
141
+ with gr.Column():
142
+ name = gr.Textbox(label="Name")
143
+ age = gr.Number(label="Age", value=25, minimum=1, maximum=100)
144
+ location = gr.Textbox(label="Location")
145
+ gender = gr.Radio(label="Gender", choices=["Male", "Female", "Other"])
146
+ ethnicity = gr.Radio(label="Ethnicity", choices=["Asian", "Black", "Hispanic", "White", "Other"])
147
+ height = gr.Number(label="Height (cm)", value=170, minimum=50, maximum=250)
148
+ weight = gr.Number(label="Weight (kg)", value=70, minimum=20, maximum=200)
149
+
150
+ with gr.Column():
151
+ submit_btn = gr.Button("Submit Questionnaire")
152
+ reset_btn = gr.Button("Reset Chat")
153
+
154
+ # Questionnaire responses
155
+ style_preference = gr.Radio(label="Which style do you prefer the most?", choices=["Casual", "Formal", "Streetwear", "Athleisure", "Baggy"])
156
+ color_palette = gr.Radio(label="What color palette do you wear often?", choices=["Neutrals", "Bright Colors", "Pastels", "Dark Shades"])
157
+ everyday_style = gr.Radio(label="How would you describe your everyday style?", choices=["Relaxed", "Trendy", "Elegant", "Bold"])
158
+ preferred_prints = gr.Radio(label="What type of prints do you like?", choices=["Solid", "Stripes", "Floral", "Geometric", "Animal Print"])
159
+ season_preference = gr.Radio(label="Which season influences your wardrobe the most?", choices=["Spring", "Summer", "Fall", "Winter"])
160
+ outfit_priority = gr.Radio(label="What do you prioritize when choosing an outfit?", choices=["Comfort", "Style", "Affordability", "Brand"])
161
+ experiment_with_trends = gr.Radio(label="How often do you experiment with new trends?", choices=["Always", "Sometimes", "Rarely", "Never"])
162
+ accessories = gr.Radio(label="What kind of accessories do you usually wear?", choices=["Watches", "Rings", "Necklaces", "Bracelets", "Earrings"])
163
+ fit_preference = gr.Radio(label="What fit do you prefer in clothes?", choices=["Loose", "Tailored", "Fitted", "Oversized"])
164
+ material_preference = gr.Radio(label="Which material do you prefer?", choices=["Cotton", "Linen", "Silk", "Denim", "Wool"])
165
+
166
+ # More preferences (add all as needed)
167
+
168
+ chatbox = gr.Chatbot(label="Chat History")
169
+ user_input = gr.Textbox(label="Ask anything about fashion...", placeholder="Type your message here...")
170
+
171
+ # Reset chat functionality
172
+ reset_btn.click(reset_chat, outputs=[chatbox, "title"])
173
+
174
+ # Submit questionnaire functionality
175
+ submit_btn.click(submit_questionnaire, inputs=[name, age, location, gender, ethnicity, height, weight,
176
+ style_preference, color_palette, everyday_style,
177
+ preferred_prints, season_preference, outfit_priority,
178
+ experiment_with_trends, accessories, fit_preference,
179
+ material_preference], outputs="text")
180
+
181
+ # Chat functionality
182
+ user_input.submit(chat, inputs=[user_input, chatbox, name, age, location, gender, ethnicity, height, weight],
183
+ outputs=[chatbox, ""])
184
+
185
+ demo.launch()