You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
- Capitalize section headings for consistency.- Use the singular form for "provider" for clarity.- Ensure document syntax matches Coder documentation style guidelines.
Copy file name to clipboardExpand all lines: docs/ai-coder/ai-bridge/client-config.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ The configuration is the same: point the tool to the AI Bridge [base URL](#base-
73
73
74
74
Users can generate a long-lived API key from the Coder UI or CLI. Follow the instructions at[Sessions and API tokens](../../admin/users/sessions-tokens.md#generate-a-long-lived-api-token-on-behalf-of-yourself) to create one.
75
75
76
-
##Testedclients
76
+
##TestedClients
77
77
78
78
The table below shows tested AI clients and their compatibility with AI Bridge. Click each client name for vendor-specific configuration instructions. Report issues or share compatibility updates in the[aibridge](https://github.com/coder/aibridge) issue tracker.
79
79
@@ -97,7 +97,7 @@ The table below shows tested AI clients and their compatibility with AI Bridge.
97
97
98
98
Legend: ✅ works, ⚠️ limited support, ❌ not supported, ❓ not yet verified, — not applicable.
99
99
100
-
###Compatibilityoverview
100
+
###CompatibilityOverview
101
101
102
102
Most AI coding assistants can use AI Bridge, provided they support custom base URLs. Client-specific requirements vary:
Copy file name to clipboardExpand all lines: docs/ai-coder/ai-bridge/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ If you are an administrator or devops leader looking to:
30
30
31
31
We advise trying AI Bridge as self-hosted proxy to monitor LLM usage agnostically across AI powered IDEs like Cursor and headless agents like Claude Code.
32
32
33
-
##Known Issues / Limitations
33
+
##Known Issues
34
34
35
35
- GPT-5 Codex currently does not work with AI Bridge due to missing`v1/responses` endpoint:https://github.com/coder/aibridge/issues/16
36
36
- Claude Code web searches do not report correctly:https://github.com/coder/aibridge/issues/11
Copy file name to clipboardExpand all lines: docs/ai-coder/ai-bridge/setup.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ AI Bridge runs inside the Coder control plane, requiring no separate compute to
6
6
7
7
1. A**premium** licensed Coder deployment
8
8
1. Feature must be[enabled](#activation) using the server flag
9
-
1. One or more[provider](#configure-providers) API key(s) must be configured
9
+
1. One or more[providers](#configure-providers) API key(s) must be configured
10
10
11
11
##Activation
12
12
@@ -18,10 +18,12 @@ CODER_AIBRIDGE_ENABLED=true coder server
18
18
coder server --aibridge-enabled=true
19
19
```
20
20
21
-
##Configureproviders
21
+
##ConfigureProviders
22
22
23
23
AI Bridge proxies requests to upstream LLM APIs. Configure at least one provider before exposing AI Bridge to end users.
24
24
25
+
<divclass="tabs">
26
+
25
27
###OpenAI
26
28
27
29
Set the following when routing OpenAI-compatible traffic through AI Bridge:
@@ -40,7 +42,7 @@ Set the following when routing Anthropic-compatible traffic through AI Bridge:
40
42
41
43
The default base URL (`https://api.anthropic.com/`) targets Anthropic's public API. Override it for Anthropic-compatible brokers.
42
44
43
-
####Amazon Bedrock
45
+
###Amazon Bedrock
44
46
45
47
Set the following when routing Amazon Bedrock traffic through AI Bridge:
46
48
@@ -54,5 +56,7 @@ Set the following when routing Amazon Bedrock traffic through AI Bridge:
54
56
55
57
AI Bridge can relay traffic to other OpenAI- or Anthropic-compatible services or model proxies like LiteLLM by pointing the base URL variables above at the provider you operate. Share feedback or follow along in the[`aibridge`](https://github.com/coder/aibridge) issue tracker as we expand support for additional providers.
56
58
59
+
</div>
60
+
57
61
>[!NOTE]
58
62
>See the[Supported APIs](./reference.md#supported-apis) section below for precise endpoint coverage and interception behavior.