Update app.py
Browse files
app.py
CHANGED
@@ -141,7 +141,7 @@ def clear_all(history):
|
|
141 |
#chats ist ein dictionary
|
142 |
chats[id_neu]= summary
|
143 |
|
144 |
-
return None, gr.Image(visible=False), [], gr.CheckboxGroup(label=
|
145 |
|
146 |
|
147 |
#########################################
|
@@ -166,7 +166,7 @@ def download_chats(selected_chats):
|
|
166 |
with open(file_path, 'w') as file:
|
167 |
# String in die Datei schreiben
|
168 |
file.write(data)
|
169 |
-
return gr.File(file_path, label="Download-Chat", visible = True)
|
170 |
else:
|
171 |
return gr.File(visible=False)
|
172 |
|
@@ -666,7 +666,6 @@ with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
|
|
666 |
#Bild Anzeige neben dem Button wieder entfernen oder austauschen..
|
667 |
image_display.select(file_loeschen, [], [attached_file, image_display])
|
668 |
download_button.click(fn=download_chats, inputs=chat_selector, outputs=file_download)
|
669 |
-
|
670 |
|
671 |
#Berechnung oder Ausgabe anhalten (kann danach fortgesetzt werden)
|
672 |
cancelBtn.click(cancel_outputing, [], [status_display], cancels=[predict_event1,predict_event2, predict_event3])
|
|
|
141 |
#chats ist ein dictionary
|
142 |
chats[id_neu]= summary
|
143 |
|
144 |
+
return None, gr.Image(visible=False), [], gr.CheckboxGroup(label="", choices=update_chat_options()), gr.File(visible=False)
|
145 |
|
146 |
|
147 |
#########################################
|
|
|
166 |
with open(file_path, 'w') as file:
|
167 |
# String in die Datei schreiben
|
168 |
file.write(data)
|
169 |
+
return gr.File(file_path, label="Download-Chat", visible = True, show_label=True)
|
170 |
else:
|
171 |
return gr.File(visible=False)
|
172 |
|
|
|
666 |
#Bild Anzeige neben dem Button wieder entfernen oder austauschen..
|
667 |
image_display.select(file_loeschen, [], [attached_file, image_display])
|
668 |
download_button.click(fn=download_chats, inputs=chat_selector, outputs=file_download)
|
|
|
669 |
|
670 |
#Berechnung oder Ausgabe anhalten (kann danach fortgesetzt werden)
|
671 |
cancelBtn.click(cancel_outputing, [], [status_display], cancels=[predict_event1,predict_event2, predict_event3])
|