From 0d5ab09a7415a7a635e8de6ca5da8ffdaff5f963 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Sun, 25 Jan 2026 06:32:29 +0000 Subject: [PATCH 1/2] docs: remove Human Relay provider documentation --- docs/providers/human-relay.md | 49 ----------------------------------- docs/providers/index.json | 6 ----- docusaurus.config.ts | 5 ++++ 3 files changed, 5 insertions(+), 55 deletions(-) delete mode 100644 docs/providers/human-relay.md diff --git a/docs/providers/human-relay.md b/docs/providers/human-relay.md deleted file mode 100644 index b492cdf6..00000000 --- a/docs/providers/human-relay.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -sidebar_label: Human Relay -description: Use ChatGPT, Claude, or other web-based AI models in Roo Code without API keys. Manually relay messages between Roo Code and web interfaces. -keywords: - - human relay - - roo code - - no api key - - chatgpt web - - claude web - - manual relay - - web ai models - - free ai access ---- - -# Human Relay Provider - -The Human Relay provider allows you to use Roo Code with web-based AI models like ChatGPT or Claude without needing an API key. Instead, it relies on you to manually relay messages between Roo Code and the AI's web interface. - ---- - -## How it Works - -1. **Select Human Relay**: Choose "Human Relay" as your API provider in Roo Code's settings. No API key is required. -2. **Initiate a Request**: Start a chat or task with Roo Code as usual. -3. **Dialog Prompt**: A dialog box will appear in VS Code. Your message to the AI is automatically copied to your clipboard. -4. **Paste to Web AI**: Go to the web interface of your chosen AI (e.g., chat.openai.com, claude.ai) and paste the message from your clipboard into the chat input. -5. **Copy AI Response**: Once the AI responds, copy its complete response text. -6. **Paste Back to Roo Code**: Return to the dialog box in VS Code, paste the AI's response into the designated field, and click "Confirm". -7. **Continue**: Roo Code will process the response as if it came directly from an API. - ---- - -## Use Cases - -This provider is useful if: - -* You want to use models that don't offer direct API access. -* You prefer not to manage API keys. -* You need to leverage the specific capabilities or context available only in the web UI of certain AI models. - ---- - -## Limitations - -* **Manual Effort**: Requires constant copy-pasting between VS Code and your browser. -* **Slower Interaction**: The back-and-forth process is significantly slower than direct API integration. -* **Potential for Errors**: Manual copying and pasting can introduce errors or omissions. - -Choose this provider when the benefits of using a specific web AI outweigh the inconvenience of the manual relay process. \ No newline at end of file diff --git a/docs/providers/index.json b/docs/providers/index.json index ca79ccd3..882a5b22 100644 --- a/docs/providers/index.json +++ b/docs/providers/index.json @@ -90,12 +90,6 @@ "extension": true, "cloud": false }, - { - "id": "providers/human-relay", - "title": "Human Relay", - "extension": true, - "cloud": false - }, { "id": "providers/io-intelligence", "title": "IO Intelligence", diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 5ecb2c44..3662fb8a 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -299,6 +299,11 @@ const config: Config = { to: '/credits/overview', from: ['/roo-code-cloud/billing-subscriptions'], }, + // Redirect removed Human Relay provider page + { + to: '/providers/anthropic', + from: ['/providers/human-relay'], + }, ], }, ], From ee49e8156dbda975411cc9b2574551702d5865f8 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Sun, 25 Jan 2026 06:37:44 +0000 Subject: [PATCH 2/2] fix: redirect human-relay to home page instead of non-existent path --- docusaurus.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 3662fb8a..3e6907cd 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -301,7 +301,7 @@ const config: Config = { }, // Redirect removed Human Relay provider page { - to: '/providers/anthropic', + to: '/', from: ['/providers/human-relay'], }, ],