Update utils/utils.py
Browse files- utils/utils.py +1 -1
utils/utils.py
CHANGED
|
@@ -11,7 +11,7 @@ def get_questions(file_path, level):
|
|
| 11 |
result=[]
|
| 12 |
|
| 13 |
for index, row in df.iterrows():
|
| 14 |
-
result.append([row["Question"], row["
|
| 15 |
|
| 16 |
return result
|
| 17 |
|
|
|
|
| 11 |
result=[]
|
| 12 |
|
| 13 |
for index, row in df.iterrows():
|
| 14 |
+
result.append([row["Question"], row["Final answer"], row["file_name"]])
|
| 15 |
|
| 16 |
return result
|
| 17 |
|