Files
engineer cc9c903d6d Fix: Use correct health check endpoints for LiteLLM and Letta
Root cause: Status API was using wrong health endpoints:
- LiteLLM /health requires API key auth (returns 401) -> changed to /health/readiness (no auth)
- Letta /api/health returns 404 -> changed to /v1/health/ (correct endpoint)
2026-07-02 05:21:08 +00:00

14 lines
257 B
JSON

{
"name": "apex-status-api",
"version": "1.0.0",
"description": "APEX OS Platform Health Monitor",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "node test.js"
},
"dependencies": {
"express": "^4.18.0"
}
}