当前位置:金沙娱场城app-老版金沙app下载客户手机端|资讯|ai大模型|人工智能|编程

ai大模型实战篇:ai agent设计模式,react -金沙娱场城app

作者:人人都是产品经理发布时间:2024-08-29

随着人工智能技术的不断进步,ai agent设计模式逐渐成为研究和应用的热点。react模式作为ai agent设计模式的起点,以其模拟人类思考和行动过程的特点,为各种智能应用提供了一种有效的实现途径。

在《大佬们都在关注的ai agent,到底是什么?用5w1h分析框架拆解ai agent(下篇)》中,风叔简单介绍了ai agent的八种设计模式。对于这八种设计模式,风叔整理了一张图,来阐明它们之间的关系。

react模式最早出现的agent设计模式,目前也是应用最广泛的。从react出发,有两条发展路线:

一条更偏重agent的规划能力,包括rewoo、plan & execute、llm compiler。

另一条更偏重反思能力,包括basic reflection、reflexion、self discover、lats。

在后续文章中,风叔将沿着上图的脉络,结合产品流程和源代码,详细介绍这八种ai agent设计模式。

为什么选择结合源代码呢?因为在ai大模型时代,很多的概念和方法都太新了。只有结合源代码,产品经理才能真正理解背后的原理和逻辑,才能知道什么能做,什么不能做,ai的边界在哪里,以及该如何与人类经验配合。

下面,我们先从react模式开始。

一、react的概念

react的概念来自论文《react: synergizing reasoning and acting in language models》,这篇论文提出了一种新的方法,通过结合语言模型中的推理(reasoning)和行动(acting)来解决多样化的语言推理和决策任务。react 提供了一种更易于人类理解、诊断和控制的决策和推理过程。

它的典型流程如下图所示,可以用一个有趣的循环来描述:思考(thought)→ 行动(action)→ 观察(observation),简称tao循环。

  • 思考(thought):面对一个问题,我们需要进行深入的思考。这个思考过程是关于如何定义问题、确定解决问题所需的关键信息和推理步骤。
  • 行动(action):确定了思考的方向后,接下来就是行动的时刻。根据我们的思考,采取相应的措施或执行特定的任务,以期望推动问题向解决的方向发展。
  • 观察(observation):行动之后,我们必须仔细观察结果。这一步是检验我们的行动是否有效,是否接近了问题的答案。
  • 循环迭代

如果观察到的结果并不匹配我们预期的答案,那么就需要回到思考阶段,重新审视问题和行动计划。这样,我们就开始了新一轮的tao循环,直到找到问题的金沙娱场城app的解决方案。

和react相对应的是reasoning-only和action-only。在reasoning-only的模式下,大模型会基于任务进行逐步思考,并且不管有没有获得结果,都会把思考的每一步都执行一遍。在action-only的模式下,大模型就会处于完全没有规划的状态下,先进行行动再进行观察,基于观察再调整行动,导致最终结果不可控。

假设我们正在构建一个智能助手,用于管理我们的日程安排。

在reason-only模式中,智能助手专注于分析和推理,但不直接采取行动。

  • 你告诉智能助手:“我明天有个会议。”
  • 智能助手分析这句话,确定明天的会议时间、地点等细节。
  • 它可能会提醒你:“明天下午3点有个会议,在公司会议室。”

在action-only模式中,智能助手专注于执行任务,但不做深入的推理或分析。

  • 你告诉智能助手:“把我明天的会议改到上午10点。”
  • 智能助手立即执行这个任务,将会议时间修改为上午10点。
  • 它可能会简单确认:“您的会议已改到明天上午10点。”

在react模式中,智能助手结合推理和行动,形成一个循环的感知-动作循环。不仅分析了你的需求(推理),还实际修改了日程安排(行动)。

  • 你告诉智能助手:“我明天有个会议,但我想提前到上午10点。”
  • 智能助手首先分析这句话,确定会议的原始时间和地点(感知阶段)。
  • 然后,它更新你的日程安排,将会议时间改为上午10点(决策和动作执行阶段)。
  • 最后,智能助手确认修改,并提供额外的信息:“您的会议已成功改到明天上午10点。提醒您,会议地点不变。
二、react的实现过程

下面,风叔通过实际的源码,详细介绍react模式的实现方法。大家可以私信风叔,或者在评论区留言“react源码”,获取react设计模式的示例源代码。

