Hermes-Kontext-Ehrlichkeit + Leistungs-Graphen zurueck im Cockpit
(1) /v1/models meldet jetzt den ECHTEN Kontext pro Slot: --parallel teilt den Server-Kontext hart auf (131072 / 2 Slots = 65536). Vorher budgetierte Hermes gegen 131k -> Kompaktierung feuerte nie, llama-server kappte bei ~52k-Sessions Prompt/Antwort -> abgerissene Tool-Calls, Retry-Schleifen, gefuehlte Abstuerze (journalctl 07.07 17:11, 152 msgs / ~51.700 Tokens). Dazu auf der Box: context.engine 'default' (existiert nicht, warnte jeden Turn) -> 'compressor' (der echte eingebaute Name). (2) Cockpit: neue Sektion 'Leistung' mit den drei bestehenden Live-Karten (System-Status, Token-Durchsatz, Latenz je Turn) — waren nach UI v3 nur noch in der alten Zentrale, User will sie auf der Startseite. Browser- verifiziert gegen die Box (rendert live, keine Konsolen-Fehler). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+1
-1
File diff suppressed because one or more lines are too long
+151
-151
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -7,7 +7,7 @@
|
||||
<link rel="manifest" href="/manifest.webmanifest" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<title>Mission Control 2.0</title>
|
||||
<script type="module" crossorigin src="/assets/index-_1h7akwb.js"></script>
|
||||
<script type="module" crossorigin src="/assets/index-mi_JbBP4.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-DfNbRJ2k.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -13,6 +13,9 @@ import { useLucyHealth, type Repair } from "@/lib/useLucyHealth"
|
||||
import { useDialog } from "@/lib/useDialog"
|
||||
import { cn } from "@/lib/utils"
|
||||
import { CockpitTile } from "./CockpitTile"
|
||||
import { SystemStatusCard } from "@/components/dashboard/SystemStatusCard"
|
||||
import { TokenPerformanceCard } from "@/components/dashboard/TokenPerformanceCard"
|
||||
import { LatencyCard } from "@/components/dashboard/LatencyCard"
|
||||
|
||||
// Öffnet die bestehende System-Schublade (Pflege/Logs) via globalem Event.
|
||||
const openDrawer = (tab: "maintenance" | "logs") =>
|
||||
@@ -126,6 +129,20 @@ export function CockpitView({ onNavigate }: { onNavigate: (v: string) => void })
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Leistung — die Live-Graphen zurück auf der Startseite (User-Wunsch 07.07.:
|
||||
System-Verlauf, tok/s und Turn-Latenz waren nach dem UI-v3-Umbau nur noch in
|
||||
der alten Zentrale erreichbar). Karten sind autark (eigene Hooks/Polling). */}
|
||||
<section>
|
||||
<ZoneLabel>Leistung</ZoneLabel>
|
||||
<div className="grid gap-4 lg:grid-cols-2">
|
||||
<SystemStatusCard />
|
||||
<TokenPerformanceCard />
|
||||
</div>
|
||||
<div className="mt-4">
|
||||
<LatencyCard />
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Sekundäre Bereiche */}
|
||||
<section>
|
||||
<ZoneLabel>Mehr</ZoneLabel>
|
||||
|
||||
Reference in New Issue
Block a user