| #!/usr/bin/env python3 | |
| """ | |
| Multeclaw — Multi-Model AI Agent System | |
| Entry point for the application. | |
| """ | |
| import sys | |
| import os | |
| # Add project root to path | |
| sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) | |
| from multeclaw.ui import main | |
| if __name__ == "__main__": | |
| main() | |