mirror of
https://github.com/coder/coder.git
synced 2026-06-07 06:58:17 +00:00
7a94a683c4
*Disclaimer: implemented by a Coder Agent using Claude Opus 4.6* ## Summary Renames product references across documentation: | Old Name | New Name | |----------|----------| | AI Bridge | AI Gateway | | AI Bridge Proxy | AI Gateway Proxy | | Agent Boundaries | Agent Firewall | ## What changed - Prose text, headings, titles, and descriptions updated across all docs - Directories renamed: - `docs/ai-coder/ai-bridge/` → `docs/ai-coder/ai-gateway/` - `docs/ai-coder/ai-bridge/ai-bridge-proxy/` → `docs/ai-coder/ai-gateway/ai-gateway-proxy/` - `docs/ai-coder/agent-boundaries/` → `docs/ai-coder/agent-firewall/` - All internal markdown links updated to new paths - `manifest.json` route paths updated - Rename notice added to AI Gateway and Agent Firewall entrypoint pages ## Companion PR URL redirects (old paths → new paths): [coder/coder.com#700](https://github.com/coder/coder.com/pull/700) ## What is intentionally NOT changed - **Env vars**: `CODER_AIBRIDGE_*` - **CLI flags**: `--aibridge-*` - **API paths**: `/api/v2/aibridge/*` - **Config keys**: `aibridge:` YAML blocks - **Terraform variables**: `enable_aibridge`, `boundary_version`, `use_boundary_directly` - **Process names**: `aibridged`, `aibridgeproxyd` - **Prometheus metrics**: `coder_aibridged_*`, `coder_aibridgeproxyd_*` - **SDK types**: `codersdk.AIBridge*` - **GitHub URLs**: `github.com/coder/aibridge` - **Image paths**: `images/aibridge/` - **Auto-generated reference docs**: `docs/reference/cli/aibridge*.md`, `docs/reference/api/aibridge.md`, `docs/reference/api/schemas.md` - **Frontend code**: `site/src/` references (separate PR) Code-level renames (env vars, configs, frontend) are planned for a follow-up PR.
42 lines
1.5 KiB
Markdown
42 lines
1.5 KiB
Markdown
# Reference
|
|
|
|
## Implementation Details
|
|
|
|
`coderd` runs an in-memory instance of `aibridged`, whose logic is mostly contained in https://github.com/coder/aibridge. In future releases we will support running external instances for higher throughput and complete memory isolation from `coderd`.
|
|
|
|

|
|
|
|
## Supported APIs
|
|
|
|
API support is broken down into two categories:
|
|
|
|
- **Intercepted**: requests are intercepted, audited, and augmented - full AI Gateway functionality
|
|
- **Passthrough**: requests are proxied directly to the upstream, no auditing or augmentation takes place
|
|
|
|
Where relevant, both streaming and non-streaming requests are supported.
|
|
|
|
### OpenAI
|
|
|
|
#### Intercepted
|
|
|
|
- [`/v1/chat/completions`](https://platform.openai.com/docs/api-reference/chat/create)
|
|
- [`/v1/responses`](https://platform.openai.com/docs/api-reference/responses/create)
|
|
|
|
#### Passthrough
|
|
|
|
- [`/v1/models(/*)`](https://platform.openai.com/docs/api-reference/models/list)
|
|
|
|
### Anthropic
|
|
|
|
#### Intercepted
|
|
|
|
- [`/v1/messages`](https://docs.claude.com/en/api/messages)
|
|
|
|
#### Passthrough
|
|
|
|
- [`/v1/models(/*)`](https://docs.claude.com/en/api/models-list)
|
|
|
|
## Troubleshooting
|
|
|
|
To report a bug, file a feature request, or view a list of known issues, please visit our [GitHub repository for AI Gateway](https://github.com/coder/aibridge). If you encounter issues with AI Gateway, please reach out to us via [Discord](https://discord.gg/coder).
|