precison9 commited on
Commit
1f01a3c
·
verified ·
1 Parent(s): a68fa44

Add app.py entry point

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Multeclaw — Multi-Model AI Agent System
4
+ Entry point for the application.
5
+ """
6
+
7
+ import sys
8
+ import os
9
+
10
+ # Add project root to path
11
+ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
12
+
13
+ from multeclaw.ui import main
14
+
15
+ if __name__ == "__main__":
16
+ main()