mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
b91622e7fe
Co-authored-by: Danny Kopping <danny@coder.com>
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 Bridge 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 Bridge](https://github.com/coder/aibridge). If you encounter issues with AI Bridge, please reach out to us via [Discord](https://discord.gg/coder).
|