alexkueck commited on
Commit
1ecb6ea
1 Parent(s): 6fc4df6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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
- file_path_download = save_and_download(summary)
 
 
 
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