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)
This commit is contained in:
2026-07-02 05:21:08 +00:00
commit cc9c903d6d
3 changed files with 140 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"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"
}
}