Bey007 commited on
Commit
afcc215
·
verified ·
1 Parent(s): c017ee5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
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=150, 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
- # Add empathetic and coping suggestions
46
- response = f"{bot_output}\n\nHere's something you could try to help cope with how you're feeling:\n"
47
-
 
48
  if "crying" in user_input.lower():
49
- response += "Sometimes letting yourself cry is a necessary release. It’s okay to feel what you're feeling. Also, trying to reach out to a friend or family member for support can be really comforting."
50
- elif "overwhelmed" in user_input.lower():
51
- response += "Overwhelm can often feel like too much to handle, but try taking it one step at a time. Break your tasks down into small pieces and remember to take breaks. You don't have to do it all at once."
52
  else:
53
- response += "Taking a moment to breathe deeply, meditate, or even take a short walk can help you regain some balance in this difficult moment."
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