OpenClaw主配置文件參數(shù)使用大全
配置文件概述
OpenClaw 使用 JSON/JSON5 格式的配置文件來(lái)管理系統(tǒng)所有組件的設(shè)置。配置文件采用分層結(jié)構(gòu),支持靈活的配置覆蓋和環(huán)境變量注入。
主要特性
- JSON5 支持:支持注釋、尾隨逗號(hào)、單引號(hào)等擴(kuò)展語(yǔ)法
- 環(huán)境變量:可通過(guò)
env字段注入環(huán)境變量 - 配置合并:支持多配置文件合并(主配置 + 環(huán)境配置)
- 熱重載:部分配置支持運(yùn)行時(shí)重載(需重啟網(wǎng)關(guān))
文件格式與位置
主配置文件
# 主配置文件路徑 ~/.openclaw/openclaw.json # 配置文件備份 ~/.openclaw/openclaw.json.bak
配置文件格式
OpenClaw 支持標(biāo)準(zhǔn)的 JSON 和 JSON5 格式:
// JSON5 示例(支持注釋)
{
// 模型配置
models: {
// 提供商列表
providers: {
openai: {
apiKey: "${OPENAI_API_KEY}", // 環(huán)境變量引用
},
},
},
// 代理配置
agents: {
defaults: {
model: {
primary: "openai/gpt-4o",
},
},
},
}環(huán)境變量引用
{
env: {
// 設(shè)置環(huán)境變量
"OPENAI_API_KEY": "sk-xxx",
},
models: {
providers: {
openai: {
// 引用環(huán)境變量
apiKey: "${OPENAI_API_KEY}",
},
},
},
}配置文件結(jié)構(gòu)總覽
{
"meta": {}, // 元數(shù)據(jù)
"wizard": {}, // 向?qū)в涗?
"auth": {}, // 認(rèn)證配置
"models": {}, // 模型配置
"agents": {}, // 代理配置
"channels": {}, // 頻道配置
"gateway": {}, // 網(wǎng)關(guān)配置
"memory": {}, // 內(nèi)存配置
"plugins": {}, // 插件配置
"commands": {}, // 命令配置
"messages": {}, // 消息配置
"env": {}, // 環(huán)境變量(可選)
"tools": {}, // 工具配置(可選)
"bindings": [], // 代理綁定(可選)
}meta - 元數(shù)據(jù)
記錄配置文件的元數(shù)據(jù)信息,由系統(tǒng)自動(dòng)維護(hù)。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| lastTouchedVersion | string | - | 最后修改配置的 OpenClaw 版本 |
| lastTouchedAt | string | - | 最后修改時(shí)間 (ISO 8601) |
配置示例
{
"meta": {
"lastTouchedVersion": "2026.3.2",
"lastTouchedAt": "2026-03-05T05:04:35.393Z"
}
}wizard - 向?qū)в涗?/h2>
記錄配置向?qū)У倪\(yùn)行狀態(tài)。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| lastRunAt | string | - | 最后運(yùn)行向?qū)У臅r(shí)間 |
| lastRunVersion | string | - | 運(yùn)行向?qū)r(shí)的版本 |
| lastRunCommand | string | - | 最后運(yùn)行的命令 |
| lastRunMode | string | - | 運(yùn)行模式 (local/remote) |
配置示例
{
"wizard": {
"lastRunAt": "2026-02-25T12:06:39.761Z",
"lastRunVersion": "2026.2.24",
"lastRunCommand": "configure",
"lastRunMode": "local"
}
}auth - 認(rèn)證配置
管理模型提供商的認(rèn)證信息。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| profiles | object | {} | 認(rèn)證配置集合 |
認(rèn)證配置對(duì)象
{
"auth": {
"profiles": {
"<provider>:<profile>": {
"provider": "openai", // 提供商名稱
"mode": "api_key", // 認(rèn)證模式
"apiKey": "sk-xxx", // API密鑰
"baseUrl": "https://api.openai.com/v1" // API基礎(chǔ)URL
}
}
}
}配置示例
{
"auth": {
"profiles": {
"minimax-cn:default": {
"provider": "minimax-cn",
"mode": "api_key"
},
"openai:default": {
"provider": "openai",
"mode": "api_key"
}
}
}
}models - 模型配置
配置模型提供商和可用模型。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| mode | string | “merge” | 配置模式 (merge/replace) |
| providers | object | {} | 模型提供商配置 |
提供商配置結(jié)構(gòu)
{
"models": {
"providers": {
"<provider-name>": {
"baseUrl": "https://api.example.com", // API基礎(chǔ)URL
"apiKey": "sk-xxx", // API密鑰
"api": "openai-completions", // API類型
"models": [ // 可用模型列表
{
"id": "model-name", // 模型ID
"name": "顯示名稱", // 模型顯示名稱
"reasoning": true, // 是否支持推理
"input": ["text", "image"], // 支持的輸入類型
"cost": { // 成本配置
"input": 0.1, // 輸入token成本
"output": 0.3, // 輸出token成本
"cacheRead": 0.01, // 緩存讀取成本
"cacheWrite": 0.05 // 緩存寫(xiě)入成本
},
"contextWindow": 128000, // 上下文窗口大小
"maxTokens": 4096 // 最大輸出token數(shù)
}
]
}
}
}
}支持的 API 類型
- openai-completions - OpenAI 兼容的補(bǔ)全API
- anthropic-messages - Anthropic Messages API
- openrouter - OpenRouter API
配置示例
{
"models": {
"mode": "merge",
"providers": {
"deepseek": {
"baseUrl": "https://api.deepseek.com",
"api": "openai-completions",
"models": [
{
"id": "deepseek-reasoner",
"name": "DeepSeek Reasoner",
"reasoning": true,
"input": ["text"],
"cost": {
"input": 0.14,
"output": 2.19
},
"contextWindow": 64000,
"maxTokens": 8192
}
]
},
"openai": {
"baseUrl": "https://api.openai.com/v1",
"api": "openai-completions",
"models": [
{
"id": "gpt-4o",
"name": "GPT-4o",
"input": ["text", "image"],
"contextWindow": 128000,
"maxTokens": 4096
}
]
}
}
}
}agents - 代理配置
配置代理(agent)的默認(rèn)設(shè)置和實(shí)例列表。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| defaults | object | {} | 默認(rèn)代理配置 |
| list | array | [] | 代理實(shí)例列表 |
默認(rèn)代理配置
{
"agents": {
"defaults": {
"model": {
"primary": "openai/gpt-4o", // 主要模型
"fallbacks": [ // 回退模型列表
"anthropic/claude-3-5-sonnet",
"deepseek/deepseek-chat"
]
},
"models": { // 模型別名和參數(shù)
"openai/gpt-4o": {
"alias": "GPT-4o",
"params": {
"temperature": 0.7,
"max_tokens": 4096
}
}
},
"workspace": "~/.openclaw/workspace", // 工作區(qū)路徑
"compaction": { // 壓縮配置
"mode": "safeguard" // 模式:safeguard/aggressive/off
},
"maxConcurrent": 4, // 最大并發(fā)數(shù)
"subagents": { // 子代理配置
"maxConcurrent": 8, // 子代理最大并發(fā)數(shù)
"allowAgents": [] // 允許的子代理列表
}
}
}
}代理實(shí)例配置
{
"agents": {
"list": [
{
"id": "main", // 代理ID
"name": "主代理", // 顯示名稱(可選)
"model": "deepseek/deepseek-chat", // 模型覆蓋
"workspace": "/path/to/workspace", // 工作區(qū)覆蓋
"subagents": { // 子代理配置
"allowAgents": [ // 允許的子代理ID
"prompt-engineer",
"media-generator"
]
}
}
]
}
}配置示例
{
"agents": {
"defaults": {
"model": {
"primary": "minimax/MiniMax-M2.5",
"fallbacks": [
"minimax-cn/MiniMax-M2.5",
"deepseek/deepseek-reasoner"
]
},
"models": {
"minimax/MiniMax-M2.5": {
"alias": "Minimax"
}
},
"workspace": "/Users/blueboat-mac/.openclaw/workspace",
"compaction": {
"mode": "safeguard"
},
"maxConcurrent": 4,
"subagents": {
"maxConcurrent": 8
}
},
"list": [
{
"id": "main",
"model": "deepseek/deepseek-reasoner"
},
{
"id": "support",
"name": "支持代理",
"workspace": "/path/to/support-workspace"
}
]
}
}channels - 頻道配置
配置聊天頻道(如 Telegram、飛書(shū)、Discord 等)。
通用頻道參數(shù)
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| enabled | boolean | true | 是否啟用頻道 |
| dmPolicy | string | “pairing” | 私聊策略 (pairing/allowlist/open/disabled) |
| groupPolicy | string | “open” | 群聊策略 (allowlist/open/disabled) |
| streaming | string/boolean | “partial” | 流式輸出 (true/false/“partial”) |
| allowFrom | array | [] | 允許的用戶/群組列表 |
| textChunkLimit | number | 2000 | 文本塊大小限制 |
| mediaMaxMb | number | 30 | 媒體文件大小限制 (MB) |
Telegram 配置
{
"channels": {
"telegram": {
"enabled": true,
"dmPolicy": "pairing",
"botToken": "YOUR_BOT_TOKEN", // Telegram Bot Token
"groupPolicy": "allowlist",
"streaming": "partial",
"allowFrom": ["@username", "chat_id"]
}
}
}飛書(shū) (Feishu) 配置
{
"channels": {
"feishu": {
"enabled": true,
"appId": "cli_xxx", // 飛書(shū)應(yīng)用ID
"appSecret": "xxx", // 飛書(shū)應(yīng)用Secret
"domain": "feishu", // 域名 (feishu/lark)
"dmPolicy": "allow",
"accounts": {
"default": {
"appId": "cli_xxx"
}
}
}
}
}Discord 配置
{
"channels": {
"discord": {
"enabled": true,
"botToken": "YOUR_DISCORD_TOKEN",
"clientId": "YOUR_CLIENT_ID",
"dmPolicy": "pairing",
"groupPolicy": "open"
}
}
}WhatsApp 配置
{
"channels": {
"whatsapp": {
"enabled": true,
"sessionPath": "~/.openclaw/whatsapp-session",
"dmPolicy": "pairing",
"qrTimeout": 300000 // QR碼超時(shí)時(shí)間(ms)
}
}
}配置示例
{
"channels": {
"telegram": {
"enabled": true,
"dmPolicy": "pairing",
"groupPolicy": "allowlist",
"streaming": "partial"
},
"feishu": {
"enabled": true,
"appId": "cli_xxx",
"domain": "feishu",
"dmPolicy": "allow",
"allowFrom": ["*"]
}
}
}gateway - 網(wǎng)關(guān)配置
配置 OpenClaw 網(wǎng)關(guān)服務(wù)。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| port | number | 18789 | WebSocket 端口 |
| mode | string | “local” | 網(wǎng)關(guān)模式 (local/remote) |
| bind | string | “loopback” | 綁定模式 (loopback/lan/tailnet/auto) |
| auth | object | {} | 網(wǎng)關(guān)認(rèn)證配置 |
| controlUi | object | {} | 控制UI配置 |
| tailscale | object | {} | Tailscale 集成配置 |
認(rèn)證配置
{
"gateway": {
"auth": {
"mode": "token", // 認(rèn)證模式 (token/password/none)
"token": "your_token_here", // 認(rèn)證令牌
"password": "your_password" // 認(rèn)證密碼
}
}
}控制UI配置
{
"gateway": {
"controlUi": {
"enabled": true, // 啟用控制UI
"dangerouslyAllowHostHeaderOriginFallback": false, // 允許Host頭回退
"allowInsecureAuth": false // 允許不安全認(rèn)證
}
}
}Tailscale 配置
{
"gateway": {
"tailscale": {
"mode": "off", // Tailscale模式 (off/serve/funnel)
"resetOnExit": false // 退出時(shí)重置配置
}
}
}配置示例
{
"gateway": {
"port": 18789,
"mode": "local",
"bind": "lan",
"controlUi": {
"enabled": true,
"allowInsecureAuth": true
},
"auth": {
"mode": "token"
},
"tailscale": {
"mode": "off",
"resetOnExit": false
}
}
}memory - 內(nèi)存配置
配置記憶(memory)系統(tǒng)。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| backend | string | “qmd” | 內(nèi)存后端 (qmd/file) |
| citations | string | “auto” | 引用模式 (auto/always/never) |
| qmd | object | {} | QMD 后端配置 |
QMD 后端配置
{
"memory": {
"qmd": {
"includeDefaultMemory": true, // 包含默認(rèn)內(nèi)存
"update": { // 更新配置
"interval": "5m", // 更新間隔
"debounceMs": 15000, // 防抖時(shí)間(ms)
"onBoot": true // 啟動(dòng)時(shí)更新
},
"limits": { // 限制配置
"maxResults": 10, // 最大結(jié)果數(shù)
"maxSnippetChars": 2000, // 最大片段字符數(shù)
"timeoutMs": 10000 // 超時(shí)時(shí)間(ms)
},
"scope": { // 作用域配置
"default": "deny", // 默認(rèn)動(dòng)作
"rules": [ // 規(guī)則列表
{
"action": "allow", // 動(dòng)作 (allow/deny)
"match": { // 匹配條件
"chatType": "direct" // 聊天類型
}
}
]
}
}
}
}配置示例
{
"memory": {
"backend": "qmd",
"citations": "auto",
"qmd": {
"includeDefaultMemory": true,
"update": {
"interval": "5m",
"debounceMs": 15000,
"onBoot": true
},
"limits": {
"maxResults": 10,
"maxSnippetChars": 2000,
"timeoutMs": 10000
},
"scope": {
"default": "deny",
"rules": [
{
"action": "allow",
"match": {
"chatType": "direct"
}
}
]
}
}
}
}plugins - 插件配置
管理 OpenClaw 插件。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| entries | object | {} | 插件條目配置 |
| installs | object | {} | 插件安裝記錄 |
插件配置示例
{
"plugins": {
"entries": {
"telegram": {
"enabled": true // 啟用Telegram插件
},
"feishu": {
"enabled": true // 啟用飛書(shū)插件
}
},
"installs": {
"@openclaw/feishu": {
"version": "1.0.0", // 插件版本
"path": "/path/to/plugin" // 插件路徑
}
}
}
}commands - 命令配置
配置命令行行為。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| native | string | “auto” | 本地命令處理 (auto/enabled/disabled) |
| nativeSkills | string | “auto” | 本地技能處理 |
| restart | boolean | true | 允許重啟命令 |
| ownerDisplay | string | “raw” | 所有者顯示方式 |
配置示例
{
"commands": {
"native": "auto",
"nativeSkills": "auto",
"restart": true,
"ownerDisplay": "raw"
}
}messages - 消息配置
配置消息處理行為。
參數(shù)說(shuō)明
| 參數(shù) | 類型 | 默認(rèn)值 | 說(shuō)明 |
|---|---|---|---|
| ackReactionScope | string | “group-mentions” | 確認(rèn)反應(yīng)范圍 |
配置示例
{
"messages": {
"ackReactionScope": "group-mentions"
}
}
常用配置片段示例
示例1:基礎(chǔ)模型配置
// 基礎(chǔ)模型配置
{
env: {
"OPENAI_API_KEY": "sk-xxx",
"ANTHROPIC_API_KEY": "sk-ant-xxx"
},
models: {
providers: {
openai: {
apiKey: "${OPENAI_API_KEY}",
api: "openai-completions",
models: [
{
id: "gpt-4o",
name: "GPT-4o",
input: ["text", "image"],
contextWindow: 128000
}
]
}
}
},
agents: {
defaults: {
model: {
primary: "openai/gpt-4o",
fallbacks: ["anthropic/claude-3-5-sonnet"]
}
}
}
}示例2:多代理工作區(qū)配置
// 多代理配置
{
agents: {
defaults: {
workspace: "~/.openclaw/workspace",
maxConcurrent: 4
},
list: [
{
id: "main",
name: "主代理",
model: "deepseek/deepseek-chat"
},
{
id: "research",
name: "研究代理",
workspace: "~/.openclaw/workspace-research",
model: "openai/gpt-4o"
},
{
id: "coding",
name: "編程代理",
workspace: "~/.openclaw/workspace-coding",
model: "deepseek/deepseek-coder"
}
]
}
}示例3:頻道安全配置
// 安全的頻道配置
{
channels: {
telegram: {
enabled: true,
dmPolicy: "allowlist",
groupPolicy: "allowlist",
allowFrom: [
"user_id_1", // 允許的用戶ID
"group_id_1" // 允許的群組ID
]
},
feishu: {
enabled: true,
dmPolicy: "pairing", // 需要配對(duì)
groupPolicy: "open",
allowFrom: ["*"] // 允許所有(僅當(dāng)policy為open時(shí))
}
},
gateway: {
auth: {
mode: "token", // 要求令牌認(rèn)證
token: "secure_token_here"
}
}
}示例4:開(kāi)發(fā)環(huán)境配置
// 開(kāi)發(fā)環(huán)境配置
{
gateway: {
port: 19001, // 開(kāi)發(fā)端口
bind: "loopback", // 僅本地訪問(wèn)
controlUi: {
enabled: true,
allowInsecureAuth: true // 開(kāi)發(fā)時(shí)允許不安全認(rèn)證
}
},
agents: {
defaults: {
model: {
primary: "deepseek/deepseek-chat",
fallbacks: []
}
}
},
memory: {
backend: "file", // 使用文件后端(簡(jiǎn)化)
citations: "never" // 開(kāi)發(fā)時(shí)不顯示引用
}
}示例5:生產(chǎn)環(huán)境配置
// 生產(chǎn)環(huán)境配置
{
gateway: {
port: 18789,
bind: "lan", // 局域網(wǎng)訪問(wèn)
auth: {
mode: "password", // 密碼認(rèn)證
password: "strong_password_here"
},
controlUi: {
enabled: true,
dangerouslyAllowHostHeaderOriginFallback: false,
allowInsecureAuth: false
}
},
agents: {
defaults: {
model: {
primary: "openai/gpt-4o",
fallbacks: [
"anthropic/claude-3-5-sonnet",
"deepseek/deepseek-chat"
]
},
maxConcurrent: 8,
subagents: {
maxConcurrent: 16
}
}
},
memory: {
backend: "qmd",
qmd: {
update: {
interval: "1h", // 生產(chǎn)環(huán)境更新間隔較長(zhǎng)
debounceMs: 30000
}
}
}
}配置最佳實(shí)踐
1. 安全配置
- 使用環(huán)境變量:敏感信息(API密鑰、令牌)應(yīng)通過(guò)環(huán)境變量注入
- 限制訪問(wèn):根據(jù)需求設(shè)置
dmPolicy和groupPolicy - 網(wǎng)關(guān)認(rèn)證:生產(chǎn)環(huán)境務(wù)必啟用網(wǎng)關(guān)認(rèn)證(token 或 password)
- 網(wǎng)絡(luò)綁定:根據(jù)部署環(huán)境選擇合適的
bind模式
2. 性能優(yōu)化
- 并發(fā)控制:根據(jù)服務(wù)器資源調(diào)整
maxConcurrent - 模型回退:配置合理的回退模型鏈確保服務(wù)可用性
- 內(nèi)存管理:根據(jù)使用場(chǎng)景調(diào)整內(nèi)存更新間隔
3. 維護(hù)建議
- 版本控制:將配置文件納入版本控制系統(tǒng)
- 配置驗(yàn)證:修改后運(yùn)行
openclaw config validate - 備份配置:定期備份
openclaw.json文件 - 漸進(jìn)變更:一次只修改少量配置,驗(yàn)證后再繼續(xù)
4. 環(huán)境區(qū)分
- 開(kāi)發(fā)環(huán)境:使用簡(jiǎn)化配置,禁用不必要的安全檢查
- 測(cè)試環(huán)境:模擬生產(chǎn)配置,但使用測(cè)試密鑰
- 生產(chǎn)環(huán)境:?jiǎn)⒂盟邪踩匦?,使用正式密鑰
配置驗(yàn)證與調(diào)試
驗(yàn)證配置
# 驗(yàn)證配置文件語(yǔ)法 openclaw config validate # 查看完整配置 openclaw config get # 查看特定配置項(xiàng) openclaw config get gateway.port openclaw config get agents.defaults.model.primary
調(diào)試配置問(wèn)題
# 查看配置相關(guān)日志 openclaw logs --follow --grep "config\|error" # 檢查網(wǎng)關(guān)狀態(tài) openclaw gateway status # 運(yùn)行診斷 openclaw doctor --repair
配置重載
# 重啟網(wǎng)關(guān)使配置生效 openclaw gateway restart # 或停止后重新啟動(dòng) openclaw gateway stop openclaw gateway start
相關(guān)資源
- 官方文檔:https://docs.openclaw.ai/configuration
- 配置示例:https://github.com/openclaw/openclaw/tree/main/examples/configs
- 問(wèn)題反饋:https://github.com/openclaw/openclaw/issues
文檔說(shuō)明:
- 本文檔基于 OpenClaw 2026.3.2 版本整理
- 配置參數(shù)可能隨版本更新而變化,請(qǐng)參考最新官方文檔
- 示例配置中的敏感信息已用占位符替換,請(qǐng)?zhí)鎿Q為實(shí)際值
- JSON5 語(yǔ)法支持注釋和尾隨逗號(hào),但標(biāo)準(zhǔn) JSON 也兼容
到此這篇關(guān)于OpenClaw主配置文件參數(shù)使用大全的文章就介紹到這了,更多相關(guān)OpenClaw主配置文件參數(shù)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!
相關(guān)文章

