async def status(): with http_error_handling(): return {"ok": True}
async def explain(inputs: Dict[str, Any]): with http_error_handling(): return sanitize(pipeline.explain(**inputs))
async def config(): with http_error_handling(): return pipeline.config.as_dict()
async def predict(inputs: Dict[str, Any]): with http_error_handling(): return sanitize(pipeline.predict(**inputs))