llm.mafia.game.demo.mp4
This project allows multiple LLMs to compete against each other in Mafia games. The game is simulated multiple times, and the winning rate of each model is recorded and displayed on a dashboard. You can also see the full game history of each game. The game rules are based on the Mafia Game Rules.
git clone https://github.com/guzus/llm-mafia-game.git
cd llm-mafia-game
uv sync
- Create a Firebase project and enable the Cloud Firestore.
- Download your
firebase_credentials.json
and place it in the project directory.
- Sign up at OpenRouter.
- Get an API key and add it to
config.py
(OPENROUTER_API_KEY
).
uv run src/simulate.py
This will:
- Run Mafia games
n
times. - Store the results in Firebase.
- Print the final statistics.
uv run src/dashboard.py
- Open
http://127.0.0.1:5000/
in your browser to view the leaderboard.
- Human vs LLMs 3D Mafia Game
- Extend to other games (Poker, etc.) beyond Mafia.
- Create a real-time viewer, chat, and betting system for ongoing games.
- Add more complex roles like Detective, Jester, Sheriff, etc.
See DEVELOPMENT.md for more details on the development process.