File size: 611 Bytes
f38488f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/usr/bin/env python3
import time
from src.comm.channel import channel
from src.loop.self_healing import SelfHealingLoop
from src.core.watchdog import Watchdog
def main():
print("[SYSTEM] Starting Vitalis Synthetic Neural-Flow Engine...")
# Initialize Core Systems
loop = SelfHealingLoop()
watchdog = Watchdog()
# Start the continuous loop
try:
while True:
watchdog.monitor()
loop.run()
time.sleep(1)
except KeyboardInterrupt:
print("[SYSTEM] Vitalis Engine Halted by Operator.")
if __name__ == "__main__":
main()
|