CoolFace
Apppublic

faisaltitu/Drift-Detection

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
__init__.py20 linesDownload Raw Back to api
1# API Module2"""FastAPI inference server for predictions."""3 4from .main import app5from .predictor import predictor, Predictor6from .database import log_prediction, get_predictions, get_prediction_count7from .models import PredictionRequest, PredictionResponse, HealthResponse8 9__all__ = [10    "app",11    "predictor",12    "Predictor",13    "log_prediction",14    "get_predictions",15    "get_prediction_count",16    "PredictionRequest",17    "PredictionResponse",18    "HealthResponse",19]20