scholarshipid / src /serving /__init__.py
ydmhmhm's picture
docs: add FastAPI serving and update project documentation
75f969a
Raw
History Blame Contribute Delete
200 Bytes
"""Serving module: inference engine + FastAPI endpoints."""
from src.serving.inference_engine import InferenceEngine
from src.serving.api import create_app
__all__ = ["InferenceEngine", "create_app"]