Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -36,21 +36,22 @@ def generate_response(user_input):
|
|
36 |
# Encode the input text and generate a response
|
37 |
new_user_input_ids = tokenizer.encode(user_input + tokenizer.eos_token, return_tensors='pt')
|
38 |
bot_input_ids = new_user_input_ids
|
39 |
-
chat_history_ids = model.generate(bot_input_ids, max_length=
|
40 |
|
41 |
# Decode the response to text
|
42 |
chat_history_ids = chat_history_ids[:, bot_input_ids.shape[-1]:] # remove the input from the response
|
43 |
bot_output = tokenizer.decode(chat_history_ids[0], skip_special_tokens=True)
|
44 |
|
45 |
-
#
|
46 |
-
response = f"{bot_output}\n\
|
47 |
-
|
|
|
48 |
if "crying" in user_input.lower():
|
49 |
-
response += "
|
50 |
-
elif "
|
51 |
-
response += "
|
52 |
else:
|
53 |
-
response += "
|
54 |
|
55 |
return response
|
56 |
|
|
|
36 |
# Encode the input text and generate a response
|
37 |
new_user_input_ids = tokenizer.encode(user_input + tokenizer.eos_token, return_tensors='pt')
|
38 |
bot_input_ids = new_user_input_ids
|
39 |
+
chat_history_ids = model.generate(bot_input_ids, max_length=200, pad_token_id=tokenizer.eos_token_id, temperature=0.7, top_k=50, repetition_penalty=1.2)
|
40 |
|
41 |
# Decode the response to text
|
42 |
chat_history_ids = chat_history_ids[:, bot_input_ids.shape[-1]:] # remove the input from the response
|
43 |
bot_output = tokenizer.decode(chat_history_ids[0], skip_special_tokens=True)
|
44 |
|
45 |
+
# Build a more empathetic and thoughtful response
|
46 |
+
response = f"{bot_output}\n\nI'm really sorry you're feeling like this. It's okay to feel overwhelmed and to let those emotions out. It's important to be kind to yourself during difficult times."
|
47 |
+
|
48 |
+
# Add coping strategies based on the situation
|
49 |
if "crying" in user_input.lower():
|
50 |
+
response += "\n\nCrying can be a powerful release. Letting yourself feel what you're going through can sometimes help you move forward. After you’ve given yourself space to cry, you might find it helpful to talk with someone you trust or take a break to refresh your mind."
|
51 |
+
elif "work" in user_input.lower():
|
52 |
+
response += "\n\nWork can feel like an unending cycle, especially when you're under pressure. Have you tried breaking your tasks down into smaller, manageable pieces? It might help to focus on one thing at a time and give yourself short breaks to recharge."
|
53 |
else:
|
54 |
+
response += "\n\nRemember, it’s okay to take things slow. Taking care of your emotional well-being is just as important as anything else."
|
55 |
|
56 |
return response
|
57 |
|