From c3624b416dc773b0f9279f03bac782f6050f0d95 Mon Sep 17 00:00:00 2001 From: MING KANG Date: Mon, 8 Jan 2024 11:40:35 -0800 Subject: [PATCH] docs: fix llm/chat_model tables (#15716) - **Description:** This PR aims to fix the documentation for langchain-commnuity. - **Issue:** The table In this page : [https://python.langchain.com/docs/integrations/llms/](https://urldefense.com/v3/__https://python.langchain.com/docs/integrations/llms/__;!!ACWV5N9M2RV99hQ!Jqw8gWnQrL1H6blPiGN10jrh1TDAzqGcKAaTAZv7TBy1X_m-03E7T-alOrWY5_71R8QUdONvF2wMRK54D50$) is built based on old module. The proposed fix is to modify the import from langchain-commnuity. - **Dependencies:** N/A - **Twitter handle:** N/A --- docs/scripts/model_feat_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scripts/model_feat_table.py b/docs/scripts/model_feat_table.py index 7f4fa0ca1d..ecf37fbcd6 100644 --- a/docs/scripts/model_feat_table.py +++ b/docs/scripts/model_feat_table.py @@ -1,7 +1,7 @@ import os from pathlib import Path -from langchain import chat_models, llms +from langchain_community import chat_models, llms from langchain_core.language_models.chat_models import BaseChatModel, SimpleChatModel from langchain_core.language_models.llms import LLM, BaseLLM