Update run.py
Browse files
run.py
CHANGED
@@ -139,7 +139,7 @@ def responsecritical(
|
|
139 |
for responsec in streamc:
|
140 |
outputc += responsec.token.text
|
141 |
sentence_lower = outputc.lower()
|
142 |
-
|
143 |
# Check if the word 'nein' is in the sentence
|
144 |
if 'nein' in sentence_lower:
|
145 |
return True
|
@@ -164,11 +164,11 @@ def response(
|
|
164 |
|
165 |
|
166 |
if responsecritical(prompt)==False:
|
167 |
-
|
168 |
else:
|
169 |
answernc=parse_for_nc(prompt)
|
170 |
if answernc!="No":
|
171 |
-
|
172 |
else:
|
173 |
prompt = re.sub(r'\buni\b', 'Universität', prompt, flags=re.IGNORECASE)
|
174 |
addon=""
|
|
|
139 |
for responsec in streamc:
|
140 |
outputc += responsec.token.text
|
141 |
sentence_lower = outputc.lower()
|
142 |
+
print("Done critcial")
|
143 |
# Check if the word 'nein' is in the sentence
|
144 |
if 'nein' in sentence_lower:
|
145 |
return True
|
|
|
164 |
|
165 |
|
166 |
if responsecritical(prompt)==False:
|
167 |
+
yield "Es scheint so, als sei dies keine Frage, die sich auf die Studienorientierung bezieht"
|
168 |
else:
|
169 |
answernc=parse_for_nc(prompt)
|
170 |
if answernc!="No":
|
171 |
+
yield answernc
|
172 |
else:
|
173 |
prompt = re.sub(r'\buni\b', 'Universität', prompt, flags=re.IGNORECASE)
|
174 |
addon=""
|