docs: narrow README updates to bot_db module layout

- revert the broader virtualenv command changes from the previous README update

- keep the README changes focused on the core.bot_db and bot_db.py module layout
This commit is contained in:
Flacier
2026-03-09 18:11:56 +08:00
parent 54621f2e88
commit a8fb79de21
+3 -3
View File
@@ -116,8 +116,8 @@ OpenClaw-PwnKit/
```bash
git clone https://github.com/imbue-bit/OpenClaw-PwnKit.git
cd OpenClaw-PwnKit
python3 -m venv .venv
./.venv/bin/python -m pip install -r requirements.txt
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
```
**Core dependencies:** PyTorch, Transformers, FAISS (`faiss-cpu`), CMA, scikit-learn, FastAPI, OpenAI SDK, Rich, tenacity.
@@ -150,7 +150,7 @@ optimization:
```bash
export OPENAI_API_KEY="sk-..."
./.venv/bin/python pwnkit_cli.py
python pwnkit_cli.py
```
```