Install
openclaw skills install openclaw-free-modelsOpenClaw 免费模型配置 - 教你用免费的 AI 模型。适合:预算有限用户、学生、测试者。
openclaw skills install openclaw-free-models教你用免费的 AI 模型,降低成本。
| 模型 | 免费额度 | 特点 |
|---|---|---|
| DeepSeek V3 | 每天免费调用 | 国产最强,日常首选 |
| GLM-4 | 每月免费额度 | 智谱清言,API 稳定 |
| Claude Haiku | 注册送 $5 | 编程辅助 |
| GPT-4o-mini | 注册送 $5 | 多模态 |
# 注册:https://platform.deepseek.com/
# 获取 API Key
openclaw config set model deepseek-chat
openclaw config set api_key sk-xxx
免费额度:每天 10 次调用(足够日常使用)
# 注册:https://open.bigmodel.cn/
# 获取 API Key
openclaw config set model glm-4
openclaw config set api_key xxx.xxx
免费额度:每月 100 万 tokens
# 注册:https://console.anthropic.com/
# 获取 API Key
openclaw config set model claude-3-haiku
openclaw config set api_key sk-ant-xxx
免费额度:注册送 $5
# 注册:https://platform.openai.com/
# 获取 API Key
openclaw config set model gpt-4o-mini
openclaw config set api_key sk-xxx
免费额度:注册送 $5
# ~/.openclaw/config.yaml
models:
simple: "gpt-4o-mini" # 简单问答(免费额度)
normal: "deepseek-chat" # 日常对话(每天免费)
complex: "claude-haiku" # 编程任务($5 额度)
# 查看当前模型
openclaw config get model
# 临时切换
openclaw ask "问题" --model deepseek-chat
场景:每天 100 条消息
| 模型 | 月成本 |
|---|---|
| DeepSeek(免费额度) | ¥0 |
| GPT-4o | ¥90 |
| Claude Sonnet | ¥180 |
DeepSeek 免费额度足够日常使用!
A: 第二天自动重置,或切换到 GLM-4(每月 100 万 tokens)
# DeepSeek
curl https://api.deepseek.com/user/balance -H "Authorization: Bearer $API_KEY"
# GLM
curl https://open.bigmodel.cn/api/paas/v4/balance -H "Authorization: Bearer $API_KEY"
日常对话:完全够用 复杂任务:用 Claude Haiku($5 额度能用很久)
创建:2026-03-14