alexkueck commited on
Commit
1e8fcfa
1 Parent(s): d931d50

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +13 -0
utils.py CHANGED
@@ -397,6 +397,19 @@ def process_chatverlauf_hf(history, llm):
397
  result = llm_chain2(llm, input)
398
  return result
399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
 
401
  ########################################################
402
  #Ausgabe im Chatbot aufhübschen...
 
397
  result = llm_chain2(llm, input)
398
  return result
399
 
400
+ #######################################################
401
+ #Funktionen, um aus der summary des chatverlaufs eine Datei zu machen, die man downloaden kann
402
+ def save_and_download(chat_history):
403
+ # Speichere den Chatverlauf in einer temporären Datei
404
+ with NamedTemporaryFile(delete=False, mode="w", suffix=".txt", dir="./temp") as tmp:
405
+ temp_file_path = tmp.name
406
+ tmp.write(chat_history)
407
+ return temp_file_path
408
+
409
+ def cleanup(file_path):
410
+ if os.path.exists(file_path):
411
+ os.remove(file_path)
412
+
413
 
414
  ########################################################
415
  #Ausgabe im Chatbot aufhübschen...