Skip to content

Commit 49d598e

Browse files
committed
feat: refactor notebook into a structured project
1 parent 716481e commit 49d598e

File tree

7 files changed

+1106
-0
lines changed

7 files changed

+1106
-0
lines changed

backend/geometry_tutor/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""
2+
AI Geometry Tutor for Vietnamese High School Students
3+
4+
This package implements an AI-powered Geometry Tutor system using LangGraph
5+
and LLM-native reasoning designed for Vietnamese high school students.
6+
"""
7+
8+
from .tutor import GeometryTutor
9+
from .core import GraphState, create_initial_state
10+
11+
__version__ = "0.1.0"
12+
__all__ = ["GeometryTutor", "GraphState", "create_initial_state"]

0 commit comments

Comments
 (0)