快速开始
Arcee AI
Arcee AI 通过兼容 OpenAI 的 API 提供 Trinity 混合专家模型系列。所有 Trinity 模型均采用 Apache 2.0 许可证。Arcee 是 OpenClaw 的官方插件,不随核心内置,因此需要先安装插件,再进行新手引导。
你可以直接通过 Arcee 平台访问 Arcee 模型,也可以通过 OpenRouter 访问。
| 属性 | 值 |
|---|---|
| 提供商 | arcee |
| 身份验证 | ARCEEAI_API_KEY(直连)或 OPENROUTER_API_KEY(通过 OpenRouter) |
| API | 兼容 OpenAI |
| 基础 URL | https://api.arcee.ai/api/v1(直连)或 https://openrouter.ai/api/v1(OpenRouter) |
安装插件
openclaw plugins install @openclaw/arcee-provideropenclaw gateway restart入门指南
直连(Arcee 平台)
获取 API key
在 Arcee AI 创建 API key。
运行新手引导
openclaw onboard --auth-choice arceeai-api-key设置默认模型
{ agents: { defaults: { model: { primary: "arcee/trinity-large-thinking" }, }, },}通过 OpenRouter
获取 API key
在 OpenRouter 创建 API key。
运行新手引导
openclaw onboard --auth-choice arceeai-openrouter设置默认模型
{ agents: { defaults: { model: { primary: "arcee/trinity-large-thinking" }, }, },}直连和 OpenRouter 设置使用相同的模型引用。
非交互式设置
直连(Arcee 平台)
openclaw onboard --non-interactive \ --mode local \ --auth-choice arceeai-api-key \ --arceeai-api-key "$ARCEEAI_API_KEY"通过 OpenRouter
openclaw onboard --non-interactive \ --mode local \ --auth-choice arceeai-openrouter \ --openrouter-api-key "$OPENROUTER_API_KEY"内置目录
| 模型引用 | 名称 | 输入 | 上下文 | 最大输出 | 成本(每 100 万输入/输出 token) | 工具 | 说明 |
|---|---|---|---|---|---|---|---|
arcee/trinity-large-thinking |
Trinity Large Thinking | 文本 | 256K | 80K | $0.25 / $0.90 | 否 | 默认模型;扩展思考 |
arcee/trinity-large-preview |
Trinity Large Preview | 文本 | 128K | 16K | $0.25 / $1.00 | 是 | 通用;4000 亿参数,130 亿活跃参数 |
arcee/trinity-mini |
Trinity Mini 26B | 文本 | 128K | 80K | $0.045 / $0.15 | 是 | 速度快且成本高效;函数调用 |
支持的功能
| 功能 | 支持情况 |
|---|---|
| 流式传输 | 是 |
| 工具使用/函数调用 | 是(Trinity Mini、Trinity Large Preview) |
| 结构化输出(JSON 模式和 JSON schema) | 是 |
| 扩展思考 | 是(Trinity Large Thinking;工具已禁用) |
环境说明
如果 Gateway 网关以守护进程(launchd/systemd)运行,请确保该进程可以使用 ARCEEAI_API_KEY
(或 OPENROUTER_API_KEY),例如将其配置在
~/.openclaw/.env 中或通过 env.shellEnv 配置。
OpenRouter 路由
通过 OpenRouter 使用 Arcee 模型时,仍使用相同的 arcee/* 模型引用。
OpenClaw 会根据你的身份验证选择透明地进行路由。有关 OpenRouter 特定的
配置详情,请参阅 OpenRouter 提供商文档。
相关内容
Was this useful?