Anne31415 commited on
Commit
2071fb2
·
verified ·
1 Parent(s): e40fe79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -11
app.py CHANGED
@@ -169,18 +169,24 @@ def handle_no_answer(response):
169
  return random.choice(alternative_responses) # Randomly select a response
170
  return response
171
 
172
- def ask_bot(query):
173
- # Definiere den standardmäßigen Prompt
174
- standard_prompt = "Schreibe immer höflich und auf antworte immer in der Sprache in der der User auch schreibt. Formuliere immer ganze freundliche ganze Sätze und biete wenn möglich auch mehr Informationen (aber nicht mehr als 1 Satz mehr). Wenn der User sehr vage schreibt frage nach - gerade wenn es um Jahre geht, frage nur nach Jahren wenn du zu dem Thema auch Daten zu bestimmten Jahren hast. "
175
- # Kombiniere den standardmäßigen Prompt mit der Benutzeranfrage
176
- full_query = standard_prompt + query
177
- return full_query
178
-
179
- # Funktion zum Kombinieren der Chat-Historie mit der aktuellen Anfrage
 
 
180
  def combine_history_with_query(current_query, history):
181
- combined_history = " ".join([f"{chat[0]}: {chat[1]}" for chat in history])
182
- return combined_history + " " + current_query
183
-
 
 
 
 
184
 
185
  def page1():
186
  try:
 
169
  return random.choice(alternative_responses) # Randomly select a response
170
  return response
171
 
172
+ # Funktion zum sicheren Hinzufügen zur Chat-Historie
173
+ def add_to_chat_history(speaker, message, history_key):
174
+ if history_key in st.session_state:
175
+ st.session_state[history_key].append((speaker, message))
176
+
177
+ # Beispiel für das Hinzufügen zur Chat-Historie
178
+ add_to_chat_history("User", user_input, 'chat_history_page1')
179
+ add_to_chat_history("Bot", bot_response, 'chat_history_page1')
180
+
181
+ # Funktion zum sicheren Kombinieren der Chat-Historie mit der aktuellen Anfrage
182
  def combine_history_with_query(current_query, history):
183
+ combined_history = ""
184
+ for chat in history:
185
+ # Stelle sicher, dass das Tupel zwei Elemente hat
186
+ if len(chat) >= 2:
187
+ combined_history += f"{chat[0]}: {chat[1]} "
188
+ return combined_history + current_query
189
+
190
 
191
  def page1():
192
  try: