From b674b4cc7799499835075c3c582577b4fbc7c086 Mon Sep 17 00:00:00 2001 From: Joseph Perla Date: Sat, 13 Jun 2026 02:03:57 +0300 Subject: [PATCH] Document TrustedRouter provider setup --- .../model-providers/more/trustedrouter.mdx | 51 +++++++++++++++++++ docs/docs.json | 1 + 2 files changed, 52 insertions(+) create mode 100644 docs/customize/model-providers/more/trustedrouter.mdx diff --git a/docs/customize/model-providers/more/trustedrouter.mdx b/docs/customize/model-providers/more/trustedrouter.mdx new file mode 100644 index 00000000000..19da0843f0e --- /dev/null +++ b/docs/customize/model-providers/more/trustedrouter.mdx @@ -0,0 +1,51 @@ +--- +title: "How to Configure TrustedRouter with Continue" +sidebarTitle: "TrustedRouter" +--- + + + Get an API key from [TrustedRouter](https://trustedrouter.com/console/keys) + + +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. + + + + ```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: + ``` + + + ```json title="config.json" + { + "models": [ + { + "title": "TrustedRouter Auto", + "provider": "openai", + "model": "trustedrouter/auto", + "apiBase": "https://api.trustedrouter.com/v1", + "apiKey": "" + } + ] + } + ``` + + + +## 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. + diff --git a/docs/docs.json b/docs/docs.json index b7a1d83f13a..c46f1264ec4 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -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" ]