Update app.py
Browse files
app.py
CHANGED
@@ -147,7 +147,7 @@ def add_file(history, file, prompt):
|
|
147 |
if (prompt == ""):
|
148 |
history = history + [((file.name,), None)]
|
149 |
else:
|
150 |
-
history = history + [((file.name,), None), (prompt, None)]
|
151 |
return history, prompt, ""
|
152 |
|
153 |
def file_anzeigen(file):
|
|
|
147 |
if (prompt == ""):
|
148 |
history = history + [((file.name,), None)]
|
149 |
else:
|
150 |
+
history = history + [((file.name,), None), (prompt, None)]
|
151 |
return history, prompt, ""
|
152 |
|
153 |
def file_anzeigen(file):
|