diff options
| author | Frank <[email protected]> | 2026-02-08 10:31:07 -0500 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-02-08 10:31:09 -0500 |
| commit | 80c1c59ed34cd19119bbb53f40e5214cae35ad29 (patch) | |
| tree | 3ba62af0b3f067064fa9eed15e2b17301e5a33b8 /packages/console/core/script | |
| parent | 7c6b8d7a8a7180f330b83b736c46a62fb5f91258 (diff) | |
| download | opencode-80c1c59ed34cd19119bbb53f40e5214cae35ad29.tar.gz opencode-80c1c59ed34cd19119bbb53f40e5214cae35ad29.zip | |
wip: zen
Diffstat (limited to 'packages/console/core/script')
| -rwxr-xr-x | packages/console/core/script/promote-models.ts | 2 | ||||
| -rwxr-xr-x | packages/console/core/script/pull-models.ts | 2 | ||||
| -rwxr-xr-x | packages/console/core/script/update-models.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/console/core/script/promote-models.ts b/packages/console/core/script/promote-models.ts index 62d9bd6ff..17715bedf 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 = 10 +const PARTS = 20 // read the secret const ret = await $`bun sst secret list`.cwd(root).text() diff --git a/packages/console/core/script/pull-models.ts b/packages/console/core/script/pull-models.ts index 01240a715..4c376210f 100755 --- a/packages/console/core/script/pull-models.ts +++ b/packages/console/core/script/pull-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 = 10 +const PARTS = 20 // read the secret const ret = await $`bun sst secret list --stage ${stage}`.cwd(root).text() diff --git a/packages/console/core/script/update-models.ts b/packages/console/core/script/update-models.ts index 7d1fa99c3..9025a6526 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 = 10 +const PARTS = 20 // read the line starting with "ZEN_MODELS" const lines = models.split("\n") |
