You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/docs_skeleton/docs/modules/chains/how_to/memory.mdx

11 lines
254 B
Markdown

# Adding memory (state)
Chains can be initialized with a Memory object, which will persist data across calls to the chain. This makes a Chain stateful.
## Get started
import GetStarted from "@snippets/modules/chains/how_to/memory.mdx"
<GetStarted/>