From 6f54abc25280cd0ac5db544905d3234b58b10966 Mon Sep 17 00:00:00 2001 From: Gin Date: Mon, 10 Jun 2024 22:30:56 +0700 Subject: [PATCH] docs: Add a missing dot in concepts.mdx (#22677) --- docs/docs/concepts.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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