QuantScaleAI / debug_startup.py
AJAY KASU
Fix: Robust Regex for Sentiment Guard
247775e
from main import QuantScaleSystem
import time
print("Instantiating System...")
start = time.time()
try:
s = QuantScaleSystem()
print(f"Instantiation complete in {time.time() - start:.2f}s")
except Exception as e:
print(f"Instantiation failed: {e}")