File size: 513 Bytes
debe354 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/usr/bin/env python3
"""
QuantumAP — Quantum AP Orchestrator
Direct entry point: python quantumap.py
Usage:
python quantumap.py # Demo mode
python quantumap.py --checkpoint FILE # Process safetensors
python quantumap.py --test # Run tests
python quantumap.py --info # Architecture info
"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from src.cli import main
if __name__ == "__main__":
main()
|