From 12aa43469f68a47b9c82230e516d81ccf3e1a58e Mon Sep 17 00:00:00 2001 From: Shuchang Zhou Date: Fri, 30 Dec 2022 10:34:32 +0800 Subject: [PATCH] Update prompt_management.ipynb (#484) --- docs/examples/prompts/prompt_management.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/prompts/prompt_management.ipynb b/docs/examples/prompts/prompt_management.ipynb index b4b896a96e..7fb30ef488 100644 --- a/docs/examples/prompts/prompt_management.ipynb +++ b/docs/examples/prompts/prompt_management.ipynb @@ -50,7 +50,7 @@ "The only two things that define a prompt are:\n", "\n", "1. `input_variables`: The user inputted variables that are needed to format the prompt.\n", - "2. `format`: A method which takes in keyword arguments are returns a formatted prompt. The keys are expected to be the input variables\n", + "2. `format`: A method which takes in keyword arguments and returns a formatted prompt. The keys are expected to be the input variables\n", " \n", "The rest of the logic of how the prompt is constructed is left up to different implementations. Let's take a look at some below." ]