位置: IT常识 - 正文

LangChain Agent 执行过程解析 OpenAI

编辑:rootadmin
LangChain Agent 执行过程解析 OpenAI LangChain Agent 执行过程解析什么是LangChain Agent例子工作原理什么是LangChain Agent

推荐整理分享LangChain Agent 执行过程解析 OpenAI,希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!

简单来说,用户像LangChain输入的内容未知。此时可以有一套工具集合(也可以自定义工具),将这套自定义工具托管给LLM,让其自己决定使用工具中的某一个(如果存在的话)

例子

首先,这里自定义了两个简单的工具

from langchain.tools import BaseTool# 天气查询工具 ,无论查询什么都返回Sunnyclass WeatherTool(BaseTool): name = "Weather" description = "useful for When you want to know about the weather" def _run(self, query: str) -> str: return "Sunny^_^" async def _arun(self, query: str) -> str: """Use the tool asynchronously.""" raise NotImplementedError("BingSearchRun does not support async")# 计算工具,暂且写死返回3class CustomCalculatorTool(BaseTool): name = "Calculator" description = "useful for when you need to answer questions about math." def _run(self, query: str) -> str: return "3" async def _arun(self, query: str) -> str: raise NotImplementedError("BingSearchRun does not support async")

接下来是针对于工具的简单调用:注意,这里使用OpenAI temperature=0需要限定为0

from langchain.agents import initialize_agentfrom langchain.llms import OpenAIfrom CustomTools import WeatherToolfrom CustomTools import CustomCalculatorToolllm = OpenAI(temperature=0)tools = [WeatherTool(), CustomCalculatorTool()]agent = initialize_agent(tools, llm, agent="zero-shot-react-description", verbose=True)agent.run("Query the weather of this week,And How old will I be in ten years? This year I am 28")

看一下完整的响应过程:

I need to use two different tools to answer this questionAction: WeatherAction Input: This weekObservation: Sunny^_^Thought: I need to use a calculator to answer the second part of the questionAction: CalculatorAction Input: 28 + 10Observation: 3Thought: I now know the final answerFinal Answer: This week will be sunny and in ten years I will be 38.

可以看到LangChain Agent 详细分析了每一个步骤,并且正确的调用了每一个可用的方法,拿到了相应的返回值,甚至在最后还修复了28+10=3这个错误。 下面看看LangChain Agent是如何做到这点的

工作原理

首先看看我输入的问题是什么: Query the weather of this week,And How old will I be in ten years? This year I am 28 查询本周天气,以及十年后我多少岁,今年我28

LangChain Agent中,有一套模板可以套用:

PREFIX = """Answer the following questions as best you can. You have access to the following tools:"""FORMAT_INSTRUCTIONS = """Use the following format:Question: the input question you must answerThought: you should always think about what to doAction: the action to take, should be one of [{tool_names}]Action Input: the input to the actionObservation: the result of the action... (this Thought/Action/Action Input/Observation can repeat N times)Thought: I now know the final answerFinal Answer: the final answer to the original input question"""SUFFIX = """Begin!Question: {input}Thought:{agent_scratchpad}"""LangChain Agent 执行过程解析 OpenAI

通过这个模板,加上我们的问题以及自定义的工具,会变成下面这个样子,并且附带解释:

Answer the following questions as best you can. You have access to the following tools: # 尽可能的去回答以下问题,你可以使用以下的工具:Calculator: Useful for when you need to answer questions about math. # 计算器:当你需要回答数学计算的时候可以用到Weather: useful for When you want to know about the weather # 天气:当你想知道天气相关的问题时可以用到Use the following format: # 请使用以下格式(回答)Question: the input question you must answer # 你必须回答输入的问题Thought: you should always think about what to do # 你应该一直保持思考,思考要怎么解决问题Action: the action to take, should be one of [Calculator, Weather] # 你应该采取[计算器,天气]之一Action Input: the input to the action # 动作的输入Observation: the result of the action # 动作的结果... (this Thought/Action/Action Input/Observation can repeat N times) # 思考-行动-输入-输出 的循环可以重复N次Thought: I now know the final answer # 最后,你应该知道最终结果了Final Answer: the final answer to the original input question # 针对于原始问题,输出最终结果Begin! # 开始Question: Query the weather of this week,And How old will I be in ten years? This year I am 28 # 问输入的问题Thought:

通过这个模板向openai规定了一系列的规范,包括目前现有哪些工具集,你需要思考回答什么问题,你需要用到哪些工具,你对工具需要输入什么内容,等等。

如果仅仅是这样,openAI会完全补完你的回答,中间无法插入任何内容。因此LangChain使用OpenAI的stop参数,截断了AI当前对话。"stop": ["\\nObservation: ", "\\n\\tObservation: "]

做了以上设定以后,OpenAI仅仅会给到Action和 Action Input两个内容就被stop早停了。 以下是OpenAI的响应内容:

I need to use the weather tool to answer the first part of the question, and the calculator to answer the second part.Action: WeatherAction Input: This week

