OpenClaw
OpenClaw 是一款开源的个人 AI 助手平台,支持自动化任务和本地化操作
官方网站
GitHub 仓库
系统要求
macOS 10.15+ 或主流 Linux 发行版(Ubuntu 18.04+、Debian 10+、CentOS 7+ 等)
安装
Shell:
curl -fsSL https://openclaw.ai/install.sh | bash
快捷配置
若您已经自行安装了 OpenClaw,仅想将本站的 API 接入,请打开 ~/.openclaw/openclaw.json 文件,将其中的 models 部分替换成下面的内容,请一定注意将 apiKey 替换为你自己的 key:
{
"models": {
"providers": {
"aicodemirror-gpt": {
"baseUrl": "https://www.fluapi.com/v1",
"apiKey": "替换为你自己的 key",
"api": "openai-responses",
"models": [
{
"id": "gpt-5.4",
"name": "gpt-5.4",
"reasoning": true,
"input": ["text", "image"]
}
]
}
}
}
}
官方网站
GitHub 仓库
系统要求
Windows 10/11,PowerShell 5.1+
安装
PowerShell:
iwr -useb https://openclaw.ai/install.ps1 | iex
快捷配置
若您已经自行安装了 OpenClaw,又想将本站的 API 接入,请打开 C:\Users\你的用户名\.openclaw\openclaw.json 文件,将其中的 models 部分替换成下面的内容,并一定注意将 apiKey 替换为你自己的 key。
{
"models": {
"providers": {
"aicodemirror-gpt": {
"baseUrl": "https://www.fluapi.com/v1",
"apiKey": "替换为你自己的 key",
"api": "openai-responses",
"models": [
{
"id": "gpt-5.4",
"name": "gpt-5.4",
"reasoning": true,
"input": ["text", "image"]
}
]
}
}
}
}