alexkueck commited on
Commit
2e94f1b
1 Parent(s): 9b84a61

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -286,7 +286,10 @@ def generate_auswahl(prompt, file, chatbot, history, rag_option, model_option, o
286
  result = generate_text_zu_doc(file, prompt, k, rag_option, chatbot, db)
287
 
288
  history = history + [((file,), None),(prompt, result)]
289
-
 
 
 
290
  chatbot[-1][1] = ""
291
  for character in result:
292
  chatbot[-1][1] += character
 
286
  result = generate_text_zu_doc(file, prompt, k, rag_option, chatbot, db)
287
 
288
  history = history + [((file,), None),(prompt, result)]
289
+ print ("history ....................")
290
+ print(history)
291
+ print ("chatbot ....................")
292
+ print(chatbot)
293
  chatbot[-1][1] = ""
294
  for character in result:
295
  chatbot[-1][1] += character