omnidiag / backend /__init__.py
yahyoha's picture
feat: implement dynamic disease routing and model loading with Pydantic schemas
d8d2ed6
Raw
History Blame Contribute Delete
225 Bytes
# OmniDiag Backend Package
# Dynamic multi-disease diagnostic API with SHAP explainability.
from backend.router import OmniDiagRouter
from backend.model_loader import ModelLoader
__all__ = ["OmniDiagRouter", "ModelLoader"]