Spaces:
Runtime error
Runtime error
Commit
·
3c8b724
1
Parent(s):
e5287e2
Update app.py
Browse files
app.py
CHANGED
@@ -28,6 +28,8 @@ def inference(input_text):
|
|
28 |
break
|
29 |
question_part = question_answer_pairs[i][1].split("?")[0] + "?"
|
30 |
answer_part = question_answer_pairs[i][1].split("?")[1].strip()
|
|
|
|
|
31 |
result += f"Question: {question_part}\nAnswer: {answer_part}\n\n"
|
32 |
|
33 |
return result
|
|
|
28 |
break
|
29 |
question_part = question_answer_pairs[i][1].split("?")[0] + "?"
|
30 |
answer_part = question_answer_pairs[i][1].split("?")[1].strip()
|
31 |
+
if answer_part not in input_text:
|
32 |
+
break
|
33 |
result += f"Question: {question_part}\nAnswer: {answer_part}\n\n"
|
34 |
|
35 |
return result
|