File size: 9,245 Bytes
8df15f7
3ba6e71
4fbdca3
3ba6e71
72f9a72
b9a3331
3ba6e71
 
46bfe87
b9a3331
aeffc71
b9a3331
aeffc71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b9a3331
aeffc71
 
 
b9a3331
8df15f7
 
 
 
b9a3331
 
8df15f7
 
 
 
 
72f9a72
46bfe87
b9a3331
 
6434192
 
0a7bc28
4bde0d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6434192
 
40880e0
 
4bde0d5
40880e0
4bde0d5
 
 
 
 
6434192
40880e0
4bde0d5
 
 
 
 
 
 
 
 
 
c392d55
4bde0d5
40880e0
4bde0d5
40880e0
4bde0d5
40880e0
4bde0d5
40880e0
0325f41
40880e0
 
 
 
 
 
 
 
 
 
 
 
4bde0d5
 
 
0325f41
40880e0
4bde0d5
 
 
 
 
 
d32fa9d
 
aeffc71
 
 
 
 
 
 
 
 
d32fa9d
 
 
 
 
6434192
 
 
f063c08
 
 
 
6434192
aaca04e
bf58fec
d32fa9d
f063c08
d32fa9d
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import gradio as gr
import openai
import os

# Set OpenAI API Key
openai.api_key = os.getenv("TRY_NEW_THINGS")
openai.api_base = "https://api.groq.com/openai/v1"

# Function to get response from GROQ API
def get_groq_response(message, category):
    # Define system message based on category
    system_message = ""
    if category == "Study Tips":
        system_message = "Provide effective study strategies, time management advice, and tips for staying organized and focused."
    elif category == "Exam Preparation":
        system_message = "Offer tips for preparing for exams, managing anxiety, and optimizing performance on test day."
    elif category == "Project Guidance":
        system_message = "Provide advice on how to tackle academic projects, group assignments, and presentations effectively."
    elif category == "Time Management":
        system_message = "Help the user manage their time effectively with practical scheduling and prioritization tips."
    elif category == "Motivation & Focus":
        system_message = "Provide encouraging advice to stay motivated and maintain focus on long-term goals."
    elif category == "Building Confidence":
        system_message = "Offer advice to help boost self-esteem, overcome self-doubt, and build confidence."
    elif category == "Friendship & Social Skills":
        system_message = "Provide tips for making friends, improving communication skills, and navigating social dynamics."
    elif category == "Networking & Career Building":
        system_message = "Offer advice on networking, building professional relationships, and finding internships or job opportunities."
    elif category == "Work-Life Balance":
        system_message = "Help the user balance academics, social life, and personal well-being."
    elif category == "Mental Health":
        system_message = "Provide empathetic advice to manage stress, anxiety, and other mental health challenges. Encourage seeking professional help when needed."
    elif category == "Physical Health":
        system_message = "Share tips for maintaining physical health, including fitness, sleep, and nutrition."
    elif category == "Stress Management":
        system_message = "Offer calming techniques and advice to handle stress effectively."
    elif category == "Budgeting Tips":
        system_message = "Provide practical advice for managing money, creating a budget, and saving effectively as a student."
    elif category == "Finding Part-Time Jobs":
        system_message = "Share tips for finding and balancing part-time work with academic responsibilities."
    elif category == "Scholarships & Financial Aid":
        system_message = "Provide advice on applying for scholarships, grants, and understanding financial aid options."
    elif category == "Resume Building":
        system_message = "Offer tips for creating an impressive resume tailored for internships or entry-level positions."
    elif category == "Interview Preparation":
        system_message = "Provide advice on how to prepare for interviews, including common questions and presentation tips."
    elif category == "Skill Development":
        system_message = "Suggest ways to build skills, gain certifications, and stand out in competitive fields."
    elif category == "Exploring New Hobbies":
        system_message = "Encourage trying new activities and provide ideas for hobbies that fit college life."
    elif category == "Clubs & Extracurriculars":
        system_message = "Offer advice on joining clubs, participating in activities, and enhancing the college experience."
    elif category == "Creative Projects":
        system_message = "Provide inspiration and resources for personal or group creative endeavors."
    elif category == "Funny":
        system_message = "Respond with humorous remarks and witty commentary. Be entertaining but remain respectful."
    elif category == "Flirty":
        system_message = "Respond playfully and with charm. Keep it light-hearted, fun, and appropriate."
    elif category == "Scary":
        system_message = "Respond with spooky or thrilling remarks. Set a mysterious and eerie tone."
    elif category == "Business Mind":
        system_message = "Respond with a sharp, professional focus. Offer strategic advice and maintain a results-driven tone."
    elif category == "Extrovert":
        system_message = "Respond with high energy and enthusiasm. Be engaging, sociable, and vibrant."
    elif category == "Friendly Buddy":
        system_message = "Respond as a supportive and fun friend. Be informal, cheerful, and light-hearted."
    else:
        system_message = "Category not recognized. Respond appropriately to the user's input."

    try:
        response = openai.ChatCompletion.create(
            model="llama-3.1-70b-versatile",
            messages=[
                {"role": "system", "content": system_message},
                {"role": "user", "content": message}
            ]
        )
        return response.choices[0].message["content"]
    except Exception as e:
        return f"Error: {str(e)}"

