From 36fa34c5ab70f9c1a1f2fd05d651adfa1a95299c Mon Sep 17 00:00:00 2001 From: FirephoenixX02 Date: Sat, 6 Sep 2025 13:26:22 +0200 Subject: [PATCH 1/4] Fix typo in install instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44ad47c..6ca4cd0 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Run the NOMYO Router in a dedicated virtual environment, install the requirement ``` python3 -m venv .venv/router source .venv/router/bin/activate -pip3 install requirements.txt -r +pip3 install -r requirements.txt ``` finally you can From 62a4c700c3acefa91d0b7710fdc2b3b8899ecfed Mon Sep 17 00:00:00 2001 From: FirephoenixX02 Date: Sat, 6 Sep 2025 15:37:36 +0200 Subject: [PATCH 2/4] Improve design and add dark mode with toggle button --- static/index.html | 870 ++++++++++++++++++++++++++++++---------------- 1 file changed, 569 insertions(+), 301 deletions(-) diff --git a/static/index.html b/static/index.html index 8237c79..5793ef4 100644 --- a/static/index.html +++ b/static/index.html @@ -1,338 +1,606 @@ - + - - -NOMYO Router Dashboard - - - - -

Router Dashboard

+ + + NOMYO Router Dashboard + + + + + +

Router Dashboard

-
- -
-
-

Available Models (Tags)

-
- - - - -
-
+ + +
+ +
+
+

+ Available Models (Tags) +

+
+ + + + +
+
- - - -
ModelDigest
Loading…
-
+ + + + + + + + + + + + +
ModelDigest
Loading…
+
- -
-

Running Models (PS)

- - - - - - - - - - - -
ModelParamsQuantCtxDigest
Loading…
+ +
+

Running Models (PS)

+ + + + + + + + + + + + + + + +
ModelParamsQuantCtxDigest
Loading…
- -
-
-
+ +
+
+
+
+

Configured Endpoints

+ + + + + + + + + + + + + +
EndpointStatusVersion
Loading…
+
-

Configured Endpoints

- - - - - - - - - -
EndpointStatusVersion
Loading…
+ + /* ---------- Init ---------- */ + window.addEventListener("load", () => { + loadEndpoints(); + loadTags(); + loadPS(); + loadUsage(); + setInterval(loadPS, 60_000); + setInterval(loadEndpoints, 300_000); + }); + - - - \ No newline at end of file + + + From 5132adc8bedecb5610004f66c2cb21b6a4d7e829 Mon Sep 17 00:00:00 2001 From: FirephoenixX02 Date: Sat, 6 Sep 2025 16:07:45 +0200 Subject: [PATCH 3/4] Replace fontawesome with emoji for less dependencies --- static/index.html | 51 ++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/static/index.html b/static/index.html index 5793ef4..f2908ff 100644 --- a/static/index.html +++ b/static/index.html @@ -3,7 +3,6 @@ NOMYO Router Dashboard -