From f3c3288761f8dcff85efe0603b4a627cb33e10b9 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Wed, 28 Dec 2022 14:19:43 +0900 Subject: [PATCH] chore: fix typo in prompt.py (#447) seperator -> separator --- langchain/prompts/prompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/prompts/prompt.py b/langchain/prompts/prompt.py index cccbbd2c..3e53f460 100644 --- a/langchain/prompts/prompt.py +++ b/langchain/prompts/prompt.py @@ -80,7 +80,7 @@ class PromptTemplate(BasePromptTemplate, BaseModel): set up the user's input. input_variables: A list of variable names the final prompt template will expect. - example_separator: The seperator to use in between examples. Defaults + example_separator: The separator to use in between examples. Defaults to two new line characters. prefix: String that should go before any examples. Generally includes examples. Default to an empty string.