Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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[-
|
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 |
|