Update app.py
Browse files
app.py
CHANGED
@@ -360,7 +360,7 @@ def generate_auswahl(prompt_in, file, file_history, chatbot, history, anzahl_doc
|
|
360 |
########################################
|
361 |
# Hochladen von Dateien und Vektorstore neu erstellen
|
362 |
# Beispiel-Upload-PDF-Funktion
|
363 |
-
|
364 |
def upload_pdf(files):
|
365 |
if not files:
|
366 |
logging.warning("No files uploaded.")
|
@@ -389,7 +389,7 @@ def upload_pdf(files):
|
|
389 |
logging.info(f"Existing file {upload_path} removed.")
|
390 |
|
391 |
# Hochladen der Datei
|
392 |
-
future = pool.submit(upload_file_to_huggingface, file.name, upload_path)
|
393 |
futures.append(future)
|
394 |
except Exception as e:
|
395 |
logging.error(f"Error preparing upload for file {file.name}: {e}")
|
@@ -408,7 +408,7 @@ def upload_pdf(files):
|
|
408 |
############################################
|
409 |
#Vektorstore neu....
|
410 |
############################################
|
411 |
-
create_vectorstore()
|
412 |
logging.info("Vektorstore successfully renewed.")
|
413 |
status_message += " - Vektorstore wurde erneuert."
|
414 |
except Exception as e:
|
@@ -462,7 +462,7 @@ def upload_pdf(files):
|
|
462 |
status_message += " - Fehler beim Erneuern des Vektorstores."
|
463 |
|
464 |
return status_message, display_files()
|
465 |
-
|
466 |
|
467 |
|
468 |
|
|
|
360 |
########################################
|
361 |
# Hochladen von Dateien und Vektorstore neu erstellen
|
362 |
# Beispiel-Upload-PDF-Funktion
|
363 |
+
|
364 |
def upload_pdf(files):
|
365 |
if not files:
|
366 |
logging.warning("No files uploaded.")
|
|
|
389 |
logging.info(f"Existing file {upload_path} removed.")
|
390 |
|
391 |
# Hochladen der Datei
|
392 |
+
#future = pool.submit(upload_file_to_huggingface, file.name, upload_path)
|
393 |
futures.append(future)
|
394 |
except Exception as e:
|
395 |
logging.error(f"Error preparing upload for file {file.name}: {e}")
|
|
|
408 |
############################################
|
409 |
#Vektorstore neu....
|
410 |
############################################
|
411 |
+
#create_vectorstore()
|
412 |
logging.info("Vektorstore successfully renewed.")
|
413 |
status_message += " - Vektorstore wurde erneuert."
|
414 |
except Exception as e:
|
|
|
462 |
status_message += " - Fehler beim Erneuern des Vektorstores."
|
463 |
|
464 |
return status_message, display_files()
|
465 |
+
"""
|
466 |
|
467 |
|
468 |
|