alexkueck commited on
Commit
69c6114
·
verified ·
1 Parent(s): c09f1c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -2
app.py CHANGED
@@ -660,7 +660,21 @@ def custom_css():
660
  color:#353535;
661
  }
662
  """
 
 
 
 
663
 
 
 
 
 
 
 
 
 
 
 
664
  print ("Start GUIneu")
665
  with open("custom.css", "r", encoding="utf-8") as f:
666
  customCSS = f.read()
@@ -974,8 +988,8 @@ with gr.Blocks(css=custom_css(), theme=themeAlex) as demo:
974
  """
975
 
976
 
977
- demo.title = "LI-ChatBot"
978
- demo.queue(default_concurrency_limit=15).launch(debug=True)
979
 
980
 
981
 
 
660
  color:#353535;
661
  }
662
  """
663
+ def launch_main_app(_):
664
+ # Schließt das Validierungs-Interface und startet die Hauptanwendung
665
+ validation_interface.close()
666
+ demo.queue(default_concurrency_limit=15).launch(debug=True)
667
 
668
+
669
+ # Validierungs-Interface - Bots weghalten...
670
+ validation_interface = gr.Interface(
671
+ fn=validate_input,
672
+ inputs=gr.Textbox(label="Bitte tippen Sie das oben im Moodle Kurs angegebene Wort ein, um zu beweisen, dass Sie kein Bot sind."),
673
+ outputs=[gr.State(), gr.Text(label="Überprüfungsergebnis")],
674
+ live=True # Aktiviert die Live-Aktualisierung ohne Submit-Button
675
+ )
676
+
677
+ #################################################################################################
678
  print ("Start GUIneu")
679
  with open("custom.css", "r", encoding="utf-8") as f:
680
  customCSS = f.read()
 
988
  """
989
 
990
 
991
+ demo.title = "KKG-ChatBot"
992
+ #demo.queue(default_concurrency_limit=15).launch(debug=True)
993
 
994
 
995