From 327bfb43ab60e6866ffeeb7d2e8ccf377b074b94 Mon Sep 17 00:00:00 2001 From: Isaac Johnson Date: Sun, 13 Sep 2026 14:37:44 -0500 Subject: [PATCH] some examples --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/README.md b/README.md index 3696a7f..e0b4f18 100644 --- a/README.md +++ b/README.md @@ -93,3 +93,34 @@ Open [http://localhost:8000](http://localhost:8000) in your browser. ```bash 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 \ No newline at end of file