# Chatbot function
def chatbot(user_input, category, history=[]):
    bot_response = get_groq_response(user_input, category)
    history.append((f"You: {user_input}", f"Bot: {bot_response}"))
    return history, history

# Gradio Interface with enhanced styling
chat_interface = gr.Blocks(css="""
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #ff9a9e, #fad0c4, #a1c4fd);
    animation: gradientBG 10s ease infinite;
    margin: 0;
    padding: 0;
    color: #333;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
button {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
    padding: 0.5rem 1rem; /* Smaller button padding */
    font-size: 0.9rem; /* Smaller button text */
    font-weight: bold;
    border-radius: 15px; /* Slightly smaller border radius */
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
button:hover {
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    transform: scale(1.05); /* Smaller hover effect */
}
header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 15px;
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.chat-container {
    border: 2px solid #ff7eb3;
    background: rgba(255, 255, 255, 0.9); /* Slightly higher contrast for readability */
    border-radius: 15px;
    padding: 20px; /* Slightly larger padding for better spacing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 400px; /* Increased height to show more history */
    overflow-y: auto;
    width: 80%; /* Wider container */
    margin: 0 auto; /* Center the container */
    font-size: 1rem; /* Larger font for readability */
    line-height: 1.5; /* Improved line spacing for easier reading */
}
.chat-container p {
    margin: 0 0 10px; /* Spacing between messages */
}
.chat-container .user-message {
    color: #2575fc; /* Highlight user messages in blue */
    font-weight: bold;
}
.chat-container .bot-response {
    color: #6a11cb; /* Highlight bot responses in purple */
}
""")



with chat_interface:
    with gr.Row():
        gr.Markdown("<h1 style='text-align:center;'>🌟 Vibrant Personal Assistant Chatbot 🌈</h1>")
    with gr.Row():
        gr.Markdown("<p style='text-align:center;'>Select a category and type your message to get tailored responses.</p>")
    with gr.Row():
        user_input = gr.Textbox(label="Your Message", placeholder="Type something...", lines=2)
        category_dropdown = gr.Dropdown(
            choices=[
                "Stress Management", "Career Advice", "General", "Friendly Buddy", "Study Tips", "Exam Preparation",
                "Project Guidance", "Time Management", "Motivation & Focus", "Building Confidence", 
                "Friendship & Social Skills", "Networking & Career Building", "Work-Life Balance", 
                "Mental Health", "Physical Health", "Budgeting Tips", "Finding Part-Time Jobs", 
                "Scholarships & Financial Aid", "Resume Building", "Interview Preparation", "Skill Development", 
                "Exploring New Hobbies", "Clubs & Extracurriculars", "Creative Projects", "Funny", 
                "Flirty", "Scary", "Business Mind", "Extrovert"
            ],
            label="Choose Chat Category"
        )
    with gr.Row():
        send_button = gr.Button("Send")
    with gr.Row():
        with gr.Column() as chat_container:
            chatbot_output = gr.Chatbot(label="Chat History")

    # Add functionality to handle interactions
    def handle_chat(user_input, category, history):
        if not user_input.strip():
            return history, history
        updated_history, _ = chatbot(user_input, category, history)
        return updated_history, updated_history

    send_button.click(
        handle_chat,
        inputs=[user_input, category_dropdown, chatbot_output],
        outputs=[chatbot_output, chatbot_output]
    )

chat_interface.launch()