cc9c903d6d
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)
14 lines
257 B
JSON
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"
|
|
}
|
|
}
|