Spaces:
Sleeping
Sleeping
File size: 413 Bytes
3f3d260 95b1d1f 3f3d260 95b1d1f 3f3d260 95b1d1f 3f3d260 95b1d1f 3f3d260 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # 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()
@router.get("/api/models/info")
async def models_info():
"""Get basic model information"""
return {
"classifier": "hf_savedmodel",
"segmenter": "hf_savedmodel",
"status": "production",
} |