diff --git a/config/example_profile.json b/config/example_profile.json deleted file mode 100644 index a31980b1..00000000 --- a/config/example_profile.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "student_id": "student001", - "target_grade": "11th grade", - "learning_goal": "Understand and apply key concepts in linear algebra", - "prior_knowledge_level": "intermediate", - "topics": [ - { - "name": "vectors", - "proficiency": 0.65, - "sub_topics": ["vector addition", "scalar multiplication", "dot product", "cross product"] - }, - { - "name": "matrices", - "proficiency": 0.50, - "sub_topics": ["matrix operations", "determinants", "inverse matrices", "matrix transformations"] - }, - { - "name": "linear_systems", - "proficiency": 0.40, - "sub_topics": ["gaussian elimination", "cramer's rule", "homogeneous systems"] - }, - { - "name": "eigenvalues_eigenvectors", - "proficiency": 0.30, - "sub_topics": ["characteristic polynomial", "diagonalization", "applications"] - } - ], - "preferred_learning_style": "visual", - "attention_span_minutes": 45, - "target_milestones": [ - "Solve systems of linear equations confidently", - "Understand eigenvalues and eigenvectors conceptually", - "Apply matrix transformations to geometric problems" - ], - "current_avg_score": 73 - } \ No newline at end of file diff --git a/environments/community/tutor_rl_agent/runner/run_loop.py b/environments/community/tutor_rl_agent/runner/run_loop.py index 7c222a29..e2704228 100644 --- a/environments/community/tutor_rl_agent/runner/run_loop.py +++ b/environments/community/tutor_rl_agent/runner/run_loop.py @@ -94,7 +94,7 @@ def main(): return # Path to student profile - profile_path = "example_profile.json" + profile_path = "config/example_profile.json" # Create environment env = TutorEnv(profile_path=profile_path, render_mode="human") diff --git a/requirements.txt b/requirements.txt index c47c40a8..85f51928 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,4 @@ python-dotenv>=0.19.0 gymnasium>=0.28.1 numpy>=1.24.0 # Atropos would be included here in a full implementation -# atropos>=0.1.0 \ No newline at end of file +# atropos>=0.1.0