Update app.py
Browse files
app.py
CHANGED
@@ -208,7 +208,6 @@ def generate_text (prompt, chatbot, history, vektordatenbank, top_p=0.6, temper
|
|
208 |
# Funktion zur Überprüfung der Benutzereingabe
|
209 |
# Funktion zur Überprüfung der Eingabe und Aktivierung der Hauptanwendung
|
210 |
def validate_input(user_input_validate, validate=False):
|
211 |
-
print("pw...................."+str(user_input_validate))
|
212 |
user_input_hashed = hash_input(user_input_validate)
|
213 |
if user_input_hashed == hash_input(ANTI_BOT_PW):
|
214 |
return "Richtig! Weiter gehts... ", True, gr.Textbox(visible=False), gr.Button(visible=False)
|
@@ -269,7 +268,7 @@ def generate_auswahl(prompt_in, file, file_history, chatbot, history, anzahl_doc
|
|
269 |
neu_file = file_history
|
270 |
|
271 |
#prompt normalisieren bevor er an die KIs geht
|
272 |
-
prompt =
|
273 |
|
274 |
#muss nur einmal ausgeführt werden...
|
275 |
#?????????????????????????????????????????????? Nicht passend zum Promt???????????????????????????
|
|
|
208 |
# Funktion zur Überprüfung der Benutzereingabe
|
209 |
# Funktion zur Überprüfung der Eingabe und Aktivierung der Hauptanwendung
|
210 |
def validate_input(user_input_validate, validate=False):
|
|
|
211 |
user_input_hashed = hash_input(user_input_validate)
|
212 |
if user_input_hashed == hash_input(ANTI_BOT_PW):
|
213 |
return "Richtig! Weiter gehts... ", True, gr.Textbox(visible=False), gr.Button(visible=False)
|
|
|
268 |
neu_file = file_history
|
269 |
|
270 |
#prompt normalisieren bevor er an die KIs geht
|
271 |
+
prompt = preprocess_text(prompt_in)
|
272 |
|
273 |
#muss nur einmal ausgeführt werden...
|
274 |
#?????????????????????????????????????????????? Nicht passend zum Promt???????????????????????????
|