From a3162cded4134bcfb09610726c06db723898935a Mon Sep 17 00:00:00 2001 From: xuhu0115 <64852985+xuhu0115@users.noreply.github.com> Date: Thu, 13 Jun 2024 12:18:17 +0800 Subject: [PATCH] update zhipu model illustrate --- .../1.LLM \346\216\245\345\205\245 LangChain.ipynb" | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git "a/notebook/C4 \346\236\204\345\273\272 RAG \345\272\224\347\224\250/1.LLM \346\216\245\345\205\245 LangChain.ipynb" "b/notebook/C4 \346\236\204\345\273\272 RAG \345\272\224\347\224\250/1.LLM \346\216\245\345\205\245 LangChain.ipynb" index 7eaf5c0..b29aeb0 100644 --- "a/notebook/C4 \346\236\204\345\273\272 RAG \345\272\224\347\224\250/1.LLM \346\216\245\345\205\245 LangChain.ipynb" +++ "b/notebook/C4 \346\236\204\345\273\272 RAG \345\272\224\347\224\250/1.LLM \346\216\245\345\205\245 LangChain.ipynb" @@ -856,7 +856,15 @@ "source": [ "我们同样可以通过 LangChain 框架来调用智谱 AI 大模型,以将其接入到我们的应用框架中。由于 langchain 中提供的[ChatGLM](https://python.langchain.com/docs/integrations/llms/chatglm)已不可用,因此我们需要自定义一个LLM。\n", "\n", - "如果你使用的是智谱 GLM API,你需要将我们封装的代码[zhipuai_llm.py](./zhipuai_llm.py)下载到本 Notebook 的同级目录下,才可以运行下列代码来在 LangChain 中使用 GLM。\n" + "如果你使用的是智谱 GLM API,你需要将我们封装的代码[zhipuai_llm.py](./zhipuai_llm.py)下载到本 Notebook 的同级目录下,才可以运行下列代码来在 LangChain 中使用 GLM。\n", + "\n", + "根据智谱官方宣布以下模型即将弃用,在这些模型弃用后,会将它们自动路由至新的模型。请用户注意在弃用日期之前,将您的模型编码更新为最新版本,以确保服务的顺畅过渡,更多模型相关信息请访问[model](https://open.bigmodel.cn/dev/howuse/model)\n", + "\n", + "| 模型编码 |弃用日期|指向模型|\n", + "| ---- | ---- | ---- |\n", + "|chatglm_pro|2024 年 12 月 31 日|glm-4|\n", + "|chatglm_std|2024 年 12 月 31 日|glm-3-turbo|\n", + "|chatglm_lite|2024 年 12 月 31 日|glm-3-turbo|" ] }, {