From ee86e00107d7732db4fcbc40d222d6f7bd27152d Mon Sep 17 00:00:00 2001 From: Acbox Date: Fri, 24 Apr 2026 11:39:15 +0800 Subject: [PATCH] fix(web): hide reasoning efforts on model cards Keep provider model cards focused on high-level model capabilities instead of exposing per-model reasoning effort options in the summary view. --- .../src/pages/providers/components/model-item.vue | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/apps/web/src/pages/providers/components/model-item.vue b/apps/web/src/pages/providers/components/model-item.vue index d7a2f83d..4eddc281 100644 --- a/apps/web/src/pages/providers/components/model-item.vue +++ b/apps/web/src/pages/providers/components/model-item.vue @@ -35,14 +35,6 @@ - - {{ effort }} - (null) -const reasoningEfforts = computed(() => ((props.model.config as ModelConfigWithReasoning | undefined)?.reasoning_efforts ?? [])) const typeIcon = computed(() => { return props.model.type === 'embedding' ? Binary : MessageSquare