You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.1 KiB
22 lines
1.1 KiB
# mulit_agent
|
|
|
|
独立的 Tkinter 子 Agent 程序。它不依赖本仓库中的 `multi-claw-dashboard`、`multi-claw-agent`、Node.js、FastAPI 或 PySide6。
|
|
|
|
## 本地启动
|
|
|
|
```powershell
|
|
py -3.11 -m venv .venv
|
|
.\.venv\Scripts\Activate.ps1
|
|
python -m pip install -e ".[dev]"
|
|
python app.py
|
|
```
|
|
|
|
首次运行显示总控地址和配对码输入框。输入总控界面显示的 WSS 地址和一次性配对码后,子 Agent 会校验总控证书指纹、完成 TLS 配对、把独立凭据保存到 Windows 凭据管理器,并仅在成功后转入托盘。
|
|
|
|
LLM API 地址、模型名称、API Key、Skills、MCP 工具与定时任务均由总控统一配置和下发;配对窗口不会要求逐台填写这些内容。
|
|
|
|
应用数据默认存放于当前 Windows 用户的本地应用数据目录下的 `MultiClawAgent`,可通过 `MULTI_AGENT_DATA_DIR` 覆盖。
|
|
|
|
## 编译 Windows 应用
|
|
|
|
双击 `build.bat`,或在 PowerShell 执行 `./build.ps1`。编译结果为 `dist/MultiClawAgent/MultiClawAgent.exe`;它拥有自己的运行时,不依赖现有 MultiClaw 环境。
|
|
|