Install and import from the "@langchain/mongodb" integration package instead.
This feature is deprecated and will be removed in the future.
It is not recommended for use.
const chatHistory = new MongoDBChatMessageHistory({ collection: myCollection, sessionId: 'unique-session-id',});const messages = await chatHistory.getMessages();await chatHistory.clear(); Copy
const chatHistory = new MongoDBChatMessageHistory({ collection: myCollection, sessionId: 'unique-session-id',});const messages = await chatHistory.getMessages();await chatHistory.clear();
Generated using TypeDoc
⚠️ Deprecated ⚠️
Install and import from the "@langchain/mongodb" integration package instead.
This feature is deprecated and will be removed in the future.
It is not recommended for use.
Example