codecamp

OpenClaw 支持的模型提供商(LLM)

模型提供商

OpenClaw 可以使用许多 LLM 提供商。选择一个,进行认证,然后将默认模型设置为 provider/model

推荐:Venice(Venice AI)

Venice 是我们推荐的 Venice AI 设置,用于隐私优先的推理,并可选择使用 Opus 处理最困难的任务。

  • 默认:venice/llama-3.3-70b
  • 最佳综合:venice/claude-opus-45(Opus 仍然是最强的)

参见 Venice AI

快速开始(两个步骤)

  1. 与提供商认证(通常通过 openclaw onboard)。
  2. 设置默认模型:

{
  agents: { defaults: { model: { primary: "anthropic/claude-opus-4-5" } } },
}

支持的提供商(入门集)

有关完整的提供商目录(xAI、Groq、Mistral 等)和高级配置,请参阅模型提供商

OpenClaw 支持的模型提供商(LLM)
OpenClaw 模型 CLI:列表、设置、别名、回退、扫描、状态
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OpenClaw 消息渠道

OpenClaw 工具

OpenClaw 模型

OpenClaw 平台

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }