小智头像图片
AI教程 2025年01月15日
0 收藏 0 点赞 513 浏览 3549 个字
摘要 :

面向开发者的LLM入门课程-对话摘要缓存储存: 对话摘要缓存储存 对话摘要缓存储存,使用 LLM 对到目前为止历史对话自动总结摘要,并将其保存下来。 1.使用对话摘要缓存……

哈喽!伙伴们,我是小智,你们的AI向导。欢迎来到每日的AI学习时间。今天,我们将一起深入AI的奇妙世界,探索“面向开发者的LLM入门课程-对话摘要缓存储存”,并学会本篇文章中所讲的全部知识点。还是那句话“不必远征未知,只需唤醒你的潜能!”跟着小智的步伐,我们终将学有所成,学以致用,并发现自身的更多可能性。话不多说,现在就让我们开始这场激发潜能的AI学习之旅吧。

面向开发者的LLM入门课程-对话摘要缓存储存

面向开发者的LLM入门课程-对话摘要缓存储存:

对话摘要缓存储存

对话摘要缓存储存,使用 LLM 对到目前为止历史对话自动总结摘要,并将其保存下来。

1.使用对话摘要缓存储存

我们创建了一个长字符串,其中包含某人的日程安排

from langchain.chains import ConversationChain
from langchain.chat_models import ChatOpenAI
from langchain.memory import ConversationSummaryBufferMemory
# 创建一个长字符串
schedule = “在八点你和你的产品团队有一个会议。
你需要做一个PPT。
上午9点到12点你需要忙于LangChain。
Langchain是一个有用的工具,因此你的项目进展的非常快。
中午,在意大利餐厅与一位开车来的顾客共进午餐
走了一个多小时的路程与你见面,只为了解最新的 AI。
确保你带了笔记本电脑可以展示最新的 LLM 样例.”
llm = ChatOpenAI(temperature=0.0)
memory = ConversationSummaryBufferMemory(llm=llm, max_token_limit=100)
memory.save_context({“input”: “你好,我叫皮皮鲁”}, {“output”: “你好啊,我叫鲁西西”})
memory.save_context({“input”: “很高兴和你成为朋友!”}, {“output”: “是的,让我们一起去冒
险吧!”})
memory.save_context({“input”: “今天的日程安排是什么?”}, {“output”: f”{schedule}”})
print(memory.load_memory_variables({})[‘history’])
System: The human introduces themselves as Pipilu and the AI introduces
themselves as Luxixi. They express happiness at becoming friends and decide to go
on an adventure together. The human asks about the schedule for the day. The AI
informs them that they have a meeting with their product team at 8 o’clock and
need to prepare a PowerPoint presentation. From 9 am to 12 pm, they will be busy
with LangChain, a useful tool that helps their project progress quickly. At noon,
they will have lunch with a customer who has driven for over an hour just to
learn about the latest AI. The AI advises the human to bring their laptop to
showcase the latest LLM samples.

2.基于对话摘要缓存储存的对话链

基于上面的对话摘要缓存储存,我们新建一个对话链。

conversation = ConversationChain(llm=llm, memory=memory, verbose=True)
conversation.predict(input=”展示什么样的样例最好呢?”)

> Entering new ConversationChain chain…
Prompt after formatting:
The following is a friendly conversation between a human and an AI. The AI is
talkative and provides lots of specific details from its context. If the AI does
not know the answer to a question, it truthfully says it does not know.
Current conversation:
System: The human introduces themselves as Pipilu and the AI introduces
themselves as Luxixi. They express happiness at becoming friends and decide to go
on an adventure together. The human asks about the schedule for the day. The AI
informs them that they have a meeting with their product team at 8 o’clock and
need to prepare a PowerPoint presentation. From 9 am to 12 pm, they will be busy
with LangChain, a useful tool that helps their project progress quickly. At noon,
they will have lunch with a customer who has driven for over an hour just to
learn about the latest AI. The AI advises the human to bring their laptop to
showcase the latest LLM samples.
Human: 展示什么样的样例最好呢?
AI:
> Finished chain.

