6大核心模块(Modules)
示例(Examples)
Postgres 聊天消息历史(Postgres Chat Message History)

LangChain

Postgres聊天消息历史记录#

本教程介绍如何使用Postgres存储聊天消息历史记录。

from langchain.memory import PostgresChatMessageHistory
 
history = PostgresChatMessageHistory(connection_string="postgresql://postgres:mypassword@localhost/chat_history", session_id="foo")
 
history.add_user_message("hi!")
 
history.add_ai_message("whats up?")
 
history.messages