summaryrefslogtreecommitdiffhomepage
path: root/packages/console/core/script
diff options
context:
space:
mode:
authorFrank <[email protected]>2026-02-17 01:32:57 -0500
committerFrank <[email protected]>2026-02-17 01:32:57 -0500
commita93a1b93e119a976935e5ab6f214ef7c33d60d45 (patch)
tree06884ea188b36c63bb754d73ee15b7c3605e482a /packages/console/core/script
parentace63b3ddb99335b9ff71121336f70407c4b3ea5 (diff)
downloadopencode-a93a1b93e119a976935e5ab6f214ef7c33d60d45.tar.gz
opencode-a93a1b93e119a976935e5ab6f214ef7c33d60d45.zip
wip: zen
Diffstat (limited to 'packages/console/core/script')
-rwxr-xr-xpackages/console/core/script/promote-models.ts2
-rwxr-xr-xpackages/console/core/script/update-models.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/console/core/script/promote-models.ts b/packages/console/core/script/promote-models.ts
index 17715bedf..aa9f20abc 100755
--- a/packages/console/core/script/promote-models.ts
+++ b/packages/console/core/script/promote-models.ts
@@ -9,7 +9,7 @@ const stage = process.argv[2]
if (!stage) throw new Error("Stage is required")
const root = path.resolve(process.cwd(), "..", "..", "..")
-const PARTS = 20
+const PARTS = 30
// read the secret
const ret = await $`bun sst secret list`.cwd(root).text()
diff --git a/packages/console/core/script/update-models.ts b/packages/console/core/script/update-models.ts
index 9025a6526..6d7f7662a 100755
--- a/packages/console/core/script/update-models.ts
+++ b/packages/console/core/script/update-models.ts
@@ -7,7 +7,7 @@ import { ZenData } from "../src/model"
const root = path.resolve(process.cwd(), "..", "..", "..")
const models = await $`bun sst secret list`.cwd(root).text()
-const PARTS = 20
+const PARTS = 30
// read the line starting with "ZEN_MODELS"
const lines = models.split("\n")