Spaces:
Sleeping
Sleeping
| # app/services/routing.py | |
| # ✅ This file is now simplified - no A/B testing or model versioning needed | |
| # Kept for future extensibility | |
| from fastapi import APIRouter | |
| router = APIRouter() | |
| async def models_info(): | |
| """Get basic model information""" | |
| return { | |
| "classifier": "hf_savedmodel", | |
| "segmenter": "hf_savedmodel", | |
| "status": "production", | |
| } |