
国产智能体平台横评:Dify、Coze、文心、通义
国产智能体平台格局 2026 年,中国 AI Agent 市场形成"四大金刚"格局: 开发者导向 ↑ Dify ─────┬──── Coze | 文心 ─────┼──── 通义 ↓ 消费者导向 Dify:开源实力派 定位 Dify 是开源的 LLM 应用开发平台,定位"AI 版 WordPress"。 核心能力 dify_features = { "工作流编排": "可视化拖拽编排 Agent 流程", "RAG引擎": "内置向量检索 + 重排序 + 多路召回", "模型支持": "OpenAI/Claude/Qwen/DeepSeek/Ollama 等 30+", "工具生态": "内置 50+ 工具 + 自定义 API", "部署方式": "云端 SaaS + 私有部署", "开源协议": "Apache 2.0(可商用)", } 工作流示例 # Dify 工作流 YAML nodes: - id: start type: input vars: [user_query] - id: classify type: llm model: qwen3-7b prompt: "判断用户意图:{user_query}" output: intent - id: rag_search type: knowledge dataset: company_docs query: "{user_query}" condition: intent == "qa" - id: web_search type: tool tool: tavily_search query: "{user_query}" condition: intent == "search" - id: response type: llm model: qwen3-7b prompt: "基于以下信息回答:{rag_search.output or web_search.output}" 评估 维度 评分 说明 易用性 ⭐⭐⭐⭐ 可视化编排,学习曲线平缓 灵活性 ⭐⭐⭐⭐ 工作流 + Agent 两种模式 模型支持 ⭐⭐⭐⭐⭐ 30+ 模型,最全面 私有部署 ⭐⭐⭐⭐⭐ Docker 一键部署 生态 ⭐⭐⭐ 插件市场在发展 性能 ⭐⭐⭐ 高并发下需优化 适合场景 ✅ 企业内部知识库问答 ✅ 需要私有部署的政企客户 ✅ 多模型 A/B 测试 ✅ 开发者构建定制 Agent Coze(扣子):消费级王者 定位 字节跳动出品,定位"人人都能做 Bot"——最低门槛的 Agent 构建平台。 ...
