安装部署
- Node.js >= 20.6.0
- 或 Docker / Docker Compose
方式一:Docker 部署(推荐)
Section titled “方式一:Docker 部署(推荐)”# 克隆项目git clone https://github.com/hhyqhh/inno-agent.gitcd inno-agent
# 复制配置文件cp .env.example .envcp config.example.json config.json
# 启动docker compose up -d启动后访问 http://localhost:3000 即可使用 Web 端。
方式二:本地运行
Section titled “方式二:本地运行”# 安装依赖npm install
# 构建npm run build
# 启动服务端npm run server方式三:桌面客户端
Section titled “方式三:桌面客户端”前往 Releases 下载对应平台的安装包:
- macOS:
.dmg(Apple Silicon) - Windows:
.msi/.exe
编辑 config.json,填入你的模型 API Key:
{ "models": { "openai": { "apiKey": "sk-xxx" } }}详细配置参见 系统依赖文档。
配置完成后,前往 第一个工作区 开始使用。