9. 定价与商业模式
10 模块知识库第 9 篇——讲 agent 怎么被计费:Token 计费 / Conversation 计费 / Action 计费 / 订阅 / 开源 / 私有化 6 大商业模式,以及如何根据业务场景选型。
本文覆盖 6 种计费模式 + 选型决策:
- 6 种计费模式 订阅 / 按量 / tiered / seat-based / 自带 key / 企业合约
- API 定价 4 要素 input / output / cache hit / cache miss 的实际单次成本
- 订阅 vs 按量 什么时候订阅划算,什么时候按量更便宜,临界点
- 企业级 SLA 谈判 5 个常见条款(可用率 / 响应时间 / 数据归属 / 退出 / 审计)
选型快查 (TL;DR)
| 场景 | 推荐模式 | 代表 agent |
|---|---|---|
| 个人开发者日常 coding | Per-seat 订阅 | Cursor / Claude Code $20/月 |
| 中度使用 + 想控成本 | 按 conversation / credit | ChatGPT Plus / Manus Pro |
| 重度 / 自动化场景 | Per token(API) | Claude API / OpenAI API |
| 客服 / 销售类业务 | Per conversation | Sierra / Agentforce Service |
| 企业 / 私有化 | Per deployment | Qwen-Agent 专属版 2.0 / Agentforce Hyperforce |
| 私有化 + 二次开发 | 开源 + 商业版 | Qwen-Agent / Coze / AutoGPT |
| 按用量灵活消耗 | 按 action / credit | Coze 3 / WorkBuddy 积分 |
1. 这是什么 + 为什么重要
定价与商业模式回答的是 agent 产品最商业化的一组问题:怎么收费?按什么单位?为什么这种计费方式会决定你的 agent 能跑多深?
agent 行业的计费模式高度分化,从最细粒度的"按 token"到最粗粒度的"按 conversation",再到"开源免费 + 商业版"的零边际成本,六种典型计费模式覆盖了几乎所有 agent 产品:
- 按 token 计费 — 用多少付多少(API 常见)
- 按 conversation 计费 — 客户每次对话付一次(Agentforce 行业首创)
- 按 action / credit 计费 — 把所有操作折算成"积分"(Agentforce Flex Credits、Coze Credits)
- 订阅制 — Free / Pro / Team / Enterprise 分级按月付(主流 IDE agent)
- 开源免费 + 商业版付费 — 框架代码开源,增值功能收费(Qwen-Agent、Coze 开源版、AutoGPT)
- 私有化 / VPC 部署 — 一次性部署费 + 年维护费(企业版专属)
为什么商业模式比"价格数字"更重要:同样 $20/月,Cursor 给的是"无限 Tab 补全 + 限速 Agent 任务",ChatGPT Plus 给的是"50 次 Agent 任务/月 + GPT-5/o3 模型",Trae Solo 给的是"云端 10 路并发任务"。这三个 $20 的"实际可消费价值"完全不同 — 计费单位(per token / per conversation / per seat / per credit)直接决定了用量天花板、边际成本、与业务价值的对齐程度。一个企业选型时如果只看"哪家便宜",会忽视"哪种计费单位能跟我的业务量匹配"。
2. 子模块分解
2.1 按 token 计费
是什么:按 LLM token 用量(in + out)后付费。1 token ≈ 1 个英文单词 / 1-2 个汉字。最透明、零浪费,但用户需自己预测量,容易爆预算。
实现模式:
- 纯 API 后付费:Anthropic API / OpenAI API / 通义千问 API / Google Vertex AI Agent Engine(URL: https://help.aliyun.com/zh/model-studio/billing-for-model-studio ✅ P1 + https://cloud.google.com/gemini-enterprise ✅ P1)
- 订阅 + API 二选一:Claude Code(订阅上限内无限用 / 超限 fallback 到 API 费率)
- 批量半价 + 上下文缓存折扣:Qwen-Agent 批量调用价格减半;上下文缓存享有折扣(URL: https://help.aliyun.com/zh/model-studio/billing-for-model-studio ✅ P1)
跨 agent 关键差异
| Agent | Token 计费档位 | 起步价 | 单位成本 | 官方 doc |
|---|---|---|---|---|
| Claude Code | API(订阅上限外) | Free / $17 Pro / $100 Max | 取决于模型(Sonnet/Opus/Haiku) | https://claude.com/pricing ✅ |
| Qwen-Agent | 阿里云百炼 API | 新用户赠 7000 万 token | ⚠️ qwen3.7-max 输入 12 元/输出 36 元/百万 token(示例价,具体随模型变) | https://help.aliyun.com/zh/model-studio/billing-for-model-studio ✅ |
| Antigravity | Vertex AI Agent Engine | $300 新用户免费 credits | 按 token / 计算用量付费 | https://cloud.google.com/gemini-enterprise ✅ |
| ChatGPT Agent | API(Codex) | 按 OpenAI pricing | 按模型 + token 数 | https://openai.com/pricing ✅ |
最佳实践:用量稳定 → 选订阅;用量波动 → 选 API;超大用量 → 选 batch / cache 折扣。
常见坑:API 用户经常忘记计 cache read / cache write 也算 token;Qwen-Agent 上下文缓存折扣需要主动开启(默认不开)。
来源:Anthropic 官方 https://claude.com/pricing ✅;阿里云百炼 https://help.aliyun.com/zh/model-studio/billing-for-model-studio ✅。
2.2 按 conversation 计费(Agentforce 行业首创)
是什么:按"客户与 agent 的对话次数"计费,不按消息条数、不按 token。$2 / 每次对话(行业首创)。优势:计费单位与客服业务价值(每通客户对话)直接对齐;客户业务量预测简单。
实现模式:
- Agentforce Conversations $2/次(customer-facing agents 专用):Salesforce 行业首创,2024 年起推出(URL: https://www.salesforce.com/agentforce/pricing/ ✅ P1 + CIO.com 二次报道 ✅ P2)
- Copilot Studio 按 message 计费(变种):Microsoft Copilot Studio $0.01/message(URL: https://www.microsoft.com/en-us/microsoft-365-copilot/pricing/copilot-studio ✅ P1)
- Sierra outcome-based pricing:不按对话 / 不按 token,按"客户问题是否解决"的 outcome 收费(URL: https://sierra.ai/blog/outcomemaxxing ✅ P1)
跨 agent 关键差异
| Agent | 按 conversation 计费 | 起步价 | 行业地位 | 官方 doc |
|---|---|---|---|---|
| Agentforce | ✅ Conversations $2 / 每次对话 | $0 试用(前 1000 次 Service 对话免费) | 行业首创 ✅(salesforce.com/pricing + CIO.com 双源) | https://www.salesforce.com/agentforce/pricing/ ✅ |
| Copilot Studio | ⚠️ 按 message($0.01/message) | Copilot Studio license + $0.01/message | 类 conversation 但更细粒度 | https://www.microsoft.com/en-us/microsoft-365-copilot/pricing/copilot-studio ✅ |
| Sierra | ⚠️ outcome-based(按"问题是否解决") | Custom pricing | 概念上的下一代 evolution | https://sierra.ai/blog/outcomemaxxing ✅ |
最佳实践:"每次对话成本"应与"每次对话商业价值"匹配 — 客服场景(每通对话价值 $5-50 业务影响)用按 conversation 计费最划算。
常见坑:Agentforce "1 次对话" 的官方定义在 salesforce.com/pricing/ 主站未明示 24 小时窗口(audit 已标记 ❌);目前"对话"具体如何计数需以 Salesforce pricing FAQ 为准 — 不要自行假设。
来源:Salesforce https://www.salesforce.com/agentforce/pricing/ ✅;CIO.com https://www.cio.com/article/3499283/salesforce-mulls-consumption-pricing-for-ai-agents.html ✅;Microsoft https://www.microsoft.com/en-us/microsoft-365-copilot/pricing/copilot-studio ✅。
2.3 按 action / credit 计费
是什么:把 agent 的每次操作("action")折算成 credit(或称 Flex Credits / Credits)。1 credit = 一次标准操作;语音 action = 1.5x credit。优势:跨模型/跨操作统一计量,订阅可在文本/图像/语音间通用。劣势:用户难以精确预测"1 个 action 等于多少钱"。
实现模式:
- Agentforce Flex Credits:
Agent action = 20 Flex Credits、Voice action = 30 Flex Credits、$500 / 100k credits;1 Edition 套餐含 2.5M Flex Credits/org/年(URL: https://www.salesforce.com/agentforce/pricing/ ✅ P1) - Coze Credits(国际版):
Premium Basic $9/月 = 100 Credits、Pro $19/月 = 400 Credits、Ultra $39/月 = 1000 Credits(URL: https://www.coze.com/pricing ✅ P1,audit 已 cross-validate) - Qwen-Agent Credits(订阅制内):
标准坐席 198 元 / 高级坐席 698 元 / 尊享坐席 1398 元(统一 Credits 跨模型通用)(URL: https://developer.aliyun.com/article/1733331 ✅ P1) - Manus Credits:
简单任务 ≈ 50 credits、Wide Research 100 agent ≈ 500-1000 credits;单任务平均成本 ≈ $2(URL: https://manus.im/pricing,部分数字为公开报道推断) - WorkBuddy Credits:
新用户 5000 Credits + 每日 100 + 连登 7 天 10 倍积分;Auto 免费 + 付费模型按 token 折算(URL: https://blog.csdn.net/.../WorkBuddy 官方公告)
跨 agent 关键差异
| Agent | Action/credit 单位 | 起步档 | 跨模型通用? | 官方 doc |
|---|---|---|---|---|
| Agentforce | Flex Credits(Agent 20 / Voice 30) | $500 / 100k credits | ✅ 统一额度池 | https://www.salesforce.com/agentforce/pricing/ ✅ |
| Coze 3 | Credits(国际版订阅含 credits) | $9 Premium Basic / 100 Credits | ✅ | https://www.coze.com/pricing ✅ |
| Qwen-Agent | Credits(订阅内含) | 198 元/坐席/月 | ✅ 同订阅跨模型 | https://developer.aliyun.com/article/1733331 ✅ |
| Manus | Credits(按任务消耗) | Free 200-300 credits | ❌ 仅本平台 | https://manus.im/pricing ⚠️ |
| WorkBuddy | Credits(Auto 免费 + 付费按量) | 个人专业版 58 元/月 | ⚠️ 主要在腾讯模型 | https://blog.csdn.net/... |
最佳实践:企业偏好(预算可控、跨模型灵活)→ Flex Credits / Credits;个人开发者 → 优先选订阅含 credits(免去逐次计费焦虑)。
常见坑:Coze 国内版"29 元 / 99 元"价格档位 ⚠️ audit 已标单源 P4(仅 1 篇.cn/pricing 官方页为准。
来源:Salesforce 官方 https://www.salesforce.com/agentforce/pricing/ ✅;阿里云 https://developer.aliyun.com/article/1733331 ✅;Coze 国际版 https://www.coze.com/pricing ✅;Manus https://manus.im/pricing ⚠️。
2.4 订阅制(Free / Pro / Team / Enterprise)
是什么:按用户/坐席/月订阅,分级定价(Free → Pro → Team → Enterprise)。优势:可预测成本、用户教育成本低、采购流程标准化。劣势:用量与价格脱节(订阅用满 vs 浪费都付同样钱)。
实现模式:
- 分级订阅 + 月付/年付折扣:Claude Code / Cursor / ChatGPT / Manus / Trae Solo / Devin
- 按坐席(per seat)+ 池化 credit:Manus Team 共享 credits 池(URL: https://manus.im/team ✅)
- 企业销售洽谈:Sierra / Devin Enterprise / Coze HiAgent / Qwen-Agent 专属版
跨 agent 关键差异
| Agent | Free | Pro/基础订阅 | Team | Enterprise | 官方 doc |
|---|---|---|---|---|---|
| Claude Code | $0 | $17/月(年付)/ $20(月付) | $20/座/月(年付) | $20/座 + API 费率 | https://claude.com/pricing ✅ |
| ChatGPT Agent | $0 | Plus $20 | $25/座/月(年付)/ $30(月付) | Contact sales | https://openai.com/pricing ✅ |
| Cursor 2 | Free Hobby | Pro $20 | Business $40 | Custom | https://cursor.com/pricing ✅ |
| Devin | $0 | $20/月 | Team $80/月 + $40/座 | Contact sales | https://www.devin.ai/pricing ✅ |
| Manus | $0(~300 credits) | Pro ~$20-40/月 | Team(per-seat + pooled credits) | Contact sales | https://manus.im/pricing ⚠️ |
| Trae Solo | $0 | Pro $10(限免)/ Lite $3 | Pro+ $30 | Ultra $100 | https://www.trae.ai/pricing ✅ |
| WorkBuddy | 免费(下载即用) | 专业版 58 元/月 | 企业版 | 企业版 + 私有化 | https://www.codebuddy.cn/work/ |
行业平均价位:个人 Pro $17-20/月,Team $25-40/座/月,Enterprise 谈判制。
2.5 开源免费 + 商业版付费
是什么:核心框架 Apache-2.0 / MIT 开源,企业增值功能(SLA、安全、托管)收费。优势:零边际成本、自托管可控、社区生态;劣势:自己运维、自己买 LLM token。
实现模式:
- 框架完全开源 + 云托管付费:Qwen-Agent(Apache-2.0 + 阿里云托管)、AutoGPT(MIT + 云服务)
- 核心开源 + 闭源商业版:Coze Studio(开源) + Coze Pro(闭源付费版)
- 开源 + 企业版付费:HiAgent(火山引擎)
跨 agent 关键差异
| Agent | 开源协议 | 自托管? | 商业版 | 官方 doc |
|---|---|---|---|---|
| Qwen-Agent | Apache-2.0 | ✅ 自托管 | Token Plan 订阅(198 元/坐席/月起)+ 阿里云百炼 API | https://github.com/QwenLM/Qwen-Agent ✅ P1 |
| Coze 3 | Apache-2.0(Coze Studio 开源版) | ✅ 自托管 | Coze Pro + HiAgent 企业版 + 私有化部署 | https://github.com/coze-dev/coze-studio ✅ P1 |
| AutoGPT | MIT | ✅ 自托管 | Cloud agents(付费云服务) | https://github.com/Significant-Gravitas/AutoGPT ✅ P1 |
| Sierra | ❌ 不开源 | ❌ | Custom(只服务 Fortune 50 40%) | https://sierra.ai/ ✅ P1 |
2.6 私有化 / VPC 部署(企业版一次性费用)
是什么:agent 平台部署到客户自己的 VPC / 私有云 / on-prem,一次性部署费 + 年维护费。优势:数据不出域、合规可控、可深度定制;劣势:前期成本高($50k-500k+)、自己运维、自己升级。
实现模式:
- VPC 专享:数据隔离,云厂商托管(Qwen-Agent 专属版 2.0、WorkBuddy VPC 专享、Coze HiAgent 私有化)
- On-prem 私有化:完全本地部署(AutoGPT 自托管、Coze 开源版 on-prem)
- 企业专属云:Salesforce Hyperforce / Microsoft Azure 隔离租户
跨 agent 关键差异
| Agent | 私有化能力 | 部署模式 | 计费 | 官方 doc |
|---|---|---|---|---|
| Claude Code | ❌ 不支持私有化 | 仅 SaaS | 订阅 + API | https://claude.com/pricing ✅ |
| ChatGPT Agent | ✅ Enterprise 版 | Enterprise + ZDR | Contact sales | https://openai.com/enterprise ✅ |
| Devin | ✅ Enterprise 版 | Dedicated deployment(企业专属物理/逻辑隔离) | Contact sales | https://www.devin.ai/enterprise ✅ |
| WorkBuddy | ✅ 公有云 / VPC / 私有化 | 三种部署 | 企业版按部署模式计费 | https://www.codebuddy.cn/work/ |
| Qwen-Agent | ✅ 专属版 2.0 + 跨地域部署(华北2/美/新加坡/德/日) | 阿里云专有云 | 企业版按需报价 | https://help.aliyun.com/zh/model-studio ✅ |
| Agentforce | ✅ Hyperforce + Public Sector FedRAMP | Salesforce Hyperforce + Asymmetric Multi-tenancy | Contact sales | https://engineering.salesforce.com/hyperforce ✅ P2 |
| Coze 3 | ✅ HiAgent 私有化 | 火山引擎私有化 | 按需报价 | https://www.volcengine.com/ ⚠️ |
| AutoGPT | ✅ 完全自托管 | Docker / 任意云 | $0(自己付 LLM token) | https://github.com/Significant-Gravitas/AutoGPT ✅ |
| Copilot Studio | ✅ Azure VNet 集成 | VNet isolation | Microsoft 365 E7 $99/座/月(2026-05) P3 | https://learn.microsoft.com/en-us/microsoft-copilot-studio/admin-vnet ✅ |
| Sierra | ✅ Sierra cloud | 私有云 | Custom | https://sierra.ai/ ✅ |
3. 横向对比总表
| Agent | 计费模式 | 起步价 | 单位成本 / 关键数字 | 适用场景 | 官方 doc |
|---|---|---|---|---|---|
| Claude Code | 订阅 + API + 按 token(超限) | Free / $17 Pro / $100 Max | API 费率按模型(Sonnet/Opus/Haiku);Max 5x/20x Pro 用量 | 开发者 / 编程 agent / 个人 Pro + 企业 API | https://claude.com/pricing ✅ |
| ChatGPT Agent | 订阅 + Apps SDK 抽成(⚠️ 不确定) | Plus $20 / Pro $200 / Team $25-30 | ⚠️ Agent 配额 50/400/40 次/月为单源转引,未官方确认;⚠️ Apps SDK 30% 抽成未在 OpenAI 官方 doc 找到 | 个人 ChatGPT Plus / 企业 Apps SDK 生态 | https://openai.com/pricing ✅ |
| Devin | 订阅 + API + 团队分阶 | $20 Pro / $200 Max / Team $80+$40/座 | Team GA 起步 $500/月 | 软件工程师 / SWE agent | https://www.devin.ai/pricing ✅ |
| Cursor 2 | 订阅(分级) | Free Hobby / Pro $20 / Business $40 | 无 seat 上限 + 共享协作 | IDE 编程 | https://cursor.com/pricing ✅ |
| Manus | 订阅 + Credits 池 | Free / Pro ~$20-40 | 单任务 ≈ $2(公开报道);Team credits 池共享 | 个人研究 / 团队研究 | https://manus.im/pricing ⚠️ |
| Antigravity | 订阅(分级)+ 按 token(Vertex) | Free(5h 重置 quota) / Pro $20 / Ultra $250 → 降级 $200 | Google AI Pro / Ultra $30 / $100 / $200 | 编程 IDE + 企业 Gemini Agent Platform | https://cloud.google.com/gemini-enterprise ✅ |
| Agentforce | 按 conversation + Flex Credits + 订阅 | Conversations $2/次 + Flex $500/100k + add-on $125 | Agent action 20 credits / Voice 30 credits / 1 Edition 含 2.5M Flex Credits/org/年 | 企业客服 / 销售 / 行业垂直 | https://www.salesforce.com/agentforce/pricing/ ✅ |
| Sierra | outcome-based + Custom | Custom(不公开) | 按"问题是否解决"outcome 收费 | 客服 vertical(只服务 Fortune 50 40%) | https://sierra.ai/blog/outcomemaxxing ✅ |
| Coze 3 | 开源免费 + 订阅(国际)+ HiAgent 企业 | Free / Premium Basic $9 / Pro $19 / Ultra $39 / ⚠️ 国内 29-99 元/月 P4 单源 | 国际版 100/400/1000 Credits | Bot 开发 / 中小企业 / 国内企业 HiAgent | https://www.coze.com/pricing ✅ + https://www.coze.cn/open ✅ |
| Copilot Studio | 按 message + 订阅 | $0.01/message + license | ⚠️ M365 E7 $99 + Agent 365 $15 为单源 P3 推断 | 企业 Microsoft 365 集成 | https://www.microsoft.com/en-us/microsoft-365-copilot/pricing/copilot-studio ✅ |
| Trae Solo | 订阅(分级) | Free / Lite $3 / Pro $10(限免)/ Pro+ $30 / Ultra $100 | 国际版 5 档订阅 + 云端多任务并发 | 个人 → 中小企业编程 | https://www.trae.ai/pricing ✅ |
| AutoGPT | 开源免费 + 云服务 | $0(自托管)+ 云服务付费 | 自托管只付 LLM token | 研究 / 自建 agent 平台 | https://github.com/Significant-Gravitas/AutoGPT ✅ |
| Qwen-Agent | 框架免费 + API 按 token + Token Plan 订阅 | 198 元/坐席/月起 + 新用户 7000 万 token 赠 | qwen3.7-max 输入 12 元/输出 36 元/百万 token(示例) | 国内开发者 / 企业 API + 团队订阅 + 专属版私有化 | https://help.aliyun.com/zh/model-studio/billing-for-model-studio ✅ |
| WorkBuddy | 个人免费 + 专业版订阅 + 企业部署 | 专业版 58 元/月 | 5000 Credits + 每日 100 + 连登 7 天 10 倍 | 国内个人 / 企业微信生态 | https://www.codebuddy.cn/work/ ⚠️ |
| Accio Work | 订阅(国际商家) | Pro $9.99 早鸟 / $20 正式 | 2000 积分/24h 重置 | Alibaba.com 国际站商家 | https://new.qq.com/rain/a/20250311A07FHO00 ⚠️ |
4. 选型建议
按场景推荐
| 场景 | 推荐计费模式 | 推荐 Agent | 理由 |
|---|---|---|---|
| 个人开发者 / 学生 | 订阅(Pro 档) | Claude Code Pro($17)/ Cursor Pro($20)/ ChatGPT Plus($20)/ Trae Solo Pro($10) | 月 $10-20 足够日常编程 + Agent 实验 |
| 个人深度研究 / 探索 | Credits / 按 token | Manus($20-40)/ ChatGPT Pro($200,⚠️ 配额单源) | Credits 灵活,任务波动大 |
| 小团队(2-20 人) | 订阅 + Team 池化 credits | Claude Code Team($20/座)/ Manus Team(pooled credits)/ Trae Pro+($30)/ WorkBuddy 专业版 | Team 共享 + admin dashboard + RBAC |
| 客服 vertical 企业 | 按 conversation / outcome | Agentforce($2/对话 + Flex Credits) / Sierra(outcome-based) | 计费与业务价值直接对齐 |
| Microsoft 全家桶企业 | 按 message + M365 集成 | Copilot Studio($0.01/message + M365 E7) | 已有 M365 / SharePoint / Dataverse 资产 |
| 中型企业(50-500 人) | 订阅 + Enterprise | Claude Code Enterprise / Devin Team / Antigravity Business($40) / Cursor Business($40) | SSO + audit + compliance + 数据保护 |
| 大型企业(500+ 人) | 私有化 / VPC + 企业销售 | Qwen-Agent 专属版 / Coze HiAgent 私有化 / Salesforce Hyperforce / Devin Dedicated / Copilot Studio VNet | 合规 + 数据驻留 + 定制 |
| 跨境 / 多地域 | 跨地域 + 私有化 | Qwen-Agent(5 地域)/ Salesforce Hyperforce / Microsoft Azure regions | 数据驻留 + 合规分区 |
| 金融/医疗/政府 | 私有化 + 强合规 | Qwen-Agent 专属版 2.0 / Agentforce Public Sector(FedRAMP)/ Sierra / AutoGPT 自托管 | SOC 2 / HIPAA / FedRAMP / GDPR + 数据不出域 |
| AI 应用商店生态 | Apps SDK marketplace | ChatGPT Agent + Apps SDK | 卖应用 + 分发渠道(⚠️ 30% 抽成未确认) |
| 开源 / 研究 / 自建 | Apache/MIT + 自托管 | AutoGPT / Qwen-Agent / Coze Studio 开源版 | 零边际成本 + 完全可控 |
| Bot 开发 / 国内市场 | 国内专业版订阅 + Credits | Coze 3(国内 29/99 元/月 单源)/ WorkBuddy / Qwen-Agent | 国内合规 + 中文优化 + 飞书/微信生态 |
决策三问(选型前必答)
- 用量稳定吗? → 稳定选订阅;波动大选 API / Credits / 按 conversation。
- 业务单位是什么? → 编程用"per developer seat";客服用"per conversation";研究用"per task credit"。
- 数据合规要求? → 公有云 SaaS / 私有云 VPC / on-prem 部署三档递进。