Update app.py
Browse files
app.py
CHANGED
@@ -425,9 +425,7 @@ def show_notification():
|
|
425 |
return gr.Notification("System erfolgreich aktualisiert!", title="Fertig", type="info") #gr.Info("System erfolgreich aktualisiert!") #
|
426 |
"""
|
427 |
def show_success():
|
428 |
-
return gr.Info(
|
429 |
-
"System erfolgreich aktualisiert!",
|
430 |
-
elem_id="custom-info"),
|
431 |
|
432 |
def hide_status():
|
433 |
return gr.Textbox( visible = False)
|
@@ -454,20 +452,6 @@ def custom_css():
|
|
454 |
background-color: #303030; /* Dunkler Hintergrund */
|
455 |
color:#353535;
|
456 |
}
|
457 |
-
|
458 |
-
#custom-info {
|
459 |
-
border: 2px solid #4CAF50;
|
460 |
-
padding: 20px;
|
461 |
-
background-color: #DFF2BF;
|
462 |
-
color: #4CAF50;
|
463 |
-
font-size: 20px;
|
464 |
-
text-align: center;
|
465 |
-
font-weight: bold;
|
466 |
-
display: none; /* initially hidden */
|
467 |
-
}
|
468 |
-
#custom-info.show {
|
469 |
-
display: block;
|
470 |
-
}
|
471 |
"""
|
472 |
|
473 |
|
@@ -677,7 +661,7 @@ with gr.Blocks(css=customCSS, theme=themeAlex) as demo:
|
|
677 |
renew_button.click(fn=upload_pdf, inputs=upload_pdf_files, outputs=[output_text, file_list]).then(
|
678 |
fn=update_vectorstore, inputs=None, outputs=output_text).then(
|
679 |
fn=reset_file_input, inputs=None, outputs=upload_pdf_files).then(fn=hide_status, inputs=None, outputs=output_text).success(
|
680 |
-
fn=show_success)
|
681 |
|
682 |
#fn= show_notification, inputs=None) #lambda: gr.Notification("System-Aktualisierung erfolgreich abgeschlossen!"
|
683 |
demo.load(display_files, outputs=file_list)
|
|
|
425 |
return gr.Notification("System erfolgreich aktualisiert!", title="Fertig", type="info") #gr.Info("System erfolgreich aktualisiert!") #
|
426 |
"""
|
427 |
def show_success():
|
428 |
+
return gradio.Warning("System erfolgreich aktualisiert!", duration=5) #gr.Info( "System erfolgreich aktualisiert!",elem_id="custom-info")
|
|
|
|
|
429 |
|
430 |
def hide_status():
|
431 |
return gr.Textbox( visible = False)
|
|
|
452 |
background-color: #303030; /* Dunkler Hintergrund */
|
453 |
color:#353535;
|
454 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
"""
|
456 |
|
457 |
|
|
|
661 |
renew_button.click(fn=upload_pdf, inputs=upload_pdf_files, outputs=[output_text, file_list]).then(
|
662 |
fn=update_vectorstore, inputs=None, outputs=output_text).then(
|
663 |
fn=reset_file_input, inputs=None, outputs=upload_pdf_files).then(fn=hide_status, inputs=None, outputs=output_text).success(
|
664 |
+
fn=show_success)
|
665 |
|
666 |
#fn= show_notification, inputs=None) #lambda: gr.Notification("System-Aktualisierung erfolgreich abgeschlossen!"
|
667 |
demo.load(display_files, outputs=file_list)
|