diff --git a/docs/docs/concepts.mdx b/docs/docs/concepts.mdx index b5902cb5638..f34ea78d659 100644 --- a/docs/docs/concepts.mdx +++ b/docs/docs/concepts.mdx @@ -363,7 +363,7 @@ An essential component of a conversation is being able to refer to information i At bare minimum, a conversational system should be able to access some window of past messages directly. The concept of `ChatHistory` refers to a class in LangChain which can be used to wrap an arbitrary chain. -This `ChatHistory` will keep track of inputs and outputs of the underlying chain, and append them as messages to a message database +This `ChatHistory` will keep track of inputs and outputs of the underlying chain, and append them as messages to a message database. Future interactions will then load those messages and pass them into the chain as part of the input. ### Documents