From eef6c900585d4eb37ed3d1c947a9a2039f0f68d9 Mon Sep 17 00:00:00 2001 From: Yelin Zhang <30687616+Yelinz@users.noreply.github.com> Date: Sun, 24 Nov 2024 00:52:17 +0100 Subject: [PATCH] docs: fix GOOGLE_API_KEY typo --- libs/community/langchain_community/chat_models/google_palm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/chat_models/google_palm.py b/libs/community/langchain_community/chat_models/google_palm.py index 77038256c7d82..e9bd5928a040d 100644 --- a/libs/community/langchain_community/chat_models/google_palm.py +++ b/libs/community/langchain_community/chat_models/google_palm.py @@ -219,7 +219,7 @@ class ChatGooglePalm(BaseChatModel, BaseModel): To use you must have the google.generativeai Python package installed and either: - 1. The ``GOOGLE_API_KEY``` environment variable set with your API key, or + 1. The ``GOOGLE_API_KEY`` environment variable set with your API key, or 2. Pass your API key using the google_api_key kwarg to the ChatGoogle constructor.