Update app.py
Browse files
app.py
CHANGED
@@ -446,7 +446,7 @@ def validate_input(user_input_validate, validate=False):
|
|
446 |
if user_input_hashed == hash_input(ANTI_BOT_PW):
|
447 |
return "Richtig! Weiter gehts... ", True, gr.Textbox(visible=False), gr.Button(visible=False)
|
448 |
else:
|
449 |
-
return "Falsche Antwort!!!!!!!!!", False, gr.Textbox(label = "", placeholder="Bitte tippen Sie das oben im Moodle Kurs angegebene Wort ein, um zu beweisen, dass Sie kein Bot sind.", visible=True, scale=
|
450 |
"""
|
451 |
def custom_css():
|
452 |
return
|
@@ -472,7 +472,7 @@ additional_inputs = [
|
|
472 |
gr.Slider(label="Top-p (nucleus sampling)", value=0.6, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Höhere Werte verwenden auch Tokens mit niedrigerer Wahrscheinlichkeit.", visible=True),
|
473 |
gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Strafe für wiederholte Tokens", visible=True)
|
474 |
]
|
475 |
-
with gr.Blocks(
|
476 |
#validiert speichern
|
477 |
validate = gr.State(True)
|
478 |
#Session Variablen, um Weete zu speichern, auch wenn die Felder in der GUI bereits wieder leer sind
|
@@ -504,7 +504,7 @@ with gr.Blocks(css=customCSS, theme=themeAlex) as demo:
|
|
504 |
################################################
|
505 |
gr.Markdown(description_top)
|
506 |
with gr.Row():
|
507 |
-
user_input_validate =gr.Textbox(label= "Bitte das oben im Moodle Kurs angegebene Wort eingeben, um die Anwendung zu starten", visible=True, interactive=True, scale=
|
508 |
validate_btn = gr.Button("Validieren", visible = True)
|
509 |
validation_result = gr.Text(label="Validierungsergebnis")
|
510 |
|
@@ -534,16 +534,10 @@ with gr.Blocks(css=customCSS, theme=themeAlex) as demo:
|
|
534 |
with gr.Column(visible = False):
|
535 |
with gr.Column(min_width=50, scale=1):
|
536 |
with gr.Tab(label="KKG-Suche ..."):
|
537 |
-
#Geht nicht, da für alle gleichzeitig sichtbar
|
538 |
-
#chat_selector = gr.CheckboxGroup(label="", choices=update_chat_options())
|
539 |
-
#download_button = gr.Button("Download ausgewählte Chats")
|
540 |
file_download = gr.File(label="Noch keine Chatsverläufe", visible=True, interactive = False, file_count="multiple",)
|
541 |
|
542 |
with gr.Tab(label="Parameter"):
|
543 |
-
#gr.Markdown("# Parameters")
|
544 |
-
#rag_option = gr.Radio(["Aus", "An"], label="KKG Erweiterungen (RAG)", value = "Aus")
|
545 |
model_option = gr.Radio(["HuggingFace"], label="Modellauswahl", value = "HuggingFace")
|
546 |
-
#websuche = gr.Radio(["Aus", "An"], label="Web-Suche", value = "Aus")
|
547 |
|
548 |
|
549 |
top_p = gr.Slider(
|
|
|
446 |
if user_input_hashed == hash_input(ANTI_BOT_PW):
|
447 |
return "Richtig! Weiter gehts... ", True, gr.Textbox(visible=False), gr.Button(visible=False)
|
448 |
else:
|
449 |
+
return "Falsche Antwort!!!!!!!!!", False, gr.Textbox(label = "", placeholder="Bitte tippen Sie das oben im Moodle Kurs angegebene Wort ein, um zu beweisen, dass Sie kein Bot sind.", visible=True, scale= 7), gr.Button("Validieren", visible = True)
|
450 |
"""
|
451 |
def custom_css():
|
452 |
return
|
|
|
472 |
gr.Slider(label="Top-p (nucleus sampling)", value=0.6, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Höhere Werte verwenden auch Tokens mit niedrigerer Wahrscheinlichkeit.", visible=True),
|
473 |
gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Strafe für wiederholte Tokens", visible=True)
|
474 |
]
|
475 |
+
with gr.Blocks( theme=themeAlex) as demo:
|
476 |
#validiert speichern
|
477 |
validate = gr.State(True)
|
478 |
#Session Variablen, um Weete zu speichern, auch wenn die Felder in der GUI bereits wieder leer sind
|
|
|
504 |
################################################
|
505 |
gr.Markdown(description_top)
|
506 |
with gr.Row():
|
507 |
+
user_input_validate =gr.Textbox(label= "Bitte das oben im Moodle Kurs angegebene Wort eingeben, um die Anwendung zu starten", visible=True, interactive=True, scale= 7)
|
508 |
validate_btn = gr.Button("Validieren", visible = True)
|
509 |
validation_result = gr.Text(label="Validierungsergebnis")
|
510 |
|
|
|
534 |
with gr.Column(visible = False):
|
535 |
with gr.Column(min_width=50, scale=1):
|
536 |
with gr.Tab(label="KKG-Suche ..."):
|
|
|
|
|
|
|
537 |
file_download = gr.File(label="Noch keine Chatsverläufe", visible=True, interactive = False, file_count="multiple",)
|
538 |
|
539 |
with gr.Tab(label="Parameter"):
|
|
|
|
|
540 |
model_option = gr.Radio(["HuggingFace"], label="Modellauswahl", value = "HuggingFace")
|
|
|
541 |
|
542 |
|
543 |
top_p = gr.Slider(
|