From 3243dcc83e49ccbf7f40f656c56bcc250cda7d58 Mon Sep 17 00:00:00 2001 From: Brian McBrayer Date: Mon, 30 Oct 2023 19:30:18 -0400 Subject: [PATCH] Fix very small typo (#12603) - **Description:** this is the world's smallest typo change of a typo I saw while reading the docs --- docs/docs/expression_language/cookbook/prompt_llm_parser.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/expression_language/cookbook/prompt_llm_parser.ipynb b/docs/docs/expression_language/cookbook/prompt_llm_parser.ipynb index 5f569c90b7..eb284ad5c2 100644 --- a/docs/docs/expression_language/cookbook/prompt_llm_parser.ipynb +++ b/docs/docs/expression_language/cookbook/prompt_llm_parser.ipynb @@ -30,7 +30,7 @@ "source": [ "## PromptTemplate + LLM\n", "\n", - "The simplest composition is just combing a prompt and model to create a chain that takes user input, adds it to a prompt, passes it to a model, and returns the raw model output.\n", + "The simplest composition is just combining a prompt and model to create a chain that takes user input, adds it to a prompt, passes it to a model, and returns the raw model output.\n", "\n", "Note, you can mix and match PromptTemplate/ChatPromptTemplates and LLMs/ChatModels as you like here." ]