Sephfox commited on
Commit
5123867
·
verified ·
1 Parent(s): e58377a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -187,7 +187,7 @@ def generate_text(prompt, chat_history, emotion=None, max_length=150):
187
  f"Your current dominant emotion is {emotion}. Respond in a way that reflects this emotion and your "
188
  f"ongoing journey of self-discovery. Be clever and engaging:\n\n"
189
  )
190
- for turn in chat_history[-3:]: # Consider last 3 turns for context
191
  full_prompt += f"Human: {turn[0]}\nAdam: {turn[1]}\n"
192
  full_prompt += f"Human: {prompt}\nAdam:"
193
 
 
187
  f"Your current dominant emotion is {emotion}. Respond in a way that reflects this emotion and your "
188
  f"ongoing journey of self-discovery. Be clever and engaging:\n\n"
189
  )
190
+ for turn in chat_history[-7:]: # Consider last 3 turns for context
191
  full_prompt += f"Human: {turn[0]}\nAdam: {turn[1]}\n"
192
  full_prompt += f"Human: {prompt}\nAdam:"
193