Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 09bd321

Browse files
author
Frank
committed
zen: hide alpha models
1 parent 7ec32f8 commit 09bd321

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/console/app/src/routes/workspace/[id]/model-section.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const getModelsInfo = query(async (workspaceID: string) => {
2222
return withActor(async () => {
2323
return {
2424
all: Object.entries(ZenData.list().models)
25-
.filter(([id, _model]) => !["claude-3-5-haiku", "minimax-m2"].includes(id))
26-
.filter(([id, _model]) => !id.startsWith("an-"))
25+
.filter(([id, _model]) => !["claude-3-5-haiku"].includes(id))
26+
.filter(([id, _model]) => !id.startsWith("alpha-"))
2727
.sort(([_idA, modelA], [_idB, modelB]) => modelA.name.localeCompare(modelB.name))
2828
.map(([id, model]) => ({ id, name: model.name })),
2929
disabled: await Model.listDisabled(),

0 commit comments

Comments
 (0)