From 7f016f5f336093a684769f5d2413aa77e2510000 Mon Sep 17 00:00:00 2001 From: ethernet Date: Thu, 4 Jun 2026 23:48:02 -0400 Subject: [PATCH] change(desktop): show up to 50 models in list per provider by default --- apps/desktop/src/store/model-visibility.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/store/model-visibility.ts b/apps/desktop/src/store/model-visibility.ts index b6d3d51dc..4f3ce744c 100644 --- a/apps/desktop/src/store/model-visibility.ts +++ b/apps/desktop/src/store/model-visibility.ts @@ -7,7 +7,7 @@ const STORAGE_KEY = 'hermes.desktop.visible-models' /** Models shown per provider in the status-bar dropdown before the user has * customized the list. Backend `models` are already relevance-ordered. */ -export const DEFAULT_VISIBLE_PER_PROVIDER = 5 +export const DEFAULT_VISIBLE_PER_PROVIDER = 50 /** Stable key for a provider/model pair (`::` avoids colliding with model ids * that contain a single colon, e.g. `model:tag`). */