From 7492c20aaf818d220849cf50e4d59949cc60adae Mon Sep 17 00:00:00 2001
From: xuyuan23 <643854343@qq.com>
Date: Mon, 31 Jul 2023 18:41:26 +0800
Subject: [PATCH] docs: update bard proxy use docs.
update bard proxy use documents.
---
docs/modules/llms.md | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/docs/modules/llms.md b/docs/modules/llms.md
index dd7cbc064..843893c67 100644
--- a/docs/modules/llms.md
+++ b/docs/modules/llms.md
@@ -128,9 +128,17 @@ PROXY_SERVER_URL={your-openai-proxy-server/v1/chat/completions}
```
### 2. Bard Proxy
-- If your environment deploying DB-GPT has access to https://bard.google.com/ (F12-> application-> __Secure-1PSID), then modify the .env configuration file as below will work.
+- If your environment deploying DB-GPT has access to Bard (F12-> application-> __Secure-1PSID), then modify the .env configuration file as below will work.
```
LLM_MODEL=bard_proxyllm
MODEL_SERVER=127.0.0.1:8000
BARD_PROXY_API_KEY={your-bard-key}
+# PROXY_SERVER_URL={your-bard-proxy-server/v1/chat/completions}
+```
+
+- If you want to use your own bard proxy server like Bard-Proxy, so that you can deploy DB-GPT on your PC easily.
+```
+LLM_MODEL=bard_proxyllm
+MODEL_SERVER=127.0.0.1:8000
+PROXY_SERVER_URL={your-bard-proxy-server/v1/chat/completions}
```
\ No newline at end of file