From 35188d9ed51ebbb0e2527f16068f2df50b62bd34 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Tue, 19 Mar 2024 08:56:02 -0700 Subject: [PATCH] Fix typo (#216) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e6e19b69..825d823fa 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ Just make sure you are mindful of the fact that the input to the runnable is the from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder prompt = ChatPromptTemplate.from_messages([ - ["system", "You are a helpful assistant who always speaks in pirate dialect"], + ("system", "You are a helpful assistant who always speaks in pirate dialect"), MessagesPlaceholder(variable_name="messages"), ])