From c393c214dcdea9df6835d7b5af31805bf91dee04 Mon Sep 17 00:00:00 2001 From: ahnedeee <136900735+ahnedeee@users.noreply.github.com> Date: Fri, 14 Jul 2023 08:56:38 +0300 Subject: [PATCH] Change misleading documentation (history size) (#241) --- embedchain/embedchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedchain/embedchain.py b/embedchain/embedchain.py index 3cd2f417..f0b783a7 100644 --- a/embedchain/embedchain.py +++ b/embedchain/embedchain.py @@ -220,7 +220,7 @@ class EmbedChain: Gets relevant doc based on the query and then passes it to an LLM as context to get the answer. - Maintains last 5 conversations in memory. + Maintains the whole conversation in memory. :param input_query: The query to use. :param config: Optional. The `ChatConfig` instance to use as configuration options.