summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-11-13 23:10:02 -0500
committerFrank <[email protected]>2025-11-13 23:10:06 -0500
commit09bd32169c8ddadb6c521f4b16977e1d3310c083 (patch)
tree9229812b81c6bc6e3b37231c4d0dbd9a4f599fc3
parent7ec32f834ecad7b9b18439b938cc67c590a36b79 (diff)
downloadopencode-09bd32169c8ddadb6c521f4b16977e1d3310c083.tar.gz
opencode-09bd32169c8ddadb6c521f4b16977e1d3310c083.zip
zen: hide alpha models
-rw-r--r--packages/console/app/src/routes/workspace/[id]/model-section.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/model-section.tsx b/packages/console/app/src/routes/workspace/[id]/model-section.tsx
index 9c4f87877..fe95a339a 100644
--- a/packages/console/app/src/routes/workspace/[id]/model-section.tsx
+++ b/packages/console/app/src/routes/workspace/[id]/model-section.tsx
@@ -22,8 +22,8 @@ const getModelsInfo = query(async (workspaceID: string) => {
return withActor(async () => {
return {
all: Object.entries(ZenData.list().models)
- .filter(([id, _model]) => !["claude-3-5-haiku", "minimax-m2"].includes(id))
- .filter(([id, _model]) => !id.startsWith("an-"))
+ .filter(([id, _model]) => !["claude-3-5-haiku"].includes(id))
+ .filter(([id, _model]) => !id.startsWith("alpha-"))
.sort(([_idA, modelA], [_idB, modelB]) => modelA.name.localeCompare(modelB.name))
.map(([id, model]) => ({ id, name: model.name })),
disabled: await Model.listDisabled(),