‘展示一些具有多样性和创新性的样例可能是最好的选择。你可以展示一些不同领域的应用,比如自然语言处理、图像识别、语音合成等。另外,你也可以展示一些具有实际应用价值的样例,比如智能客服、智能推荐等。
总之,选择那些能够展示出我们AI技术的强大和多样性的样例会给客户留下深刻的印象。’

print(memory.load_memory_variables({})) # 摘要记录更新了

{‘history’: “System: The human introduces themselves as Pipilu and the AI
introduces themselves as Luxixi. They express happiness at becoming friends and
decide to go on an adventure together. The human asks about the schedule for the
day. The AI informs them that they have a meeting with their product team at 8
o’clock and need to prepare a PowerPoint presentation. From 9 am to 12 pm, they
will be busy with LangChain, a useful tool that helps their project progress
quickly. At noon, they will have lunch with a customer who has driven for over an
hour just to learn about the latest AI. The AI advises the human to bring their
laptop to showcase the latest LLM samples. The human asks what kind of samples
would be best to showcase. The AI suggests that showcasing diverse and innovative
samples would be the best choice. They recommend demonstrating applications in
different fields such as natural language processing, image recognition, and
speech synthesis. Additionally, they suggest showcasing practical examples like
intelligent customer service and personalized recommendations to impress the
customer with the power and versatility of their AI technology.”}

通过对比上一次输出,发现摘要记录更新了,添加了最新一次对话的内容总结。

面向开发者的LLM入门课程-对话储存英文版提示
面向开发者的LLM入门课程-对话储存英文版提示:英文版提示 1.对话缓存储存 from langchain.chains import ConversationChain fro...

嘿,伙伴们,今天我们的AI探索之旅已经圆满结束。关于“面向开发者的LLM入门课程-对话摘要缓存储存”的内容已经分享给大家了。感谢你们的陪伴,希望这次旅程让你对AI能够更了解、更喜欢。谨记,精准提问是解锁AI潜能的钥匙哦!如果有小伙伴想要了解学习更多的AI知识,请关注我们的官网“AI智研社”,保证让你收获满满呦!

微信打赏二维码 微信扫一扫

支付宝打赏二维码 支付宝扫一扫

版权: 转载请注明出处:https://www.ai-blog.cn/2670.html

相关推荐
03-23

如何在 Java 中基于 LangChain 编写大语言模型应用: 在本教程中,我们将会研究 LangChain 的细节…

小智头像图片
187
03-12

DeepSeek企业级部署实战指南: 对于个人开发者或尝鲜者而言,本地想要部署 DeepSeek 有很多种方案…

小智头像图片
113
03-12

如何使用DeepSeek助你增强求职竞争力: 职场篇 常见的简历问题 1. 格式混乱或排版不专业 • 问题:…

小智头像图片
222
03-12

DeepSeek官方提示词:让你的API应用和官方一样强: 本文讨论了DeepSeek官方关于让API应用和官方一…

小智头像图片
121
03-12

关于 DeepSeek 的研究和思考 (Archerman Capital): 关于这几天很火的 DeepSeek, 我们 (Archerman …

小智头像图片
133

AI教程DeepSeek提示词之代码解释: 代码解释​ ​ 对代码进行解释,来帮助理解代码内容。​ ​ ​ 请解…

小智头像图片
152

AI教程DeepSeek提示词之代码改写: 代码改写​ ​ 对代码进行修改,来实现纠错、注释、调优等。​ ​ …

小智头像图片
513

AI教程DeepSeek提示词之代码生成: 代码生成​ ​ 让模型生成一段完成特定功能的代码。​ ​ 用户提示…

小智头像图片
513
发表评论
暂无评论

还没有评论呢,快来抢沙发~

助力原创内容

快速提升站内名气成为大牛

扫描二维码

手机访问本站

二维码
vip弹窗图片