第一步 准备prompt模板

在实现react模式的时候,首先需要设计一个清晰的prompt模板,主要包含以下几个元素:

  • 思考(thought):这是推理过程的文字展示,阐明我们想要llm帮我们做什么,为了达成目标的前置条件是什么
  • 行动(action):根据思考的结果,生成与外部交互的指令文字,比如需要llm进行外部搜索
  • 行动参数(action input):用于展示llm进行下一步行动的参数,比如llm要进行外部搜索的话,行动参数就是搜索的关键词。主要是为了验证llm是否能提取准确的行动参数
  • 观察(observation):和外部行动交互之后得到的结果,比如llm进行外部搜索的话,那么观察就是搜索的结果。

prompt模板示例:

tool_desc = """{name_for_model}: call this tool to interact with the {name_for_human} api. what is the {name_for_human} api useful for? {deion_for_model} parameters: {parameters} format the arguments as a json object.""" react_prompt = """answer the following questions as best you can. you have access to the following tools: {tool_descs} 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 [{tool_names}] action input: the input to the action observation: the result of the action ... (this thought/action/action input/observation can be repeated zero or more times) thought: i now know the final answer final answer: the final answer to the original input question begin! question: {query}""" 第二步 构建agent

一个react agent需要定义好以下元素

  • llm:背后使用的llm大模型
  • tools:后续会用到的tools集合
  • stop:什么情况下react agent停止循环
class llmsingleactionagent { llm: azurellm tools: structuredtool[] stop: string[] private _prompt: string = '{input}' constructor({ llm, tools = [], stop = [] }: llmsingleactionagentparams) { this.llm = llm this.tools = tools if (stop.length > 4) throw new error('up to 4 stop sequences') this.stop = stop } } 第三步 定义tools

tools有两个最重要的参数,name和deion。

name就是函数名,deion是工具的自然语言描述,llm 根据deion来决定是否需要使用该工具。工具的描述应该非常明确,说明工具的功能、使用的时机以及不适用的情况。

export abstract class structuredtool { name: string deion: string constructor(name: string, deion: string) { this.name = name this.deion = deion } abstract call(arg: string, config?: record): promise getschema: string { return `${this.declaration} | ${this.name} | ${this.deion}` } abstract get declaration: string }

我们先简单地将两个描述信息拼接一下,为agent提供4个算数工具:

1. addition tool: a tool for adding two numbers 2. subtraction tool: a tool for subtracting two numbers 3. division tool: a tool for dividing two numbers 4.multiplicationtool: atoolformultiplyingtwonumbers

一个很有意思的事情是,这几个算数工具函数并不需要实际的代码,大模型可以仅靠自身的推理能力就完成实际的算数运算。当然,对于更复杂的工具函数,还是需要进行详细的代码构建。

第四步 循环执行

执行器executor是在agent的运行时,协调各个组件并指导操作。还记得react模式的流程吗?thought、action、observation、循环,executor的作用就是执行这个循环。

class agentexecutor { agent: llmsingleactionagent tools: structuredtool[] = [] maxiterations: number = 15 constructor(agent: llmsingleactionagent) { this.agent = agent } addtool(tools: structuredtool | structuredtool[]) { const _tools = array.isarray(tools) ? tools : [tools] this.tools.push(..._tools) } }

executor会始终进行如下事件循环直到目标被解决了或者思考迭代次数超过了最大次数:

  • 根据之前已经完成的所有步骤(thought、action、observation)和 目标(用户的问题),规划出接下来的action(使用什么工具以及工具的输入)
  • 检测是否已经达成目标,即action是不是actionfinish。是的话就返回结果,不是的话说明还有行动要完成
  • 根据action,执行具体的工具,等待工具返回结果。工具返回的结果就是这一轮步骤的observation
  • 保存当前步骤到记忆上下文,如此反复
