-
Notifications
You must be signed in to change notification settings - Fork 7.9k
agent并不等于模型 #170
Copy link
Copy link
Open
Labels
Description
open ai官网对于模型有一个清晰的定义(like GPT-4 and GPT-3.5, have been trained to understand natural and formal language. Models like GPT-4 allows text outputs in response to their inputs. )也就是说,模型本质上是“会理解输入并生成结果”的核心推理引擎。
对于agent来讲(Agents are systems that intelligently accomplish tasks—from simple goals to complex, open-ended workflows.)官方把 agent 定义为:能够智能地完成任务的系统,任务范围可以从简单目标到复杂、开放式工作流。OpenAI 还明确说,构建 agent 的核心组件不只有模型,还包括 tools(工具)、state/memory(状态/记忆)、orchestration(编排)。所以,agent 不是单独一个模型,而是“模型 + 工具 + 记忆 + 工作流控制”的完整系统
所以agent和model不行一个相等关系,可以这样理解模型负责“思考/理解/生成”。agent负责“把事情做完”。
Reactions are currently unavailable