From dcc3206e517455cc575937a2c762c336521dbfd0 Mon Sep 17 00:00:00 2001 From: Corey Ogburn Date: Thu, 13 Nov 2025 15:32:28 -0700 Subject: [PATCH] Add Enabled Flag to Models --- salt/soc/defaults.yaml | 4 ++++ salt/soc/soc_soc.yaml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/salt/soc/defaults.yaml b/salt/soc/defaults.yaml index b6a7afe79..2cbf89904 100644 --- a/salt/soc/defaults.yaml +++ b/salt/soc/defaults.yaml @@ -2562,18 +2562,22 @@ soc: contextLimitSmall: 200000 contextLimitLarge: 1000000 lowBalanceColorAlert: 500000 + enabled: true - id: sonnet-4.5 displayName: Claude Sonnet 4.5 contextLimitSmall: 200000 contextLimitLarge: 1000000 lowBalanceColorAlert: 500000 + enabled: true - id: gptoss-120b displayName: GPT-OSS 120B contextLimitSmall: 128000 contextLimitLarge: 128000 lowBalanceColorAlert: 500000 + enabled: true - id: qwen-235b displayName: QWEN 235B contextLimitSmall: 256000 contextLimitLarge: 256000 lowBalanceColorAlert: 500000 + enabled: true diff --git a/salt/soc/soc_soc.yaml b/salt/soc/soc_soc.yaml index 3013c62c2..32619f511 100644 --- a/salt/soc/soc_soc.yaml +++ b/salt/soc/soc_soc.yaml @@ -651,6 +651,9 @@ soc: label: Low Balance Color Alert forcedType: int required: True + - field: enabled + label: Enabled + forcedType: bool apiTimeoutMs: description: Duration (in milliseconds) to wait for a response from the SOC server API before giving up and showing an error on the SOC UI. global: True