From 180e779a102c31b4817123b2cbc84325dd1a4903 Mon Sep 17 00:00:00 2001 From: xuhu0115 <64852985+xuhu0115@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:03:35 +0800 Subject: [PATCH] =?UTF-8?q?Update=201.LLM=20=E6=8E=A5=E5=85=A5=20LangChain?= =?UTF-8?q?.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit update langchain chat model link --- "docs/C4/1.LLM \346\216\245\345\205\245 LangChain.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/docs/C4/1.LLM \346\216\245\345\205\245 LangChain.md" "b/docs/C4/1.LLM \346\216\245\345\205\245 LangChain.md" index 1ef5508..387cdb7 100644 --- "a/docs/C4/1.LLM \346\216\245\345\205\245 LangChain.md" +++ "b/docs/C4/1.LLM \346\216\245\345\205\245 LangChain.md" @@ -16,7 +16,7 @@ LangChain 提供了对于多种大模型的封装,基于 LangChain 的接口 注意,基于 LangChain 接口调用 ChatGPT 同样需要配置你的个人密钥,配置方法同上。 ### 1.1 Models(模型) -从 `langchain.chat_models` 导入 `OpenAI` 的对话模型 `ChatOpenAI` 。 除去OpenAI以外,`langchain.chat_models` 还集成了其他对话模型,更多细节可以查看[Langchain官方文档](https://api.python.langchain.com/en/latest/api_reference.html#module-langchain.chat_models)。 +从 `langchain.chat_models` 导入 `OpenAI` 的对话模型 `ChatOpenAI` 。 除去OpenAI以外,`langchain.chat_models` 还集成了其他对话模型,更多细节可以查看[Langchain官方文档]([https://api.python.langchain.com/en/latest/api_reference.html#module-langchain.chat_models](https://api.python.langchain.com/en/latest/langchain_api_reference.html#module-langchain.chat_models))。 ```python import os