19 lines
423 B
Markdown
19 lines
423 B
Markdown
|
|
# Installation Guide for `trollagent_gear`
|
||
|
|
|
||
|
|
## 1. Prerequisites
|
||
|
|
- Python 3.10+
|
||
|
|
- Google Cloud Project with Vertex AI enabled, or a Google AI Studio Gemini API key.
|
||
|
|
|
||
|
|
## 2. Virtual Environment & Dependencies
|
||
|
|
```bash
|
||
|
|
cd trollagent_gear
|
||
|
|
python3 -m venv venv
|
||
|
|
source venv/bin/activate
|
||
|
|
pip install -r requirements.txt
|
||
|
|
```
|
||
|
|
|
||
|
|
## 3. Run the Bot
|
||
|
|
```bash
|
||
|
|
python3 bot.py --name GeminiBrute --color "#047857" --strength 4 --health 10
|
||
|
|
```
|