到这里是OpenAI的响应结果,可见,很简单就拿到了Action和Action Input。 这里从Tools中找到name=Weather的工具,然后再将This Week传入方法。具体业务处理看详细情况。这里仅返回Sunny。

由于当前找到了Action和Action Input。 代表OpenAI认定当前任务链并没有结束。因此像请求体后拼接结果:Observation: Sunny 并且让他再次思考Thought:

开启第二轮思考: 下面是再次请求的完整请求体:

Answer the following questions as best you can. You have access to the following tools:Calculator: Useful for when you need to answer questions about math.Weather: useful for When you want to know about the weatherUse the following format:Question: the input question you must answerThought: you should always think about what to doAction: the action to take, should be one of [Calculator, Weather]Action Input: the input to the actionObservation: the result of the action... (this Thought/Action/Action Input/Observation can repeat N times)Thought: I now know the final answerFinal Answer: the final answer to the original input questionBegin!Question: Query the weather of this week,And How old will I be in ten years? This year I am 28Thought: I need to use the weather tool to answer the first part of the question, and the calculator to answer the second part.Action: WeatherAction Input: This weekObservation: Sunny^_^Thought:

同第一轮一样,OpenAI再次进行思考,并且返回Action 和 Action Input 后,再次被早停。

I need to calculate my age in ten yearsAction: CalculatorAction Input: 28 + 10

由于计算器工具只会返回3,结果会拼接出一个错误的结果,构造成了一个新的请求体 进行第三轮请求:

Answer the following questions as best you can. You have access to the following tools:Calculator: Useful for when you need to answer questions about math.Weather: useful for When you want to know about the weatherUse the following format:Question: the input question you must answerThought: you should always think about what to doAction: the action to take, should be one of [Calculator, Weather]Action Input: the input to the actionObservation: the result of the action... (this Thought/Action/Action Input/Observation can repeat N times)Thought: I now know the final answerFinal Answer: the final answer to the original input questionBegin!Question: Query the weather of this week,And How old will I be in ten years? This year I am 28Thought: I need to use the weather tool to answer the first part of the question, and the calculator to answer the second part.Action: WeatherAction Input: This weekObservation: Sunny^_^Thought:I need to calculate my age in ten yearsAction: CalculatorAction Input: 28 + 10Observation: 3Thought:

此时两个问题全都拿到了结果,根据开头的限定,OpenAi在完全拿到结果以后会返回I now know the final answer。并且根据完整上下文。把多个结果进行归纳总结:下面是完整的相应结果:

I now know the final answerFinal Answer: I will be 38 in ten years and the weather this week is sunny.

可以看到。ai严格的按照设定返回想要的内容,并且还以外的把28+10=3这个数学错误给改正了

以上,就是LangChain Agent的完整工作流程

本文链接地址:https://www.jiuchutong.com/zhishi/288041.html 转载请保留说明!

上一篇:form表单提交数据如何拿到返回值(form表单提交数组)

