From 0f399350f108fa9bd125d7cbf9a67a4654911ce0 Mon Sep 17 00:00:00 2001 From: Ben <288266+moozilla@users.noreply.github.com> Date: Fri, 9 Dec 2022 06:48:02 -0800 Subject: [PATCH] Fix typo in Getting Started / LLM Chains docs (#291) I noticed this typo when reading the getting started guide, hope this fix makes sense. --- docs/getting_started/llm_chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/llm_chain.md b/docs/getting_started/llm_chain.md index 34d5a88703b..9c44894e945 100644 --- a/docs/getting_started/llm_chain.md +++ b/docs/getting_started/llm_chain.md @@ -27,7 +27,7 @@ from langchain.chains import LLMChain chain = LLMChain(llm=llm, prompt=prompt) ``` -Now we can run that can only specifying the product! +Now we can run that chain only specifying the product! ```python chain.run("colorful socks")