Update app.py
Browse files
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
|