OpenEEGBench / backend /app /api /router.py
bruAristimunha's picture
Add HF eval-results benchmark registry and API endpoint
6f5cc9b
raw
history blame contribute delete
434 Bytes
from fastapi import APIRouter
from app.api.endpoints import leaderboard, votes, models, benchmarks
router = APIRouter()
router.include_router(leaderboard.router, prefix="/leaderboard", tags=["leaderboard"])
router.include_router(votes.router, prefix="/votes", tags=["votes"])
router.include_router(models.router, prefix="/models", tags=["models"])
router.include_router(benchmarks.router, prefix="/benchmarks", tags=["benchmarks"])