Spaces:
Paused
Paused
from fastapi import APIRouter | |
from core import INTENT_MODELS | |
router = APIRouter() | |
def health(): | |
return {"status": "ok"} | |
def health_intents(): | |
loaded_projects = list(INTENT_MODELS.keys()) | |
return {"status": "ok", "loaded_projects": loaded_projects} |