From 8f5fac6470aece5cbf3749fec155cf52053349ff Mon Sep 17 00:00:00 2001 From: "info@pi-farm.de" Date: Fri, 6 Mar 2026 23:00:10 +0000 Subject: [PATCH] templates/index.html aktualisiert --- templates/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/index.html b/templates/index.html index 4f26362..3dbf17e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,7 +2,7 @@ - Pi-Orchestrator AI Dashboard + J.A.R.V.I.S. AI Dashboard @@ -115,7 +115,7 @@
-
🤖 KI-Orchestrator
+
🤖 J.A.R.V.I.S. AI Dashboard
@@ -176,7 +176,7 @@
-
💬 KI Chat ⠿
+
💬 J.A.R.V.I.S. - Chat ⠿
@@ -488,12 +488,12 @@ }; const chatWs = new WebSocket(`ws://${location.host}/ws/chat`); - chatWs.onmessage = (ev) => appendChat("KI", ev.data, "text-blue-400 font-bold"); + chatWs.onmessage = (ev) => appendChat("J.A.R.V.I.S.", ev.data, "text-blue-400 font-bold"); initChat(chatWs); window.appendChat = function(user, msg, classes) { const win = document.getElementById('chat-window'); - let formattedMsg = (user === "KI") ? marked.parse(msg) : msg; + let formattedMsg = (user === "J.A.R.V.I.S.") ? marked.parse(msg) : msg; win.innerHTML += `
${user}
${formattedMsg}
`; win.scrollTop = win.scrollHeight; };