Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions docs/customize/model-providers/more/trustedrouter.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
title: "How to Configure TrustedRouter with Continue"
sidebarTitle: "TrustedRouter"
---

<Info>
Get an API key from [TrustedRouter](https://trustedrouter.com/console/keys)
</Info>

TrustedRouter provides an OpenAI-compatible gateway for privacy-sensitive development tasks. It uses an open-source and verifiable attested router with zero prompt and output logging by default. This is useful for workflows involving private codebases, project context, or customer data while keeping the standard Continue model configuration shape.

<Tabs>
<Tab title="YAML">
```yaml title="config.yaml"
name: My Config
version: 0.0.1
schema: v1

models:
- name: TrustedRouter Auto
provider: openai
model: trustedrouter/auto
apiBase: https://api.trustedrouter.com/v1
apiKey: <YOUR_TRUSTEDROUTER_API_KEY>
```
</Tab>
<Tab title="JSON (Deprecated)">
```json title="config.json"
{
"models": [
{
"title": "TrustedRouter Auto",
"provider": "openai",
"model": "trustedrouter/auto",
"apiBase": "https://api.trustedrouter.com/v1",
"apiKey": "<YOUR_TRUSTEDROUTER_API_KEY>"
}
]
}
```
</Tab>
</Tabs>

## Routing aliases

TrustedRouter supports standard model IDs plus routing aliases:

- `trustedrouter/auto` chooses a healthy route automatically.
- `trustedrouter/zdr` prefers zero data retention providers.
- `trustedrouter/e2e` prefers end-to-end encrypted providers where available.

1 change: 1 addition & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
"customize/model-providers/more/nvidia",
"customize/model-providers/more/tensorix",
"customize/model-providers/more/together",
"customize/model-providers/more/trustedrouter",
"customize/model-providers/more/xAI",
"customize/model-providers/more/zai"
]
Expand Down
Loading