alexkueck commited on
Commit
899e7dd
·
verified ·
1 Parent(s): 5955e30

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +9 -0
utils.py CHANGED
@@ -78,6 +78,10 @@ logging.basicConfig(
78
  # Your predefined sentences
79
  ANTWORT_WEISS_NICHT = ["ich weiß nicht.", "ich weiß das nicht", "Ich habe dazu keine Antwort", "Ich bin nicht sicher", "Ich kann das nicht beantworten", "Es tut mir leid, aber ich kenne keinen", "Es tut mir leid, aber ich kann die Frage nicht beantworten.", "Es tut mir leid, aber ich kann die Frage nicht beantworten, da ich zu der Frage keine spezifischen Informatioen habe"]
80
 
 
 
 
 
81
  #################################################
82
  #Gesetzte Werte für Pfade, Prompts und Keys..
83
  #################################################
@@ -898,6 +902,11 @@ def erstellePdf(file_path_download, ueberschrift, dic_history):
898
  doc.onPage = on_each_page
899
  doc.build(elements)
900
 
 
 
 
 
 
901
 
902
 
903
  ########################################
 
78
  # Your predefined sentences
79
  ANTWORT_WEISS_NICHT = ["ich weiß nicht.", "ich weiß das nicht", "Ich habe dazu keine Antwort", "Ich bin nicht sicher", "Ich kann das nicht beantworten", "Es tut mir leid, aber ich kenne keinen", "Es tut mir leid, aber ich kann die Frage nicht beantworten.", "Es tut mir leid, aber ich kann die Frage nicht beantworten, da ich zu der Frage keine spezifischen Informatioen habe"]
80
 
81
+ #################################################
82
+ #muss nocb aus Moodle importiert werden .. erstmal so...
83
+ correct_hash = hash_input("mensch")
84
+
85
  #################################################
86
  #Gesetzte Werte für Pfade, Prompts und Keys..
87
  #################################################
 
902
  doc.onPage = on_each_page
903
  doc.build(elements)
904
 
905
+ ##########################################
906
+ #Hashing....
907
+ # Funktion zum Hashen des Eingabewerts
908
+ def hash_input(input_string):
909
+ return hashlib.sha256(input_string.encode()).hexdigest()
910
 
911
 
912
  ########################################