Skip to content

Commit 6364089

Browse files
authored
chore(docs): standardize "AIBridge" to "AI Bridge" in documentation (#20831)
1 parent 8c83ab9 commit 6364089

28 files changed

+78
-77
lines changed

.github/workflows/typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ IST = "IST"
99
MacOS = "macOS"
1010
AKS = "AKS"
1111
O_WRONLY = "O_WRONLY"
12+
AIBridge = "AI Bridge"
1213

1314
[default.extend-words]
1415
AKS = "AKS"

cli/testdata/coder_server_--help.golden

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ OPTIONS:
8080
Periodically check for new releases of Coder and inform the owner. The
8181
check is performed once per day.
8282

83-
AIBRIDGE OPTIONS:
83+
AI BRIDGE OPTIONS:
8484
--aibridge-anthropic-base-url string, $CODER_AIBRIDGE_ANTHROPIC_BASE_URL (default: https://api.anthropic.com/)
8585
The base URL of the Anthropic API.
8686

@@ -114,9 +114,9 @@ AIBRIDGE OPTIONS:
114114
Whether to start an in-memory aibridged instance.
115115

116116
--aibridge-inject-coder-mcp-tools bool, $CODER_AIBRIDGE_INJECT_CODER_MCP_TOOLS (default: false)
117-
Whether to inject Coder's MCP tools into intercepted AIBridge requests
118-
(requires the "oauth2" and "mcp-server-http" experiments to be
119-
enabled).
117+
Whether to inject Coder's MCP tools into intercepted AI Bridge
118+
requests (requires the "oauth2" and "mcp-server-http" experiments to
119+
be enabled).
120120

121121
--aibridge-openai-base-url string, $CODER_AIBRIDGE_OPENAI_BASE_URL (default: https://api.openai.com/v1/)
122122
The base URL of the OpenAI API.

cli/testdata/server-config.yaml.golden

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -747,8 +747,8 @@ aibridge:
747747
# https://docs.claude.com/en/docs/claude-code/settings#environment-variables.
748748
# (default: global.anthropic.claude-haiku-4-5-20251001-v1:0, type: string)
749749
bedrock_small_fast_model: global.anthropic.claude-haiku-4-5-20251001-v1:0
750-
# Whether to inject Coder's MCP tools into intercepted AIBridge requests (requires
751-
# the "oauth2" and "mcp-server-http" experiments to be enabled).
750+
# Whether to inject Coder's MCP tools into intercepted AI Bridge requests
751+
# (requires the "oauth2" and "mcp-server-http" experiments to be enabled).
752752
# (default: false, type: bool)
753753
inject_coder_mcp_tools: false
754754
# Length of time to retain data such as interceptions and all related records

coderd/apidoc/docs.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/dbauthz/dbauthz.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,12 +596,12 @@ var (
596596
// See aibridged package.
597597
subjectAibridged = rbac.Subject{
598598
Type: rbac.SubjectAibridged,
599-
FriendlyName: "AIBridge Daemon",
599+
FriendlyName: "AI Bridge Daemon",
600600
ID: uuid.Nil.String(),
601601
Roles: rbac.Roles([]rbac.Role{
602602
{
603603
Identifier: rbac.RoleIdentifier{Name: "aibridged"},
604-
DisplayName: "AIBridge Daemon",
604+
DisplayName: "AI Bridge Daemon",
605605
Site: rbac.Permissions(map[string][]policy.Action{
606606
rbac.ResourceUser.Type: {
607607
policy.ActionRead, // Required to validate API key owner is active.

coderd/database/querier.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries.sql.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries/aibridge.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ ORDER BY
209209
id ASC;
210210

211211
-- name: ListAIBridgeInterceptionsTelemetrySummaries :many
212-
-- Finds all unique AIBridge interception telemetry summaries combinations
212+
-- Finds all unique AI Bridge interception telemetry summaries combinations
213213
-- (provider, model, client) in the given timeframe for telemetry reporting.
214214
SELECT
215215
DISTINCT ON (provider, model, client)

coderd/rbac/regosql/configs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func ConnectionLogConverter() *sqltypes.VariableConverter {
8181
func AIBridgeInterceptionConverter() *sqltypes.VariableConverter {
8282
matcher := sqltypes.NewVariableConverter().RegisterMatcher(
8383
resourceIDMatcher(),
84-
// AIBridge interceptions are not tied to any organization.
84+
// AI Bridge interceptions are not tied to any organization.
8585
sqltypes.StringVarMatcher("''", []string{"input", "object", "org_owner"}),
8686
sqltypes.StringVarMatcher("initiator_id :: text", []string{"input", "object", "owner"}),
8787
)

0 commit comments

Comments
 (0)