CoolFace
Apppublic

Pamudu13/gemma-3-chat

sourceHugging Faceupdated 25d agoView on Hugging Face
0likes
node_api.py8 linesDownload Raw Back to py
1import shutil2from fastapi import APIRouter3 4router = APIRouter(prefix="/api/node")5 6@router.get("/probe")7def probe():8    return {"installed": shutil.which("node") is not None}