Update app.py
Browse files
app.py
CHANGED
@@ -369,7 +369,7 @@ def generate_auswahl(prompt_in, file, file_history, chatbot, history, anzahl_doc
|
|
369 |
########################################
|
370 |
# Hochladen von Dateien und Vektorstore neu erstellen
|
371 |
# Beispiel-Upload-PDF-Funktion
|
372 |
-
def upload_pdf(files
|
373 |
status_message = ""
|
374 |
if not files:
|
375 |
status_message = " Keine Dateien zum Hochladen! "
|
@@ -666,9 +666,9 @@ with gr.Blocks(css=customCSS, theme=themeAlex) as demo:
|
|
666 |
#2ter Tab
|
667 |
#renew_button.click(fn=upload_pdf, inputs=upload_pdf_files, outputs=[output_text, file_list])
|
668 |
# Hochladen der Dateien und dann Vektorstore aktualisieren
|
669 |
-
renew_button.click(fn=upload_pdf, inputs=[upload_pdf_files], outputs=[output_text, file_list]).then(
|
670 |
fn=update_vectorstore, inputs=status_system_update, outputs=[output_text, status_system_update]).then(
|
671 |
-
fn=reset_file_input, inputs=None, outputs=[upload_pdf_files]).then(fn=show_text_status, inputs=
|
672 |
demo.load(display_files, outputs=file_list)
|
673 |
|
674 |
demo.title = "KKG-Suche"
|
|
|
369 |
########################################
|
370 |
# Hochladen von Dateien und Vektorstore neu erstellen
|
371 |
# Beispiel-Upload-PDF-Funktion
|
372 |
+
def upload_pdf(files):
|
373 |
status_message = ""
|
374 |
if not files:
|
375 |
status_message = " Keine Dateien zum Hochladen! "
|
|
|
666 |
#2ter Tab
|
667 |
#renew_button.click(fn=upload_pdf, inputs=upload_pdf_files, outputs=[output_text, file_list])
|
668 |
# Hochladen der Dateien und dann Vektorstore aktualisieren
|
669 |
+
renew_button.click(fn=upload_pdf, inputs=[upload_pdf_files], outputs=[output_text, file_list, status_system_update]).then(
|
670 |
fn=update_vectorstore, inputs=status_system_update, outputs=[output_text, status_system_update]).then(
|
671 |
+
fn=reset_file_input, inputs=None, outputs=[upload_pdf_files]).then(fn=show_text_status, inputs=status_system_update, outputs=[output_text, status_system_update]) #.then(fn=hide_status, inputs=None, outputs=output_text, show_progress="hidden")
|
672 |
demo.load(display_files, outputs=file_list)
|
673 |
|
674 |
demo.title = "KKG-Suche"
|