Skip to content

Commit

Permalink
docs: typo fix for code
Browse files Browse the repository at this point in the history
  • Loading branch information
damingerdai committed Jun 10, 2024
1 parent a9e29dc commit d39165f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/_posts/ai/how-to-use-langchain-in-10-minutes.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ print(output)
# new code below this line
script_chain = LLMChain(llm=llm, prompt=script_prompt)
script = description_chain.predict(description=output, verbose=True)
script = script_chain.predict(description=output, verbose=True)
# 原文是script = description_chain.predict(description=output, verbose=True),应该是错误
print(script)
```
Expand Down

0 comments on commit d39165f

Please sign in to comment.