feat: add LiteLLM health page to dashboard
Deploy Dashboard (Dev) / deploy-dev (push) Successful in 2m45s

Expose LiteLLM operational status in the NAS Dashboard UI so auth-required and outage states are visible without calling backend APIs directly.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Gan, Jimmy
2026-03-02 03:50:56 +08:00
parent 56743d1cf4
commit 910ed3f7e6
4 changed files with 118 additions and 0 deletions
+4
View File
@@ -139,6 +139,10 @@ export function savePreferences(data) {
return request("/auth/preferences", { method: "PUT", json: data });
}
export function getLiteLLMHealth() {
return get("/litellm/health");
}
export function put(path, data) {
return request(path, { method: "PUT", json: data });
}