Preparation for installation
安装TankWork需要一些准备工作:首先推荐安装Anaconda进行依赖管理,并确保能访问终端/命令提示符环境。这为后续步骤提供了良好的基础。
Detailed installation steps
- clone warehouse::
首先使用git命令克隆项目仓库:
git clone https://github.com/AgentTankOS/tankwork.git
cd tankwork - Installation of dependencies::
更新pip并安装必要的依赖包:
pip install –upgrade pip setuptools wheel
pip install -r requirements.txt - configuration file::
在项目根目录创建.env文件:
cp .env.example .env
然后编辑该文件添加必要的API密钥和配置参数
关键配置项
在.env配置文件中需要设置多个API密钥和参数:
- GEMINI_API_KEY
- OPENAI_API_KEY
- ELEVENLABS_API_KEY
- ANTHROPIC_API_KEY
- 各种模型参数和日志级别设置
这些配置决定了TankWork的功能实现和使用体验。
This answer comes from the articleTankWork: an intelligent body that operates computers via voice and text and provides real-time voice feedbackThe