【langchain学习】ConversationBufferMemory清除内存的方法

在使用ConversationBufferMemory进行多轮对话的时候,可能需要定期清除memory的内存以免造成输入太长的情况。
可以采用clear()的方法清除,以下是示例代码:

from langchain.memory import ConversationBufferMemory

# 创建一个 ConversationBufferMemory 对象
memory = ConversationBufferMemory()

# 添加一些对话历史记录
memory.save_context({"input": "Hello, how are you?"}, {"output": "I'm good, thank you!"})
memory.save_context({"input": "What's the weather like today?"}, {"output": "It's sunny and warm."})

# 查看当前内存中的内容
print("Before clearing memory:")
print(memory.chat_memory)

# 清除内存
memory.clear()

# 查看内存是否已清空
print("After clearing memory:")
print(memory.chat_memory)

输出如下:

Before clearing memory:
Human: Hello, how are you?
AI: I'm good, thank you!
Human: What's the weather like today?
AI: It's sunny and warm.
After clearing memory:


Process finished with exit code 0
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值