mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
feat!: default CODER_AI_GATEWAY_ENABLED to true (#25575)
`CODER_AI_GATEWAY_ENABLED` / `CODER_AIBRIDGE_ENABLED` is now being defaulted to `true` now that it will be used by Coder Agents. If you previously had this value disabled explicitly, that value will persist.
This commit is contained in:
@@ -250,7 +250,7 @@ func (n FeatureName) Humanize() string {
|
||||
case FeatureSCIM:
|
||||
return "SCIM"
|
||||
case FeatureAIBridge:
|
||||
return "AI Bridge"
|
||||
return "AI Gateway"
|
||||
case FeatureAIGovernanceUserLimit:
|
||||
return "AI Governance User Limit"
|
||||
default:
|
||||
@@ -1705,7 +1705,7 @@ func (c *DeploymentValues) Options() serpent.OptionSet {
|
||||
Flag: "ai-gateway-enabled",
|
||||
Env: "CODER_AI_GATEWAY_ENABLED",
|
||||
Value: &c.AI.BridgeConfig.Enabled,
|
||||
Default: "false",
|
||||
Default: "true",
|
||||
Group: &deploymentGroupAIGateway,
|
||||
YAML: "enabled",
|
||||
}
|
||||
@@ -4055,7 +4055,7 @@ Write out the current server config as YAML to stdout.`,
|
||||
Flag: "aibridge-enabled",
|
||||
Env: "CODER_AIBRIDGE_ENABLED",
|
||||
Value: &c.AI.BridgeConfig.Enabled,
|
||||
Default: "false",
|
||||
Default: "true",
|
||||
Group: &deploymentGroupAIBridge,
|
||||
YAML: "enabled",
|
||||
Hidden: true,
|
||||
|
||||
Reference in New Issue
Block a user