Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -156,9 +156,12 @@ def clear_all(history):
|
|
156 |
#falls file mit summay für download existiert hat: das zunächst löschen
|
157 |
#cleanup(file_path_download)
|
158 |
#den aktuellen Chatverlauf zum Download bereitstellen:
|
159 |
-
if chats != {}:
|
160 |
chats.append(summary) #noch nicht im Einsatz, aber hier werden alle Chats einer Sitzung gespeichert
|
161 |
-
|
|
|
|
|
|
|
162 |
|
163 |
return None, gr.Image(visible=False), [], gr.File(file_path_download, label="Download-Chat", visible=False, file_count="multiple")
|
164 |
|
|
|
156 |
#falls file mit summay für download existiert hat: das zunächst löschen
|
157 |
#cleanup(file_path_download)
|
158 |
#den aktuellen Chatverlauf zum Download bereitstellen:
|
159 |
+
if chats != {} :
|
160 |
chats.append(summary) #noch nicht im Einsatz, aber hier werden alle Chats einer Sitzung gespeichert
|
161 |
+
else:
|
162 |
+
chats=summary
|
163 |
+
|
164 |
+
file_path_download = save_and_download(summary)
|
165 |
|
166 |
return None, gr.Image(visible=False), [], gr.File(file_path_download, label="Download-Chat", visible=False, file_count="multiple")
|
167 |
|