Update app.py
Browse files
app.py
CHANGED
|
@@ -422,7 +422,9 @@ def generate_auswahl(prompt, file, chatbot, history, rag_option, model_option, o
|
|
| 422 |
|
| 423 |
print("result..................")
|
| 424 |
print(result)
|
| 425 |
-
|
|
|
|
|
|
|
| 426 |
for character in result:
|
| 427 |
chatbot[-1][1] += character
|
| 428 |
time.sleep(0.03)
|
|
|
|
| 422 |
|
| 423 |
print("result..................")
|
| 424 |
print(result)
|
| 425 |
+
print("history.......................")
|
| 426 |
+
print(chatbot)
|
| 427 |
+
chatbot[-1][1] = ""
|
| 428 |
for character in result:
|
| 429 |
chatbot[-1][1] += character
|
| 430 |
time.sleep(0.03)
|