跳至主要内容

MongoDB 聊天记忆

兼容性

仅在 Node.js 上可用。

您仍然可以通过将 runtime 变量设置为 nodejs 来创建使用 MongoDB 的 Next.js API 路由,如下所示

export const runtime = "nodejs";

您可以在 Next.js 文档中阅读有关 Edge 运行时的更多信息 这里

对于跨聊天会话的更长期持久性,您可以将支持聊天记忆类的默认内存内 chatHistory(例如 BufferMemory)替换为 MongoDB 实例。

设置

您需要在项目中安装 Node MongoDB SDK

npm install -S mongodb
npm install @langchain/openai @langchain/community @langchain/core

您还需要一个要连接的 MongoDB 实例。

用法

存储在 MongoDB 中的每个聊天历史会话都必须具有唯一的会话 ID。

import { MongoClient, ObjectId } from "mongodb";
import { BufferMemory } from "langchain/memory";
import { ChatOpenAI } from "@langchain/openai";
import { ConversationChain } from "langchain/chains";
import { MongoDBChatMessageHistory } from "@langchain/mongodb";

const client = new MongoClient(process.env.MONGODB_ATLAS_URI || "", {
driverInfo: { name: "langchainjs" },
});
await client.connect();
const collection = client.db("langchain").collection("memory");

// generate a new sessionId string
const sessionId = new ObjectId().toString();

const memory = new BufferMemory({
chatHistory: new MongoDBChatMessageHistory({
collection,
sessionId,
}),
});

const model = new ChatOpenAI({
model: "gpt-3.5-turbo",
temperature: 0,
});

const chain = new ConversationChain({ llm: model, memory });

const res1 = await chain.invoke({ input: "Hi! I'm Jim." });
console.log({ res1 });
/*
{
res1: {
text: "Hello Jim! It's nice to meet you. My name is AI. How may I assist you today?"
}
}
*/

const res2 = await chain.invoke({ input: "What did I just say my name was?" });
console.log({ res2 });

/*
{
res1: {
text: "You said your name was Jim."
}
}
*/

// See the chat history in the MongoDb
console.log(await memory.chatHistory.getMessages());

// clear chat history
await memory.chatHistory.clear();

API 参考


此页面有帮助吗?


您也可以留下详细的反馈 在 GitHub 上.