Spaces:
Runtime error
Runtime error
Greg Thompson
commited on
Commit
·
8d43cf4
1
Parent(s):
f667ba8
Update import statements from conversation manager
Browse files
mathtext_fastapi/conversation_manager.py
CHANGED
|
@@ -14,8 +14,8 @@ from mathtext_fastapi.math_subtraction_fsm import MathSubtractionFSM
|
|
| 14 |
from supabase import create_client
|
| 15 |
from transitions import Machine
|
| 16 |
|
| 17 |
-
from
|
| 18 |
-
from
|
| 19 |
|
| 20 |
load_dotenv()
|
| 21 |
|
|
|
|
| 14 |
from supabase import create_client
|
| 15 |
from transitions import Machine
|
| 16 |
|
| 17 |
+
from mathactive.generators import start_interactive_math
|
| 18 |
+
from mathactive.hints import generate_hint
|
| 19 |
|
| 20 |
load_dotenv()
|
| 21 |
|
mathtext_fastapi/v2_conversation_manager.py
CHANGED
|
@@ -16,8 +16,8 @@ from mathtext_fastapi.math_subtraction_fsm import MathSubtractionFSM
|
|
| 16 |
from supabase import create_client
|
| 17 |
from transitions import Machine
|
| 18 |
|
| 19 |
-
from
|
| 20 |
-
from
|
| 21 |
|
| 22 |
load_dotenv()
|
| 23 |
|
|
|
|
| 16 |
from supabase import create_client
|
| 17 |
from transitions import Machine
|
| 18 |
|
| 19 |
+
from mathactive.generators import start_interactive_math
|
| 20 |
+
from mathactive.hints import generate_hint
|
| 21 |
|
| 22 |
load_dotenv()
|
| 23 |
|