From ea6fc87d6d9844955322bd343854c7576a476fbb Mon Sep 17 00:00:00 2001 From: kdwycz Date: Fri, 30 Jan 2026 16:01:50 +0800 Subject: [PATCH] add: proxy config for search api doc --- docs/tools/web.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/tools/web.md b/docs/tools/web.md index 3e626400a..2e8dfe869 100644 --- a/docs/tools/web.md +++ b/docs/tools/web.md @@ -107,6 +107,7 @@ crypto/prepaid). search: { enabled: true, provider: "perplexity", + proxy: "http://127.0.0.1:7890", // optional perplexity: { // API key (optional if OPENROUTER_API_KEY or PERPLEXITY_API_KEY is set) apiKey: "sk-or-v1-...", @@ -160,7 +161,8 @@ Search the web using your configured provider. apiKey: "BRAVE_API_KEY_HERE", // optional if BRAVE_API_KEY is set maxResults: 5, timeoutSeconds: 30, - cacheTtlMinutes: 15 + cacheTtlMinutes: 15, + proxy: "http://127.0.0.1:7890" // optional } } }