rodrisouza commited on
Commit
789fbfb
·
verified ·
1 Parent(s): db2a716

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -76,8 +76,6 @@ def interact(user_input, history, interaction_count):
76
  if tokenizer is None or model is None:
77
  raise ValueError("Tokenizer or model is not initialized.")
78
 
79
- interaction_count += 1
80
-
81
  messages = history + [{"role": "user", "content": user_input}]
82
 
83
  # Ensure roles alternate correctly
@@ -94,11 +92,14 @@ def interact(user_input, history, interaction_count):
94
 
95
  # Update chat history with generated response
96
  history.append({"role": "user", "content": user_input})
97
- history.append({"role": "assistant", "content": response})
 
98
 
99
  if interaction_count >= MAX_INTERACTIONS:
100
- response += "\n\nThank you for your questions. Our session is now over. Goodbye!"
101
- history[-1]["content"] = response
 
 
102
 
103
  formatted_history = [(entry["content"], None) if entry["role"] == "user" else (None, entry["content"]) for entry in history if entry["role"] in ["user", "assistant"]]
104
 
 
76
  if tokenizer is None or model is None:
77
  raise ValueError("Tokenizer or model is not initialized.")
78
 
 
 
79
  messages = history + [{"role": "user", "content": user_input}]
80
 
81
  # Ensure roles alternate correctly
 
92
 
93
  # Update chat history with generated response
94
  history.append({"role": "user", "content": user_input})
95
+
96
+ interaction_count += 1
97
 
98
  if interaction_count >= MAX_INTERACTIONS:
99
+ response = "Thank you for your questions. Our session is now over. Goodbye!"
100
+ history.append({"role": "assistant", "content": response})
101
+ else:
102
+ history.append({"role": "assistant", "content": response})
103
 
104
  formatted_history = [(entry["content"], None) if entry["role"] == "user" else (None, entry["content"]) for entry in history if entry["role"] in ["user", "assistant"]]
105