diff options
| author | Frank <[email protected]> | 2025-11-04 17:54:06 -0500 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-11-04 17:54:08 -0500 |
| commit | d3e080894ca9eb6432fb93d85d2e74d230921e14 (patch) | |
| tree | 3ebf5ae3fdf28dc0ae0ce0145eaa8dd723c76651 | |
| parent | ee9aa24a554f356529d3dcb32b702be8adf555b1 (diff) | |
| download | opencode-d3e080894ca9eb6432fb93d85d2e74d230921e14.tar.gz opencode-d3e080894ca9eb6432fb93d85d2e74d230921e14.zip | |
wip: zen
| -rw-r--r-- | packages/console/app/src/routes/workspace/[id]/model-section.tsx | 1 |
1 files changed, 1 insertions, 0 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 964f7dacb..223d69fc8 100644 --- a/packages/console/app/src/routes/workspace/[id]/model-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/model-section.tsx @@ -31,6 +31,7 @@ const getModelsInfo = query(async (workspaceID: string) => { return { all: Object.entries(ZenData.list().models) .filter(([id, _model]) => !["claude-3-5-haiku", "minimax-m2"].includes(id)) + .filter(([id, _model]) => !id.startsWith("an-")) .sort(([_idA, modelA], [_idB, modelB]) => modelA.name.localeCompare(modelB.name)) .map(([id, model]) => ({ id, name: model.name })), disabled: await Model.listDisabled(), |
