From bcf130c07c7c71a1ff98207b6564ebe853bb9d86 Mon Sep 17 00:00:00 2001 From: Ali Soliman Date: Wed, 13 Sep 2023 23:58:47 +0200 Subject: [PATCH] Fix Import BedrockChat (#10485) - Description: Couldn't import BedrockChat from the chat_models - Issue: the issue # it fixes (if applicable), - Dependencies: N/A - Issues: #10468 --------- Co-authored-by: Ali Soliman Co-authored-by: Bagatur --- libs/langchain/langchain/chat_models/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/langchain/langchain/chat_models/__init__.py b/libs/langchain/langchain/chat_models/__init__.py index 07fe41d723b..f5b5c4e082e 100644 --- a/libs/langchain/langchain/chat_models/__init__.py +++ b/libs/langchain/langchain/chat_models/__init__.py @@ -20,6 +20,7 @@ an interface where "chat messages" are the inputs and outputs. from langchain.chat_models.anthropic import ChatAnthropic from langchain.chat_models.anyscale import ChatAnyscale from langchain.chat_models.azure_openai import AzureChatOpenAI +from langchain.chat_models.bedrock import BedrockChat from langchain.chat_models.ernie import ErnieBotChat from langchain.chat_models.fake import FakeListChatModel from langchain.chat_models.google_palm import ChatGooglePalm @@ -35,6 +36,7 @@ from langchain.chat_models.vertexai import ChatVertexAI __all__ = [ "ChatOpenAI", + "BedrockChat", "AzureChatOpenAI", "FakeListChatModel", "PromptLayerChatOpenAI",