async call(input: promptinputs): promise { const toolsbyname = object.fromentries( this.tools.map(t => [t.name, t]), ) const steps: agentstep[] = [] let iterations = 0 while (this.shouldcontinue(iterations)) { const output = await this.agent.plan(steps, input) console.log(iterations, output) // check if the agent has finished if ('returnvalues' in output) return output const actions = array.isarray(output) ? output as agentaction[] : [output as agentaction] const newsteps = await promise.all( actions.map(async (action) => { const tool = toolsbyname[action.tool] if (!tool) throw new error(`${action.tool} is not a valid tool, try another one.`) const observation = await tool.call(action.toolinput) return { action, observation: observation ?? '' } }), ) steps.push(...newsteps) iterations } return { returnvalues: { output: 'agent stopped due to max iterations.' }, log: '', } } 第五步 实际运行

我们提出一个问题,看看agent怎么通过react方式进行解决。 “一种减速机的价格是750元,一家企业需要购买12台。每台减速机运行一小时的电费是0.5元,企业每天运行这些减速机8小时。请计算企业购买及一周运行这些减速机的总花费。”

describe('agent', => { const llm = new azurellm({ apikey: config.apikey, model: config.model, }) const agent = new llmsingleactionagent({ llm }) agent.setprompt(react_prompt) agent.addstop(agent.observationprefix) agent.addtool([new additiontool, new subtractiontool, new divisiontool, new multiplicationtool]) const executor = new agentexecutor(agent) executor.addtool([new additiontool, new subtractiontool, new divisiontool, new multiplicationtool]) it('test', async => { const res = await executor.call({ input: '一种减速机的价格是750元,一家企业需要购买12台。每台减速机运行一小时的电费是0.5元,企业每天运行这些减速机8小时。请计算企业购买及一周运行这些减速机的总花费。' }) expect(res).tomatchinlinesnapshot(` { "log": "final answer: the total cost of purchasing and operating the gearboxes for a week is 9336 yuan.", "returnvalues": { "output": "the total cost of purchasing and operating the gearboxes for a week is 9336 yuan.", }, } `) }, { timeout: 50000 }) })

我们来看一下agent的输出,以及agent在这个过程,是如何思考和行动的。可以看到,通过thought、action、observation的循环,ai agent很好地一步步完成最终答案的输出。

question:一种减速机的价格是750元,一家企业需要购买12台。每台减速机运行一小时的电费是0.5元,企业每天运行这些减速机8小时。请计算企业购买及一周运行这些减速机的总花费 thought:i need to calculate the total cost of purchasing and operating the gearboxes for a week. action: multiplication tool action input: [750, 12] observation: 9000 thought: now i need to calculate the cost of operating the gearboxes for a day. action: multiplication tool actioninput:[0.5,8,12] observation: 48 thought: now i need to calculate the cost of operating the gearboxes for a week. action: multiplication tool action input: [48, 7] observation: 336 thought: now i need to calculate the total cost of purchasing and operating the gearboxes for a week. action: addition tool action input: [9000, 336] observation: 9336 总结

在ai agent的多种实现模式中,react模式是最早出现、也是目前使用最广泛的模式。react的核心思想就是模拟人思考和行动的过程,通过thought、action、observation的循环,一步步解决目标问题。

react模式也存在很多的不足:

  • 首先是llm大模型的通病,即产出内容不稳定,不仅仅是输出内容存在波动,也体现在对复杂问题的分析,解决上存在一定的波动
  • 然后是成本,采用react方式,我们是无法控制输入内容的。因为在任务提交给llm后,llm对任务的拆解、循环次数是不可控的。因此存在一种可能性,过于复杂的任务导致token过量消耗。
  • 最后是响应时间,比起大部分api接口毫秒级的响应,llm响应时间是秒级以上。在react模式下,这个时间变得更加不可控。因为无法确定需要拆分多少步骤,需要访问多少次llm模型。因此在在秒级接口响应的背景下,做成同步接口显然是不合适的,需要采用异步的方式。而异步方式,又会影响用户体验,对应用场景的选择又造成了限制。

但是无论如何,react框架提出了一种非常好的思路,让现有的应用得到一次智能化的进化机会。现在很多场景已经有了非常成熟的react agent应用,比如智能客服、知识助手、个性化营销、智能销售助理等等。

在下一篇文章中,风叔将介绍另一种ai agent设计模式,rewoo。

作者:风叔,微信公众号:风叔云

本文由@风叔 原创发布于人人都是产品经理,未经作者许可,禁止转载。

题图来自unsplash,基于cc0协议。

昨天

昨天

昨天

昨天

昨天

昨天

昨天

昨天

昨天

昨天


金沙娱场城app copyright © 2024 金沙娱场城app-老版金沙app下载客户手机端  北京智识时代科技有限公司  金沙娱场城app的版权所有 

网站地图