From b0f36d5c57560ecee3da2f28b1f22099bd519ad3 Mon Sep 17 00:00:00 2001 From: Eric Allen Date: Wed, 17 Jan 2024 17:15:07 +0100 Subject: [PATCH] docs: fix typo in rag tutorial --- docs/tutorials/tutorial_rag.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/tutorial_rag.md b/docs/tutorials/tutorial_rag.md index 16ce295..9bec98f 100644 --- a/docs/tutorials/tutorial_rag.md +++ b/docs/tutorials/tutorial_rag.md @@ -21,7 +21,7 @@ from langchain_core.runnables import RunnablePassthrough, RunnableLambda from langchain_openai import ChatOpenAI, OpenAIEmbeddings ``` -Then we'll define a `log_prompt()` method and `prompt_logger` runnable function provide convenient ways to log the current prompt at any point in a LangChain chain so that you can see how it changes as it is constructed. +Then, we'll define a `log_prompt()` method and `prompt_logger` runnable function that provides a convenient way to log the current prompt at any point in a chain's execution so that we can see how it changes as it is constructed. You can ignore these or explore adding `prompt_logger` as a step in any chain in this tutorial when you want to see the prompt at that point in the chain.