From de9d8742fd00b289a2dfd25d506449ff602c4b8e Mon Sep 17 00:00:00 2001 From: xuyuan23 <643854343@qq.com> Date: Fri, 16 Jun 2023 10:57:09 +0800 Subject: [PATCH] docs(openai proxy): Fix the name of the OpenAI proxy model in the llms.md document. This command modifies the LLM_MODEL variable in your code from "proxy_llm" to "proxyllm". --- docs/modules/llms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/llms.md b/docs/modules/llms.md index 99e303de7..217961a51 100644 --- a/docs/modules/llms.md +++ b/docs/modules/llms.md @@ -115,7 +115,7 @@ PROXY_SERVER_URL=https://api.openai.com/v1/chat/completions - If you can't access OpenAI locally but have an OpenAI proxy service, you can configure as follows. ``` -LLM_MODEL=proxy_llm +LLM_MODEL=proxyllm MODEL_SERVER=127.0.0.1:8000 PROXY_API_KEY=sk-xxx PROXY_SERVER_URL={your-openai-proxy-server/v1/chat/completions}