SQLChatMessageHistory#
- class langchain_community.chat_message_histories.sql.SQLChatMessageHistory(session_id: str, connection_string: str | None = None, table_name: str = 'message_store', session_id_field_name: str = 'session_id', custom_message_converter: BaseMessageConverter | None = None, connection: None | AsyncEngine | Engine | str = None, engine_args: Dict[str, Any] | None = None, async_mode: bool | None = None)[source]#
Chat message history stored in an SQL database.
Example
from langchain_core.messages import HumanMessage from langchain_community.chat_message_histories import SQLChatMessageHistory # create sync sql message history by connection_string message_history = SQLChatMessageHistory( session_id='foo', connection_string='sqlite///:memory.db' ) message_history.add_message(HumanMessage("hello")) message_history.message # create async sql message history using aiosqlite # from sqlalchemy.ext.asyncio import create_async_engine # # async_engine = create_async_engine("sqlite+aiosqlite:///memory.db") # async_message_history = SQLChatMessageHistory( # session_id='foo', connection=async_engine, # ) # await async_message_history.aadd_message(HumanMessage("hello")) # await async_message_history.aget_messages()
Initialize with a SQLChatMessageHistory instance.
- Parameters:
session_id (str) β Indicates the id of the same session.
connection_string (str | None) β String parameter configuration for connecting to the database.
table_name (str) β Table name used to save data.
session_id_field_name (str) β The name of field of session_id.
custom_message_converter (BaseMessageConverter | None) β Custom message converter for converting database data and BaseMessage
connection (None | AsyncEngine | Engine | str) β Database connection object, which can be a string containing connection configuration, Engine object or AsyncEngine object.
engine_args (Dict[str, Any] | None) β Additional configuration for creating database engines.
async_mode (bool | None) β Whether it is an asynchronous connection.
Attributes
Session
Deprecated since version langchain-community==0.2.2: Use
session_maker
instead.messages
Retrieve all messages from db
Methods
__init__
(session_id[,Β connection_string,Β ...])Initialize with a SQLChatMessageHistory instance.
aadd_message
(message)Add a Message object to the store.
aadd_messages
(messages)Async add a list of messages.
aclear
()Clear session memory from db
add_ai_message
(message)Convenience method for adding an AI message string to the store.
add_message
(message)Append the message to the record in db
add_messages
(messages)Add a list of messages.
add_user_message
(message)Convenience method for adding a human message string to the store.
Retrieve all messages from db
clear
()Clear session memory from db
- __init__(session_id: str, connection_string: str | None = None, table_name: str = 'message_store', session_id_field_name: str = 'session_id', custom_message_converter: BaseMessageConverter | None = None, connection: None | AsyncEngine | Engine | str = None, engine_args: Dict[str, Any] | None = None, async_mode: bool | None = None)[source]#
Initialize with a SQLChatMessageHistory instance.
- Parameters:
session_id (str) β Indicates the id of the same session.
connection_string (str | None) β String parameter configuration for connecting to the database.
table_name (str) β Table name used to save data.
session_id_field_name (str) β The name of field of session_id.
custom_message_converter (BaseMessageConverter | None) β Custom message converter for converting database data and BaseMessage
connection (None | AsyncEngine | Engine | str) β Database connection object, which can be a string containing connection configuration, Engine object or AsyncEngine object.
engine_args (Dict[str, Any] | None) β Additional configuration for creating database engines.
async_mode (bool | None) β Whether it is an asynchronous connection.
- async aadd_message(message: BaseMessage) None [source]#
Add a Message object to the store.
- Parameters:
message (BaseMessage) β A BaseMessage object to store.
- Return type:
None
- async aadd_messages(messages: Sequence[BaseMessage]) None [source]#
Async add a list of messages.
- Parameters:
messages (Sequence[BaseMessage]) β A sequence of BaseMessage objects to store.
- Return type:
None
- add_ai_message(message: AIMessage | str) None #
Convenience method for adding an AI message string to the store.
Please note that this is a convenience method. Code should favor the bulk add_messages interface instead to save on round-trips to the underlying persistence layer.
This method may be deprecated in a future release.
- Parameters:
message (AIMessage | str) β The AI message to add.
- Return type:
None
- add_message(message: BaseMessage) None [source]#
Append the message to the record in db
- Parameters:
message (BaseMessage) β
- Return type:
None
- add_messages(messages: Sequence[BaseMessage]) None [source]#
Add a list of messages.
Implementations should over-ride this method to handle bulk addition of messages in an efficient manner to avoid unnecessary round-trips to the underlying store.
- Parameters:
messages (Sequence[BaseMessage]) β A sequence of BaseMessage objects to store.
- Return type:
None
- add_user_message(message: HumanMessage | str) None #
Convenience method for adding a human message string to the store.
Please note that this is a convenience method. Code should favor the bulk add_messages interface instead to save on round-trips to the underlying persistence layer.
This method may be deprecated in a future release.
- Parameters:
message (HumanMessage | str) β The human message to add to the store.
- Return type:
None
- async aget_messages() List[BaseMessage] [source]#
Retrieve all messages from db
- Return type:
List[BaseMessage]
- get_messages() List[BaseMessage] [source]#
- Return type:
List[BaseMessage]
Examples using SQLChatMessageHistory