From 1e1d312cab9dfebc1da252b503ce680786e17ca7 Mon Sep 17 00:00:00 2001 From: "blinkagent[bot]" <237617714+blinkagent[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 18:15:44 +0000 Subject: [PATCH] docs: split env var declaration from command in AI Bridge setup (#22072) The AI Bridge setup docs showed `CODER_AIBRIDGE_ENABLED=true coder server` as a single line, which can confuse users into thinking the env var is a one-time prefix rather than a persistent setting. Split this into `export CODER_AIBRIDGE_ENABLED=true` on its own line followed by `coder server`, which is clearer and consistent with how the Bedrock credentials section already handles env vars in the same file. Created on behalf of @dannykopping Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com> --- docs/ai-coder/ai-bridge/setup.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ai-coder/ai-bridge/setup.md b/docs/ai-coder/ai-bridge/setup.md index 492376e9c1..b56f4eba94 100644 --- a/docs/ai-coder/ai-bridge/setup.md +++ b/docs/ai-coder/ai-bridge/setup.md @@ -13,7 +13,8 @@ AI Bridge runs inside the Coder control plane (`coderd`), requiring no separate You will need to enable AI Bridge explicitly: ```sh -CODER_AIBRIDGE_ENABLED=true coder server +export CODER_AIBRIDGE_ENABLED=true +coder server # or coder server --aibridge-enabled=true ```