File size: 289 Bytes
1f01a3c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/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()
|