Skip to main content

SingleStoreDB

This notebook goes over how to use SingleStoreDB to store chat message history.

from langchain.memory import SingleStoreDBChatMessageHistory

history = SingleStoreDBChatMessageHistory(
session_id="foo", host="root:pass@localhost:3306/db"
)

history.add_user_message("hi!")

history.add_ai_message("whats up?")
history.messages