随着人工智能技术的不断进步,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循环。
如果观察到的结果并不匹配我们预期的答案,那么就需要回到思考阶段,重新审视问题和行动计划。这样,我们就开始了新一轮的tao循环,直到找到问题的金沙娱场城app的解决方案。
和react相对应的是reasoning-only和action-only。在reasoning-only的模式下,大模型会基于任务进行逐步思考,并且不管有没有获得结果,都会把思考的每一步都执行一遍。在action-only的模式下,大模型就会处于完全没有规划的状态下,先进行行动再进行观察,基于观察再调整行动,导致最终结果不可控。
假设我们正在构建一个智能助手,用于管理我们的日程安排。
在reason-only模式中,智能助手专注于分析和推理,但不直接采取行动。
在action-only模式中,智能助手专注于执行任务,但不做深入的推理或分析。
在react模式中,智能助手结合推理和行动,形成一个循环的感知-动作循环。不仅分析了你的需求(推理),还实际修改了日程安排(行动)。
下面,风叔通过实际的源码,详细介绍react模式的实现方法。大家可以私信风叔,或者在评论区留言“react源码”,获取react设计模式的示例源代码。
第一步 准备prompt模板
在实现react模式的时候,首先需要设计一个清晰的prompt模板,主要包含以下几个元素:
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需要定义好以下元素
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会始终进行如下事件循环直到目标被解决了或者思考迭代次数超过了最大次数:
我们提出一个问题,看看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模式也存在很多的不足:
但是无论如何,react框架提出了一种非常好的思路,让现有的应用得到一次智能化的进化机会。现在很多场景已经有了非常成熟的react agent应用,比如智能客服、知识助手、个性化营销、智能销售助理等等。
在下一篇文章中,风叔将介绍另一种ai agent设计模式,rewoo。
作者:风叔,微信公众号:风叔云
本文由@风叔 原创发布于人人都是产品经理,未经作者许可,禁止转载。
题图来自unsplash,基于cc0协议。
昨天
昨天
昨天
昨天
昨天
昨天
昨天
昨天
昨天
昨天
金沙娱场城app copyright © 2024 金沙娱场城app-老版金沙app下载客户手机端 北京智识时代科技有限公司 金沙娱场城app的版权所有