ruflo × Flow Nexus Swarm:基于 MCP 的云端 AI 蜂群部署与事件驱动工作流编排指南
在 ruflo 项目中,flow-nexus-swarm 是一个面向编排(orchestration)类别的技能文档,它定义了如何通过 Flow Nexus 云平台部署和管理 AI 智能体蜂群(swarm),并利用消息队列实现事件驱动的工作流自动化。本文以该技能文档 SKILL.md 为主体,完整覆盖蜂群生命周期管理、工作流定义与执行、智能体编排模式、模板库以及进阶监控能力,并结合 ruflo 仓库中 MCP 注册源码(mcp-generator.ts)佐证接入链路。读完本文后,你将掌握:如何初始化不同拓扑的蜂群、如何定义带依赖关系与重试策略的事件驱动工作流、如何选择合适的智能体类型与分配策略,以及如何将 Flow Nexus 云端编排与 ruflo 本地协调机制组合使用。
一、技能定位与平台概览
该技能的元信息声明了其用途与前置依赖:
- 名称:
flow-nexus-swarm - 类别:
orchestration(编排类技能) - 标签:swarm、workflow、cloud、agents、automation、message-queue
- 前置要求:
flow-nexusMCP server- 活跃的 Flow Nexus 账户(平台侧完成注册)
Flow Nexus 为 AI 智能体蜂群提供云端编排能力,其核心特性包括:
| 特性 | 说明 |
|---|---|
| 多拓扑支持 | 层级(hierarchical)、网状(mesh)、环形(ring)、星型(star)等架构 |
| 事件驱动工作流 | 消息队列处理 + 异步执行 |
| 模板库 | 面向常见场景的预置蜂群配置 |
| 智能体智能分配 | 基于向量相似度的能力匹配,选择最优智能体 |
| 实时监控 | 全面的指标与审计轨迹(audit trail) |
| 可扩展基础设施 | 云端执行与自动扩缩容 |
需要强调一点:文档结尾特别指出,Flow Nexus 提供的是云端编排基础设施;若需要在本地执行与协调,应使用核心的 claude-flow MCP server,并与 Flow Nexus 搭配使用以获得最大灵活性。这一"云端 + 本地"的分工是理解本技能在 ruflo 生态中位置的关键。
二、接入与认证:MCP 注册链路
在调用任何 mcp__flow-nexus__* 工具之前,需要完成安装、注册、登录与 MCP server 挂载四步:
# 安装 Flow Nexus
npm install -g flow-nexus@latest
# 注册账户
npx flow-nexus@latest register
# 登录
npx flow-nexus@latest login
# 将 MCP server 添加到 Claude Code
claude mcp add flow-nexus npx flow-nexus@latest mcp start
在 ruflo 仓库源码中,这条注册链路得到了印证。ruflo 的 init 流程会在 mcp-generator.ts 中按配置生成 Flow Nexus 的 MCP 注册项:
// Flow Nexus MCP server (cloud features)
if (config.flowNexus) {
mcpServers['flow-nexus'] = createMCPServerEntry(
['flow-nexus@latest', 'mcp', 'start'],
{ ...npmEnv },
{ optional: true, requiresAuth: true }
);
}
从源码结构看,有几个值得注意的实现事实:
-
optional: true:Flow Nexus 属于可选 MCP server,与核心的claude-flowserver 不同,它不阻塞本地运行,这正是"云端编排 + 本地协调"分工的落地方式。 -
requiresAuth: true:源码明确标记该 server 需要认证,与技能文档要求的"活跃 Flow Nexus 账户"一致。 -
手动安装命令:对于不通过 ruflo
init生成的场景,mcp-generator.ts 中generateMCPCommands会按平台输出claude mcp add命令。Windows 平台使用cmd /c包装以兼容 npx,非 Windows 平台则直接使用npx -y flow-nexus@latest mcp start:# macOS / Linux claude mcp add flow-nexus -- npx -y flow-nexus@latest mcp start # Windows claude mcp add flow-nexus -- cmd /c npx -y flow-nexus@latest mcp start -
交互式选项与 opt-in 开关:在 init.ts 中,
flowNexus既是技能集选项(Cloud platform skills,默认未选中),也是写入.mcp.json的注册开关——源码注释表明,认证受限的云端 server(ruv-swarm、flow-nexus)默认不会写入已提交的.mcp.json,仅在显式开启时注册。
三、蜂群管理(Swarm Management)
3.1 初始化蜂群
使用 swarm_init 创建带有指定拓扑与配置的蜂群:
mcp__flow-nexus__swarm_init({
topology: "hierarchical", // 可选: mesh, ring, star, hierarchical
maxAgents: 8,
strategy: "balanced" // 可选: balanced, specialized, adaptive
})
拓扑(Topology)选择指南:
| 拓扑 | 结构特征 | 适用场景 |
|---|---|---|
hierarchical(层级) |
带协调节点的树形结构 | 复杂项目 |
mesh(网状) |
点对点协作 | 研究与分析 |
ring(环形) |
循环协调 | 顺序型工作流 |
star(星型) |
中心化枢纽 | 简单任务委派 |
策略(Strategy)选择指南:
| 策略 | 行为 |
|---|---|
balanced(均衡) |
工作负载在智能体间均匀分布 |
specialized(专业化) |
智能体聚焦各自专长领域 |
adaptive(自适应) |
根据任务复杂度动态调整 |
值得注意的是,ruflo 本地 MCP server 中同样存在拓扑概念且取值更丰富。swarm-tools.ts 中定义的合法拓扑集合包括 hierarchical、mesh、hierarchical-mesh、ring、star、hybrid、adaptive、pheromone-adaptive,默认值为 hierarchical-mesh,并对非法拓扑值返回带完整枚举的错误信息。这说明云端 Flow Nexus 的四拓扑是本地拓扑体系的"云端子集",两套体系在命名上保持了一致,便于跨端迁移配置。
3.2 生成智能体
通过 agent_spawn 向蜂群添加专业化智能体:
mcp__flow-nexus__agent_spawn({
type: "researcher", // 可选: researcher, coder, analyst, optimizer, coordinator
name: "Lead Researcher",
capabilities: ["web_search", "analysis", "summarization"]
})
智能体类型(Agent Types):
| 类型 | 职责 |
|---|---|
researcher(研究员) |
信息收集、网络检索、分析 |
coder(编码员) |
代码生成、重构、实现 |
analyst(分析师) |
数据分析、模式识别、洞察 |
optimizer(优化师) |
性能调优、资源优化 |
coordinator(协调员) |
任务委派、进度跟踪、集成 |
3.3 任务编排
通过 task_orchestrate 将任务分发到蜂群:
mcp__flow-nexus__task_orchestrate({
task: "Build a REST API with authentication and database integration",
strategy: "parallel", // 可选: parallel, sequential, adaptive
maxAgents: 5,
priority: "high" // 可选: low, medium, high, critical
})
执行策略:
parallel(并行):对相互独立的子任务采用最大并发度sequential(顺序):按依赖关系逐步执行adaptive(自适应):由 AI 根据任务分析结果自动选择策略
3.4 监控与扩缩容
蜂群生命周期后段由四个工具覆盖:状态查询、列表、扩缩容与销毁:
// 获取详细蜂群状态
mcp__flow-nexus__swarm_status({
swarm_id: "optional-id" // 未提供时使用当前活跃蜂群
})
// 列出所有活跃蜂群
mcp__flow-nexus__swarm_list({
status: "active" // 可选: active, destroyed, all
})
// 扩缩容蜂群
mcp__flow-nexus__swarm_scale({
target_agents: 10,
swarm_id: "optional-id"
})
// 优雅销毁蜂群
mcp__flow-nexus__swarm_destroy({
swarm_id: "optional-id"
})
四、工作流自动化(Workflow Automation)
4.1 创建工作流
工作流是 Flow Nexus 的核心抽象:由带依赖关系的步骤(steps)、事件触发器(triggers)与元数据(metadata)组成,并支持消息队列处理。一个完整的 CI/CD 流水线示例:
mcp__flow-nexus__workflow_create({
name: "CI/CD Pipeline",
description: "Automated testing, building, and deployment",
steps: [
{
id: "test",
action: "run_tests",
agent: "tester",
parallel: true
},
{
id: "build",
action: "build_app",
agent: "builder",
depends_on: ["test"]
},
{
id: "deploy",
action: "deploy_prod",
agent: "deployer",
depends_on: ["build"]
}
],
triggers: ["push_to_main", "manual_trigger"],
metadata: {
priority: 10,
retry_policy: "exponential_backoff"
}
})
工作流特性详解:
- 依赖管理:通过
depends_on声明步骤间依赖,引擎据此构建 DAG 执行图 - 并行执行:对无依赖的步骤设置
parallel: true即可并发运行 - 事件触发:支持 GitHub 事件、定时任务(cron 表达式)与手动触发
- 重试策略:
retry_policy: "exponential_backoff"使瞬时故障自动重试 - 优先级队列:高优先级工作流优先进入执行队列
4.2 执行工作流
工作流支持同步与异步两种执行模式:
mcp__flow-nexus__workflow_execute({
workflow_id: "workflow_id",
input_data: {
branch: "main",
commit: "abc123",
environment: "production"
},
async: true // 长时工作流使用基于消息队列的执行
})
执行模式:
- 同步(
async: false):立即执行并等待完成,适合短任务 - 异步(
async: true):消息队列处理,非阻塞,适合长时运行工作流
4.3 监控工作流
// 获取工作流状态与指标
mcp__flow-nexus__workflow_status({
workflow_id: "id",
execution_id: "specific-run-id", // 可选
include_metrics: true
})
// 带过滤条件的工作流列表
mcp__flow-nexus__workflow_list({
status: "running", // 可选: running, completed, failed, pending
limit: 10,
offset: 0
})
// 获取完整审计轨迹
mcp__flow-nexus__workflow_audit_trail({
workflow_id: "id",
limit: 50,
start_time: "2025-01-01T00:00:00Z"
})
4.4 智能体分配(Agent Assignment)
利用向量相似度为工作流任务智能匹配合适的智能体:
mcp__flow-nexus__workflow_agent_assign({
task_id: "task_id",
agent_type: "coder", // 首选智能体类型
use_vector_similarity: true // AI 驱动的能力匹配
})
向量相似度匹配机制:
- 分析任务需求与智能体能力描述
- 基于历史表现找到最优智能体
- 同时考虑负载与可用性
ruflo 仓库中与向量能力相关的技能文档(如 agentdb-vector-search)表明向量检索在该生态中是通用基础设施,use_vector_similarity 的匹配正是构建在这一层之上。
4.5 队列管理
消息队列是异步执行模式的核心,可查询队列深度与待处理消息:
mcp__flow-nexus__workflow_queue_status({
queue_name: "optional-specific-queue",
include_messages: true // 显示待处理消息
})
五、智能体编排模式(Agent Orchestration)
技能文档给出了四个可直接套用的完整编排模式,下面逐一说明其设计要点。
5.1 全栈开发模式(Full-Stack Development)
该模式演示了"层级拓扑 + 专业化分工 + 依赖图工作流"的组合:
// 1. 初始化层级拓扑蜂群
mcp__flow-nexus__swarm_init({
topology: "hierarchical",
maxAgents: 8,
strategy: "specialized"
})
// 2. 生成专业化智能体
mcp__flow-nexus__agent_spawn({ type: "coordinator", name: "Project Manager" })
mcp__flow-nexus__agent_spawn({ type: "coder", name: "Backend Developer" })
mcp__flow-nexus__agent_spawn({ type: "coder", name: "Frontend Developer" })
mcp__flow-nexus__agent_spawn({ type: "coder", name: "Database Architect" })
mcp__flow-nexus__agent_spawn({ type: "analyst", name: "QA Engineer" })
// 3. 创建开发工作流
mcp__flow-nexus__workflow_create({
name: "Full-Stack Development",
steps: [
{ id: "requirements", action: "analyze_requirements", agent: "coordinator" },
{ id: "db_design", action: "design_schema", agent: "Database Architect" },
{ id: "backend", action: "build_api", agent: "Backend Developer", depends_on: ["db_design"] },
{ id: "frontend", action: "build_ui", agent: "Frontend Developer", depends_on: ["requirements"] },
{ id: "integration", action: "integrate", agent: "Backend Developer", depends_on: ["backend", "frontend"] },
{ id: "testing", action: "qa_testing", agent: "QA Engineer", depends_on: ["integration"] }
]
})
// 4. 执行工作流
mcp__flow-nexus__workflow_execute({
workflow_id: "workflow_id",
input_data: {
project: "E-commerce Platform",
tech_stack: ["Node.js", "React", "PostgreSQL"]
}
})
设计要点:需求分析与数据库设计并行起步;后端依赖 DB 设计、前端依赖需求分析,二者并行推进;集成与测试串行收尾——依赖图清晰体现了"能并则并、必须串行处严格串行"的编排思路。
5.2 研究分析模式(Research & Analysis)
// 1. 为协作研究初始化网状拓扑
mcp__flow-nexus__swarm_init({
topology: "mesh",
maxAgents: 5,
strategy: "balanced"
})
// 2. 生成研究智能体
mcp__flow-nexus__agent_spawn({ type: "researcher", name: "Primary Researcher" })
mcp__flow-nexus__agent_spawn({ type: "researcher", name: "Secondary Researcher" })
mcp__flow-nexus__agent_spawn({ type: "analyst", name: "Data Analyst" })
mcp__flow-nexus__agent_spawn({ type: "analyst", name: "Insights Analyst" })
// 3. 编排研究任务
mcp__flow-nexus__task_orchestrate({
task: "Research machine learning trends for 2025 and analyze market opportunities",
strategy: "parallel",
maxAgents: 4,
priority: "high"
})
设计要点:研究任务天然适合网状拓扑(对等协作、无强层级)与 balanced 策略(工作量均摊);任务编排直接采用 parallel 策略并行收割多源信息。
5.3 CI/CD 流水线模式
mcp__flow-nexus__workflow_create({
name: "Deployment Pipeline",
description: "Automated testing, building, and multi-environment deployment",
steps: [
{ id: "lint", action: "lint_code", agent: "code_quality", parallel: true },
{ id: "unit_test", action: "unit_tests", agent: "test_runner", parallel: true },
{ id: "integration_test", action: "integration_tests", agent: "test_runner", parallel: true },
{ id: "build", action: "build_artifacts", agent: "builder", depends_on: ["lint", "unit_test", "integration_test"] },
{ id: "security_scan", action: "security_scan", agent: "security", depends_on: ["build"] },
{ id: "deploy_staging", action: "deploy", agent: "deployer", depends_on: ["security_scan"] },
{ id: "smoke_test", action: "smoke_tests", agent: "test_runner", depends_on: ["deploy_staging"] },
{ id: "deploy_prod", action: "deploy", agent: "deployer", depends_on: ["smoke_test"] }
],
triggers: ["github_push", "github_pr_merged"],
metadata: {
priority: 10,
auto_rollback: true
}
})
设计要点:三个质量门(lint / 单测 / 集成测试)并行执行后再汇聚到构建;生产部署前有安全扫描与 staging 冒烟测试双重关卡;triggers 绑定 GitHub 事件实现事件驱动,auto_rollback: true 提供部署失败自动回滚。
5.4 数据处理流水线模式(ETL)
mcp__flow-nexus__workflow_create({
name: "ETL Pipeline",
description: "Extract, Transform, Load data processing",
steps: [
{ id: "extract", action: "extract_data", agent: "data_extractor" },
{ id: "validate_raw", action: "validate_data", agent: "validator", depends_on: ["extract"] },
{ id: "transform", action: "transform_data", agent: "transformer", depends_on: ["validate_raw"] },
{ id: "enrich", action: "enrich_data", agent: "enricher", depends_on: ["transform"] },
{ id: "load", action: "load_data", agent: "loader", depends_on: ["enrich"] },
{ id: "validate_final", action: "validate_data", agent: "validator", depends_on: ["load"] }
],
triggers: ["schedule:0 2 * * *"], // 每天凌晨 2 点
metadata: {
retry_policy: "exponential_backoff",
max_retries: 3
}
})
设计要点:纯串行链路 + 双向校验(原始数据校验 + 加载后终校验);schedule: 前缀的 cron 触发器实现定时调度;指数退避重试 + 最多 3 次重试保障批处理可靠性。
六、模板与模式库(Templates & Patterns)
6.1 使用预置模板
// 从模板创建蜂群
mcp__flow-nexus__swarm_create_from_template({
template_name: "full-stack-dev",
overrides: {
maxAgents: 6,
strategy: "specialized"
}
})
// 列出可用模板
mcp__flow-nexus__swarm_templates_list({
category: "quickstart", // 可选: quickstart, specialized, enterprise, custom, all
includeStore: true
})
模板分类清单:
Quickstart 模板:
| 模板名 | 用途 |
|---|---|
full-stack-dev |
完整 Web 开发蜂群 |
research-team |
研究分析蜂群 |
code-review |
自动化代码评审蜂群 |
data-pipeline |
ETL 与数据处理 |
Specialized 模板:
| 模板名 | 用途 |
|---|---|
ml-development |
机器学习项目蜂群 |
mobile-dev |
移动应用开发 |
devops-automation |
基础设施与部署 |
security-audit |
安全分析与测试 |
Enterprise 模板:
| 模板名 | 用途 |
|---|---|
enterprise-migration |
大规模系统迁移 |
multi-repo-sync |
多仓库协同 |
compliance-review |
监管合规工作流 |
incident-response |
自动化事件响应 |
创建模板时可通过 overrides 覆盖 maxAgents、strategy 等默认参数,兼顾复用与定制。此外,文档指出可以将运行成功的蜂群配置保存为自定义模板(Custom Template Creation),供后续项目复用。
七、进阶能力(Advanced Features)
7.1 实时执行流监控
// 订阅执行流
mcp__flow-nexus__execution_stream_subscribe({
stream_type: "claude-flow-swarm",
deployment_id: "deployment_id"
})
// 获取执行流状态
mcp__flow-nexus__execution_stream_status({
stream_id: "stream_id"
})
// 列出执行期间创建的文件
mcp__flow-nexus__execution_files_list({
stream_id: "stream_id",
created_by: "claude-flow"
})
订阅 claude-flow-swarm 类型的执行流后,可实时跟踪云端部署的蜂群运行事件,并通过 execution_files_list 审计执行过程产出的文件。
7.2 蜂群指标与分析
// 蜂群性能指标
mcp__flow-nexus__swarm_status({ swarm_id: "id" })
// 工作流效率分析
mcp__flow-nexus__workflow_status({
workflow_id: "id",
include_metrics: true
})
7.3 多蜂群协同(Multi-Swarm Coordination)
对于多阶段复杂项目,可以按阶段分别建立不同拓扑的蜂群:
// 阶段 1:研究蜂群
const researchSwarm = await mcp__flow-nexus__swarm_init({
topology: "mesh",
maxAgents: 4
})
// 阶段 2:开发蜂群
const devSwarm = await mcp__flow-nexus__swarm_init({
topology: "hierarchical",
maxAgents: 8
})
// 阶段 3:测试蜂群
const testSwarm = await mcp__flow-nexus__swarm_init({
topology: "star",
maxAgents: 5
})
这一模式体现"为每个阶段选择最匹配拓扑"的思想:研究用 mesh 对等协作、开发用 hierarchical 层级管理、测试用 star 集中委派。
八、最佳实践(Best Practices)
8.1 选择正确的拓扑
// 简单项目:Star
mcp__flow-nexus__swarm_init({ topology: "star", maxAgents: 3 })
// 协作型工作:Mesh
mcp__flow-nexus__swarm_init({ topology: "mesh", maxAgents: 5 })
// 复杂项目:Hierarchical
mcp__flow-nexus__swarm_init({ topology: "hierarchical", maxAgents: 10 })
// 顺序型工作流:Ring
mcp__flow-nexus__swarm_init({ topology: "ring", maxAgents: 4 })
8.2 优化智能体分配
// 使用向量相似度实现最优匹配
mcp__flow-nexus__workflow_agent_assign({
task_id: "complex-task",
use_vector_similarity: true
})
8.3 实现完善的错误处理
mcp__flow-nexus__workflow_create({
name: "Resilient Workflow",
steps: [...],
metadata: {
retry_policy: "exponential_backoff",
max_retries: 3,
timeout: 300000, // 5 分钟
on_failure: "notify_and_rollback"
}
})
metadata 中四个字段构成完整的容错策略:指数退避重试、重试上限、全局超时、失败后通知并回滚。
8.4 监控驱动扩缩容
// 定期监控
const status = await mcp__flow-nexus__swarm_status()
// 基于负载动态扩容
if (status.workload > 0.8) {
await mcp__flow-nexus__swarm_scale({ target_agents: status.agents + 2 })
}
以负载率 0.8 作为扩容阈值,每次 +2 个智能体,是一个可复制的弹性伸缩策略。
8.5 长时工作流使用异步执行
// 长时工作流应使用消息队列
mcp__flow-nexus__workflow_execute({
workflow_id: "data-pipeline",
async: true // 非阻塞执行
})
// 监控进度
mcp__flow-nexus__workflow_queue_status({ include_messages: true })
8.6 清理资源
// 完成后销毁蜂群
mcp__flow-nexus__swarm_destroy({ swarm_id: "id" })
云端蜂群是有状态、有成本的资源,任务结束后应及时销毁以避免资源泄漏。
8.7 善用模板
// 使用经过验证的模板,而非从零搭建
mcp__flow-nexus__swarm_create_from_template({
template_name: "code-review",
overrides: { maxAgents: 4 }
})
九、典型应用场景
技能文档归纳了五大高频场景,可作为选型参考:
- 多仓库开发(Multi-Repo Development):跨仓库协同开发、测试与部署同步、跨仓库依赖管理;
- 研究项目(Research Projects):分布式信息收集、多数据源并行分析、协作式综合与报告;
- DevOps 自动化:基础设施即代码(IaC)部署、多环境测试、自动回滚与恢复;
- 代码质量工作流:自动化代码评审、安全扫描、性能基准测试;
- 数据处理:大规模 ETL 流水线、实时数据转换、数据校验与质量检查。
十、与 ruflo(Claude Flow)的集成
Flow Nexus 蜂群可与 ruflo 的 hooks 机制联动,实现任务前协调与任务后指标导出:
# 任务前协调设置
npx claude-flow@alpha hooks pre-task --description "Initialize swarm"
# 任务后指标导出
npx claude-flow@alpha hooks post-task --task-id "swarm-execution"
这一集成方式呼应了技能文档结尾的架构提示:pre-task hook 在本地侧完成协调准备,post-task hook 回收指标数据,而蜂群的实际执行与资源供给由 Flow Nexus 云端承担。平台侧的账户管理、沙箱、支付等更完整的平台管理能力,可参考同目录下的姊妹技能 flow-nexus-platform。
小结
flow-nexus-swarm 技能为 ruflo 用户提供了一套"拓扑选择 → 智能体生成 → 工作流定义 → 异步执行 → 监控扩缩"的完整云端编排方法论:
- 选型层:按任务形态选择 star/mesh/ring/hierarchical 拓扑与 balanced/specialized/adaptive 策略;
- 执行层:以
depends_on构建 DAG、parallel释放并发、async: true交由消息队列承载长任务; - 容错层:
retry_policy+max_retries+timeout+on_failure四元组保障流水线韧性; - 观测层:
workflow_status、workflow_audit_trail、execution_stream_subscribe提供从指标到审计轨迹的完整可观测性; - 接入层:通过
claude mcp add flow-nexus或 ruflo init 生成的 mcp-generator.ts 注册项挂载 MCP server(optional: true, requiresAuth: true),并与本地claude-flowserver 及 hooks 机制组合,形成云端 + 本地的混合编排体系。
所有工具调用均遵循 mcp__flow-nexus__<tool> 命名规范,配合本文给出的完整参数示例,可直接在已接入 Flow Nexus MCP server 的 Claude Code 环境中复制使用。
atomcodeClaude Code 的开源替代方案。连接任意大模型,编辑代码,运行命令,自动验证 — 全自动执行。用 Rust 构建,极致性能。 | An open-source alternative to Claude Code. Connect any LLM, edit code, run commands, and verify changes — autonomously. Built in Rust for speed. Get StartedRust0624
Hy4-previewHy4 preview 是由腾讯混元团队研发的新一代混合专家(MoE)旗舰模型。模型总参数量 770B,每个 token 激活 49B,主干共包含78层,第一层采用标准 FFN,其余 77 层均为 MoE 结构,每层包含 256 个路由专家与 1 个共享专家,每个 token 激活 top-8 路由专家及共享专家。主干之外原生内置 1 层 MTP(总参数量 10B,激活 0.7B)以支持投机解码。Python00
GLM-5.3GLM-5.3 与 GLM-5.2 使用相同的基座模型——所有提升均来自后训练。与 GLM-5.2 相比,它在复杂编程和长程任务上的表现显著提升。Jinja00
GLM-5.3-FlashGLM-5.3-Flash (320B-A18B),是GLM-5系列的首个原生多模态模型。320B总参数,能力超过GLM-5.2Jinja00
Spark-X2.5-4BSpark-X2.5-4B 旨在让强大的 AI 更实用、更高效、更易获得。在广泛日常任务中表现强劲,涵盖对话、写作、翻译、推理、编码、工具调用以及智能体工作流,并在同等规模的开源模型中取得领先成绩。Spark-X2.5 将面向效率的架构与最高 1M tokens 的原生上下文窗口相结合,并支持 200 多种语言。Python00
Spark-X2.5-1.7BSpark-X2.5-1.7B 旨在让强大的 AI 更加实用、高效且易于获取。这些模型在广泛的日常任务中表现出色,涵盖对话、写作、翻译、推理、编程、工具调用和智能体工作流,并在同等规模的开源模型中取得领先结果。Spark-X2.5 将面向效率的架构与最高 1M tokens 的原生上下文窗口相结合,并支持 200 多种语言。Python00