We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a8d72c commit ff8df2dCopy full SHA for ff8df2d
app/evaluation.py
@@ -14,6 +14,7 @@
14
# Get the directory of the current file to build relative paths
15
current_dir = os.path.dirname(os.path.abspath(__file__))
16
config_test_path = os.path.join(current_dir, 'config_tutor_test.json')
17
+config_path = os.path.join(current_dir, 'config_tutor.json')
18
19
try:
20
tutor = MathTutor(config_test_path)
@@ -22,7 +23,7 @@
22
23
for _ in range(max_retries):
24
sleep(1)
25
- tutor = MathTutor(config_test_path)
26
+ tutor = MathTutor(config_path)
27
except Exception as e:
28
error(f"An error occurred during the initialization of the tutor: {e}")
29
0 commit comments