Manifest shortcomings
-- ${(state.manifest.shortcomings || []).map(item => html`
- ${item} `)}
diff --git a/starpilot/system/the_galaxy/assets/components/router.js b/starpilot/system/the_galaxy/assets/components/router.js index e22adaf8d..d5019b9dd 100644 --- a/starpilot/system/the_galaxy/assets/components/router.js +++ b/starpilot/system/the_galaxy/assets/components/router.js @@ -21,7 +21,7 @@ import { Sidebar } from "/assets/components/sidebar.js?v=controllers-nav-1" import { SentryMode } from "/assets/components/tools/sentry.js" import { SpeedLimits } from "/assets/components/tools/speed_limits.js" import { ModelManager } from "/assets/components/tools/model_manager.js?v=20260825a" -import { ModelLaboratory } from "/assets/components/tools/model_laboratory.js?v=model-lab-1" +import { ModelLaboratory } from "/assets/components/tools/model_laboratory.js?v=model-lab-4" import { LivePlots } from "/assets/components/tools/plots.js" import { ThemeMaker } from "/assets/components/tools/theme_maker.js" import { TestingGround } from "/assets/components/tools/testing_ground.js" diff --git a/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.css b/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.css index 030380245..cdb3a361e 100644 --- a/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.css +++ b/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.css @@ -229,30 +229,13 @@ overflow-wrap: anywhere; } -.ml-findings { - display: grid; - gap: var(--gap-md); - grid-template-columns: repeat(2, minmax(0, 1fr)); -} - -.ml-findings ul { - color: var(--text-muted); - margin-bottom: 0; - padding-left: 1.2rem; -} - -.ml-findings li + li { - margin-top: 0.45rem; -} - @media (max-width: 760px) { .ml-wrapper { padding-right: 0; } .ml-pair, - .ml-runtime-grid, - .ml-findings { + .ml-runtime-grid { grid-template-columns: 1fr; } diff --git a/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.js b/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.js index cdce53bde..592db14b6 100644 --- a/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.js +++ b/starpilot/system/the_galaxy/assets/components/tools/model_laboratory.js @@ -230,7 +230,7 @@ function renderModel(model) {
Use the lateral judgment of one small model and the longitudinal judgment of another.
Both precompiled small models stay resident and run every camera frame on Chestnut's AMD GPU.
The configuration activates when modeld starts for a drive.
- + ${() => state.runtime?.active ? "Pair active" : state.runtime?.requested ? "Pair requested" : "Inactive"} @@ -354,28 +353,17 @@ export function ModelLaboratory() {${state.summary.ready || 0} AMD-ready · ${state.summary.published || 0} published · ${state.summary.eligible || 0} eligible small models.
+${() => `${state.summary.ready || 0} ready to pair · ${Math.max((state.summary.published || 0) - (state.summary.ready || 0), 0)} available to download.`}