Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Coordinator API: - Changed FHEService from module-level instantiation to lazy loading - Added get_fhe_service() function to instantiate on first use - Updated fhe_ml_inference endpoint to use lazy-loaded service - Prevents import-time Concrete ML errors on Python 3.13 Concrete ML requires Python <3.13, but current version is 3.13.5. The FHEService gracefully handles the ImportError, but the module-level instantiation was causing the error during app startup. Lazy loading defers the instantiation until the endpoint is actually called.