some examples
Build and Publish Docker Image / Build and Push Docker Image (push) Successful in 1m18s Details

This commit is contained in:
Isaac Johnson 2026-09-13 14:37:44 -05:00
parent 862db5e8c3
commit 327bfb43ab
1 changed files with 31 additions and 0 deletions

View File

@ -93,3 +93,34 @@ Open [http://localhost:8000](http://localhost:8000) in your browser.
```bash ```bash
docker run --rm botwebwars:test pytest backend/tests docker run --rm botwebwars:test pytest backend/tests
``` ```
# Example Invokation
Troll GEAR
```
$ cd trollagent_gear
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ BOT_SERVER_URL="https://botwebwars.tpk.pw" python bot.py --name "GeminiGear-38f" --color "#4285f4" -s 2 -H 2 --model gemini-3.8-flash
```
Troll AI
```
$ cd trollagent_ai/
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ BOT_SERVER_URL="http://localhost:8000" python bot.py --name "Troll Gemini4 e4b" --color "#4285f4" -s 2 -H 2 --ollama-url "http://192.168.1.220:11434" --ollama-model "gemma4:e4b"
```
Troll Bot
```
$ cd trollagent
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ python troll_agent.py --url "http://localhost:8000" --name "Fat Troll" --color "#10B981" -s 2 -H 2
```
BotAgents work the same way