基于VMware+Ubuntu 24.04環(huán)境完成OpenClaw安裝、配置與使用
本文將基于 VMware + Ubuntu 24.04 環(huán)境,從零開(kāi)始完成 OpenClaw 的安裝、配置,并實(shí)現(xiàn)與飛書(shū)機(jī)器人的打通,本文通過(guò)圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工2026-03-09
OpenClaw使用DeepSeek官方API_KEY配置超詳細(xì)教程
近期 OpenClaw突然火了,但是網(wǎng)上居然沒(méi)有在openclaw配置deepseek官方apikey的相關(guān)教程,所以下面這篇文章主要介紹了OpenClaw使用DeepSeek官方API_KEY配置的相關(guān)資料,文中將2026-03-09
本文給大家分享本地部署OpenClaw安裝配置使用教程,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友參考下吧2026-03-09
Mac mini上部署配置OpenClaw并接入國(guó)產(chǎn)大模型與飛書(shū)
本文詳細(xì)介紹了在Macmini上部署OpenClaw的全過(guò)程,包括配置安裝及國(guó)產(chǎn)大模型接入以及飛書(shū)機(jī)器人集成,搭建一個(gè)的AI助手,滿足日常自動(dòng)化需求,需要的朋友們下面隨著小編來(lái)一起2026-03-09
Ubuntu系統(tǒng)OpenClaw版本降級(jí)的實(shí)例操作
本文主要介紹了如何將OpenClaw從2026.3.2版本降級(jí)到2026.2.3版本,降級(jí)的核心動(dòng)因是新版本存在Bug、兼容性差或功能/性能不符合需求,文章詳細(xì)描述了命令行版本和桌面端版本的2026-03-07
OpenClaw使用Ollama本地模型的實(shí)現(xiàn)(支持工具調(diào)用))
Ollama 是一個(gè)本地 LLM 運(yùn)行時(shí),可以輕松在你的機(jī)器上運(yùn)行開(kāi)源模型,OpenClaw 通過(guò) Ollama 的 OpenAI 兼容 API 進(jìn)行集成,下面就來(lái)詳細(xì)的介紹一下,感興趣的可以了解一下2026-03-06
OpenClaw 安裝與配置實(shí)戰(zhàn)指南(含常用命令 + 故障排查)
OpenClaw安裝與配置實(shí)戰(zhàn),涵蓋了從安裝到故障排查的詳細(xì)流程,重點(diǎn)包括通道配置、模型接入和網(wǎng)關(guān)排障,提供了常用命令速查和故障排查步驟,幫助用戶順利上手和解決常見(jiàn)問(wèn)題,本2026-03-06
OpenClaw 本地安裝與配置十分鐘完成(附常用命令速查)
OpenClaw 是一個(gè)開(kāi)源的個(gè)人 AI 助手,支持系統(tǒng)操作、文件讀寫(xiě)、代碼執(zhí)行等,它可以通過(guò)配置文件進(jìn)行各種設(shè)置,這篇文章給大家介紹OpenClaw 快速入門(mén):10 分鐘完成本地安裝與配2026-03-06
OpenClaw 支持飛書(shū)通過(guò) Card Kit 交互式卡片 實(shí)現(xiàn)流式回復(fù),本文就來(lái)介紹一下相關(guān)配置及其實(shí)現(xiàn)步驟,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考2026-03-05
在OpenClaw中配置和使用Coding Plan的詳細(xì)步驟
OpenClaw (原名Moltbot/Clawdbot )是一個(gè)開(kāi)源的個(gè)人 AI 助手平臺(tái),支持通過(guò)多種消息渠道與 AI 交互,通過(guò)配置可接入阿里云百煉的Coding Plan模型,本文給大家詳細(xì)介紹了如2026-03-04