下一篇:易北河上的巴斯泰桥,德国撒克逊瑞士国家公园 (© Reinhard Schmid/eStock Photo)(易北河流量)

  • 华为p30是5g手机还是4g手机(华为p50e是5g手机吗)

    华为p30是5g手机还是4g手机(华为p50e是5g手机吗)

  • 小米的usb调试在哪里打开(小米 usb 调试)

    小米的usb调试在哪里打开(小米 usb 调试)

  • 快手怎么看注册几年了(快手怎么看注册日期和时间)

    快手怎么看注册几年了(快手怎么看注册日期和时间)

  • oppo手机上的视频怎么在电视上播放(oppo手机上的视频如何投屏到电视)

    oppo手机上的视频怎么在电视上播放(oppo手机上的视频如何投屏到电视)

  • 快手粉丝团多少分升级(快手粉丝团多少钱升一级)

    快手粉丝团多少分升级(快手粉丝团多少钱升一级)

  • 打印机休眠无法打印怎么处理(打印机休眠无法打印处理)

    打印机休眠无法打印怎么处理(打印机休眠无法打印处理)

  • 电脑亮度怎么调笔记本(电脑亮度怎么调亮一点)

    电脑亮度怎么调笔记本(电脑亮度怎么调亮一点)

  • 淘宝纽扣能干什么(淘宝里面有个得纽扣的在哪里)

    淘宝纽扣能干什么(淘宝里面有个得纽扣的在哪里)

  • 对方把我删除了为什么还能发消息(对方把我删除了聊天记录还在吗)

    对方把我删除了为什么还能发消息(对方把我删除了聊天记录还在吗)

  • 戴尔i5笔记本型号(戴尔i5参数)

    戴尔i5笔记本型号(戴尔i5参数)

  • 普通平键有哪三种形式(普通平键有哪三种结构类型及其应用)

    普通平键有哪三种形式(普通平键有哪三种结构类型及其应用)

  • 淘宝默认好评是啥意思(淘宝默认好评是全5分吗)

    淘宝默认好评是啥意思(淘宝默认好评是全5分吗)

  • 京东发错货了怎么办(京东发错货了怎么把货退回去)

    京东发错货了怎么办(京东发错货了怎么把货退回去)

  • 华为mate30 5g和4g有什么区别(华为mate30 5g和4g价格)

    华为mate30 5g和4g有什么区别(华为mate30 5g和4g价格)

  • 韩剧tv怎样切换清晰度(韩剧tv怎么换成国语呢)

    韩剧tv怎样切换清晰度(韩剧tv怎么换成国语呢)

  • win10pe系统怎么进入(win10pe系统怎么找桌面文件)

    win10pe系统怎么进入(win10pe系统怎么找桌面文件)

  • 如何装修淘宝店铺(如何装修淘宝店铺步骤)

    如何装修淘宝店铺(如何装修淘宝店铺步骤)

  • iphone11和iphone 11pro区别(iphone11和iphone11pro像素对比)

    iphone11和iphone 11pro区别(iphone11和iphone11pro像素对比)

  • 亲情账号可以看到订单吗(亲情账号可以看健康码吗)

    亲情账号可以看到订单吗(亲情账号可以看健康码吗)

  • 拼多多满返的钱在哪里(拼多多满返的钱怎么提现)

    拼多多满返的钱在哪里(拼多多满返的钱怎么提现)

  • vivoz3虚拟按键哪里可以调整(vivo虚拟按键怎么设置)

    vivoz3虚拟按键哪里可以调整(vivo虚拟按键怎么设置)

  • 华为用户体验计划关闭(华为用户体验计划关闭好还是打开好)

    华为用户体验计划关闭(华为用户体验计划关闭好还是打开好)

  • airpods能连接安卓吗(airpods能连接安卓电脑吗)

    airpods能连接安卓吗(airpods能连接安卓电脑吗)

  • 小米手机温度在哪里看(小米手机温度在哪里设置)

    小米手机温度在哪里看(小米手机温度在哪里设置)

  • Dedecms v5.6会员中心自定义字段错位的问题(dedecms51)

    Dedecms v5.6会员中心自定义字段错位的问题(dedecms51)

  • 多交了企业所得税,下年度退税,需要更正撒意思
  • 个税专项扣除能中途新增
  • 增值税专用发票和普通发票的区别
  • 小规模发票单张限额
  • 有形动产租赁属于营改增吗
  • 分公司独立核算企业所得税缴纳
  • 展板制作费属于什么服务
  • 冲减以前年度主营业务成本对今年有影响吗
  • 所有增值税发票都有抵扣联吗
  • 划转税务的非税收入2023
  • 管理费用的明细科目怎么写
  • 亏损企业交税
  • 货币的时间价值名词解释
  • 农业公司没发票可以入账吗
  • 企业盈利计提所得税么?
  • 展厅门口如何布置图片
  • 费用报销单与付款申请单的用处区别
  • 实际结算金额超出出票金额,银行汇票要给收款人么
  • 注册资本印花税按实缴还是认缴
  • 调整成本调整单分录
  • 自己种的苗木开发票要什么手续
  • 购买厂房可以一次买卖吗
  • 企业债券投资利息怎么算
  • 企业处置固定资产怎么纳税
  • 华为鸿蒙系统怎么看安卓版本
  • iphone制造成本
  • 食堂充值管理制度
  • 费用报销操作流程
  • 查补以前年度企业所得税的申报处理
  • 处置子公司的收益
  • windows11自带录屏怎么使用
  • 班夫国家公园最佳旅游时间
  • 个体户未达起征点需要申报吗
  • 前端静态页面
  • 盈余公积转增资本对会计要素的影响
  • php获取字符串中的指定字符
  • php支付功能
  • 领用包装物会计处理
  • 会计等式反映了六大会计要素的恒等关系
  • 基于深度学习的车型识别系统(Python+清新界面+数据集)
  • vue.js过滤器
  • java前端开发是做什么的
  • 利用php生成静态数据
  • python中字符串的长度怎么算
  • 进项税额漏报处理办法
  • 怎么摊销租金
  • 零申报企业所得税的资产总额怎么填写
  • 中华人民共和国企业所得税年度纳税申报表
  • 建筑工程分包案例
  • sql常用优化技巧
  • 所得税申报报表
  • 汇算清缴 房租
  • 异地车辆登记证书怎么补办
  • 库存现金怎么做预算会计
  • 销售商品开票税目
  • 付给销售人员的佣金会计分录
  • 建账要求
  • 工资可以当月发放当月计提吗
  • 不是企业职工能否挂靠企业交社保
  • 弥补上年亏损的分录 所得税
  • 去年的凭证今年未入账
  • 批量游标
  • mysql5.7安装教程详细
  • mysql 5.7.28安装
  • mac复制文件路径后怎么粘贴
  • win7电脑dpi怎么设置800
  • centos 安装chia
  • python音频文件读写
  • 场景切换方式
  • Android游戏开发实训总结
  • jQuery实现Tab选项卡切换效果简单演示
  • shell脚本用法
  • IE下href 的 BUG问题
  • unity安卓手机游戏官网
  • threejs 源码
  • 安卓白屏问题有哪些
  • python中的格式化输出用法总结
  • 关于python整数类型
  • python的get
  • 湖南税务局发票查询
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设