-
Notifications
You must be signed in to change notification settings - Fork 467
Closed
Labels
Description
Currently only the last chat message with the user question is fed to the chat model. However, the complete chat history is sent to the server. We should use LangChain's Memory component to integrate the previous messages in the model invocation, with a limit set.
Tasks
-
Add BufferMemory with the last 5 messages to the existing chain in /chat endpoint -
Extract the5message window value inconstants.ts
Superseded by #106 that implements full chat history
mountaindude