rodrisouza commited on
Commit
33b0fe4
·
verified ·
1 Parent(s): c64e633

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,7 +78,7 @@ def interact(user_input, history, interaction_count):
78
 
79
  # Concatenate a final message if max interactions are reached
80
  if interaction_count >= MAX_INTERACTIONS - 1:
81
- user_input += ". This is the last message. Please respond accordingly."
82
 
83
  messages = history + [{"role": "user", "content": user_input}]
84
 
 
78
 
79
  # Concatenate a final message if max interactions are reached
80
  if interaction_count >= MAX_INTERACTIONS - 1:
81
+ user_input += ". Thank you for the questions. That's all for now. Goodbye!"
82
 
83
  messages = history + [{"role": "user", "content": user_input}]
84