bowenchen118 commited on
Commit
aed6fa7
·
1 Parent(s): aece6b1
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -14,11 +14,11 @@ current_dir = os.path.dirname(os.path.abspath(__file__))
14
  project_root = os.path.dirname(os.path.dirname(os.path.dirname(current_dir)))
15
  sys.path.insert(0, project_root)
16
 
17
- from .opentools.models.initializer import Initializer
18
- from .opentools.models.planner import Planner
19
- from .opentools.models.memory import Memory
20
- from .opentools.models.executor import Executor
21
- from .opentools.models.utlis import make_json_serializable
22
 
23
  # solver = None
24
 
 
14
  project_root = os.path.dirname(os.path.dirname(os.path.dirname(current_dir)))
15
  sys.path.insert(0, project_root)
16
 
17
+ from opentools.models.initializer import Initializer
18
+ from opentools.models.planner import Planner
19
+ from opentools.models.memory import Memory
20
+ from opentools.models.executor import Executor
21
+ from opentools.models.utlis import make_json_serializable
22
 
23
  # solver = None
24