Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,7 @@ def create_db(splits):
|
|
39 |
def initialize_database(list_file_obj):
|
40 |
if not list_file_obj:
|
41 |
return None, "Fehler: Keine Dateien hochgeladen!"
|
42 |
-
list_file_path =
|
43 |
doc_splits = load_doc(list_file_path)
|
44 |
vector_db = create_db(doc_splits)
|
45 |
return vector_db, "Datenbank erfolgreich erstellt!"
|
@@ -96,7 +96,7 @@ def demo():
|
|
96 |
|
97 |
with gr.Row():
|
98 |
with gr.Column():
|
99 |
-
document = gr.Files(label="PDF-Dokument hochladen", type="
|
100 |
db_btn = gr.Button("Erstelle Vektordatenbank")
|
101 |
db_status = gr.Textbox(label="Datenbankstatus", value="Nicht erstellt", interactive=False)
|
102 |
|
|
|
39 |
def initialize_database(list_file_obj):
|
40 |
if not list_file_obj:
|
41 |
return None, "Fehler: Keine Dateien hochgeladen!"
|
42 |
+
list_file_path = list_file_obj # Dateipfade von den hochgeladenen Dateien
|
43 |
doc_splits = load_doc(list_file_path)
|
44 |
vector_db = create_db(doc_splits)
|
45 |
return vector_db, "Datenbank erfolgreich erstellt!"
|
|
|
96 |
|
97 |
with gr.Row():
|
98 |
with gr.Column():
|
99 |
+
document = gr.Files(label="PDF-Dokument hochladen", type="filepath", file_types=[".pdf"], file_count="multiple")
|
100 |
db_btn = gr.Button("Erstelle Vektordatenbank")
|
101 |
db_status = gr.Textbox(label="Datenbankstatus", value="Nicht erstellt", interactive=False)
|
102 |
|