Static
initializeasync initializer function to return a new instance of AstraDBChatMessageHistory in a single step
Promise
const chatHistory = await AstraDBChatMessageHistory.initialize({
token: process.env.ASTRA_DB_APPLICATION_TOKEN,
endpoint: process.env.ASTRA_DB_ENDPOINT,
namespace: process.env.ASTRA_DB_NAMESPACE,
collectionName:"test_chat",
sessionId: "YOUR_SESSION_ID"
});
Generated using TypeDoc
Class for storing chat message history with Astra DB. It extends the BaseListChatMessageHistory class and provides methods to get, add, and clear messages.
Example