Fix typo in Getting Started / LLM Chains docs (#291)

I noticed this typo when reading the getting started guide, hope this
fix makes sense.
This commit is contained in:
Ben 2022-12-09 06:48:02 -08:00 committed by GitHub
parent 85c66dc6a4
commit 0f399350f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ from langchain.chains import LLMChain
chain = LLMChain(llm=llm, prompt=prompt) 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 ```python
chain.run("colorful socks") chain.run("colorful socks")