@beastmode-develeap/beastmode 0.1.364 → 0.1.365
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web/board.html +33 -11
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
package/dist/web/board.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260605-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260605-034414-4ae0705";</script>
|
|
19
19
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
20
20
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
21
21
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
@@ -10291,11 +10291,15 @@ function SettingsPage() {
|
|
|
10291
10291
|
</div>
|
|
10292
10292
|
<div class="setting-control">
|
|
10293
10293
|
<input type="number" class="form-input" min="0" max="10000" step="1" style="width:90px;text-align:center"
|
|
10294
|
-
|
|
10294
|
+
placeholder="50"
|
|
10295
|
+
value=${cost.per_item_usd_cap !== undefined ? cost.per_item_usd_cap : ''}
|
|
10295
10296
|
onInput=${e => {
|
|
10296
|
-
const
|
|
10297
|
-
updateField('cost.per_item_usd_cap',
|
|
10297
|
+
const raw = e.target.value;
|
|
10298
|
+
if (raw === '') { updateField('cost.per_item_usd_cap', undefined); return; }
|
|
10299
|
+
const v = parseFloat(raw);
|
|
10300
|
+
updateField('cost.per_item_usd_cap', Number.isFinite(v) ? Math.max(0, Math.min(10000, v)) : undefined);
|
|
10298
10301
|
}} />
|
|
10302
|
+
${cost.per_item_usd_cap === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10299
10303
|
</div>
|
|
10300
10304
|
</div>
|
|
10301
10305
|
|
|
@@ -10310,6 +10314,7 @@ function SettingsPage() {
|
|
|
10310
10314
|
onChange=${e => updateField('cost.model_tiering_enabled', e.target.checked)} />
|
|
10311
10315
|
<span class="toggle-slider"></span>
|
|
10312
10316
|
</label>
|
|
10317
|
+
${cost.model_tiering_enabled === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10313
10318
|
</div>
|
|
10314
10319
|
</div>
|
|
10315
10320
|
|
|
@@ -10324,6 +10329,7 @@ function SettingsPage() {
|
|
|
10324
10329
|
onChange=${e => updateField('cost.incremental_verification', e.target.checked)} />
|
|
10325
10330
|
<span class="toggle-slider"></span>
|
|
10326
10331
|
</label>
|
|
10332
|
+
${cost.incremental_verification === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10327
10333
|
</div>
|
|
10328
10334
|
</div>
|
|
10329
10335
|
|
|
@@ -10334,8 +10340,14 @@ function SettingsPage() {
|
|
|
10334
10340
|
</div>
|
|
10335
10341
|
<div class="setting-control">
|
|
10336
10342
|
<input type="number" class="form-input" min="1" max="20" style="width:80px;text-align:center"
|
|
10337
|
-
|
|
10338
|
-
|
|
10343
|
+
placeholder="3"
|
|
10344
|
+
value=${cost.full_reverify_interval !== undefined ? cost.full_reverify_interval : ''}
|
|
10345
|
+
onInput=${e => {
|
|
10346
|
+
const raw = e.target.value;
|
|
10347
|
+
if (raw === '') { updateField('cost.full_reverify_interval', undefined); return; }
|
|
10348
|
+
updateField('cost.full_reverify_interval', parseInt(raw) || 3);
|
|
10349
|
+
}} />
|
|
10350
|
+
${cost.full_reverify_interval === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10339
10351
|
</div>
|
|
10340
10352
|
</div>
|
|
10341
10353
|
|
|
@@ -10351,12 +10363,13 @@ function SettingsPage() {
|
|
|
10351
10363
|
<input type="checkbox" checked=${cost.build_check_enabled !== false}
|
|
10352
10364
|
onChange=${e => {
|
|
10353
10365
|
if (!e.target.checked && !window.confirm('Disable the build check? Broken builds will no longer be caught before verification.')) {
|
|
10354
|
-
|
|
10366
|
+
e.target.checked = true; return;
|
|
10355
10367
|
}
|
|
10356
10368
|
updateField('cost.build_check_enabled', e.target.checked);
|
|
10357
10369
|
}} />
|
|
10358
10370
|
<span class="toggle-slider"></span>
|
|
10359
10371
|
</label>
|
|
10372
|
+
${cost.build_check_enabled === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10360
10373
|
</div>
|
|
10361
10374
|
</div>
|
|
10362
10375
|
|
|
@@ -10368,8 +10381,9 @@ function SettingsPage() {
|
|
|
10368
10381
|
<div class="setting-control">
|
|
10369
10382
|
<input type="text" class="form-input" style="width:180px"
|
|
10370
10383
|
placeholder="npm run build"
|
|
10371
|
-
value=${cost.build_check_command
|
|
10372
|
-
onInput=${e => updateField('cost.build_check_command', e.target.value)} />
|
|
10384
|
+
value=${cost.build_check_command !== undefined ? cost.build_check_command : ''}
|
|
10385
|
+
onInput=${e => updateField('cost.build_check_command', e.target.value || undefined)} />
|
|
10386
|
+
${cost.build_check_command === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10373
10387
|
</div>
|
|
10374
10388
|
</div>
|
|
10375
10389
|
|
|
@@ -10380,8 +10394,14 @@ function SettingsPage() {
|
|
|
10380
10394
|
</div>
|
|
10381
10395
|
<div class="setting-control">
|
|
10382
10396
|
<input type="number" class="form-input" min="1" max="3600" style="width:90px;text-align:center"
|
|
10383
|
-
|
|
10384
|
-
|
|
10397
|
+
placeholder="90"
|
|
10398
|
+
value=${cost.build_check_timeout_seconds !== undefined ? cost.build_check_timeout_seconds : ''}
|
|
10399
|
+
onInput=${e => {
|
|
10400
|
+
const raw = e.target.value;
|
|
10401
|
+
if (raw === '') { updateField('cost.build_check_timeout_seconds', undefined); return; }
|
|
10402
|
+
updateField('cost.build_check_timeout_seconds', parseInt(raw) || 90);
|
|
10403
|
+
}} />
|
|
10404
|
+
${cost.build_check_timeout_seconds === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10385
10405
|
</div>
|
|
10386
10406
|
</div>
|
|
10387
10407
|
|
|
@@ -10396,6 +10416,7 @@ function SettingsPage() {
|
|
|
10396
10416
|
onChange=${e => updateField('cost.nlspec_precheck_enabled', e.target.checked)} />
|
|
10397
10417
|
<span class="toggle-slider"></span>
|
|
10398
10418
|
</label>
|
|
10419
|
+
${cost.nlspec_precheck_enabled === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10399
10420
|
</div>
|
|
10400
10421
|
</div>
|
|
10401
10422
|
|
|
@@ -10413,6 +10434,7 @@ function SettingsPage() {
|
|
|
10413
10434
|
.filter(Boolean)
|
|
10414
10435
|
.map(m => html`<option key=${m} value=${m}>${m}</option>`)}
|
|
10415
10436
|
</select>
|
|
10437
|
+
${cost.nlspec_precheck_model === undefined ? html`<span style="font-size:11px;color:#aaa;font-style:italic">(default)</span>` : null}
|
|
10416
10438
|
</div>
|
|
10417
10439
|
</div>
|
|
10418
10440
|
</div>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4ae0705a9bfd26f4f9f724535b2c9a1b8b6ac051
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260605-
|
|
1
|
+
20260605-034414-4ae0705
|