This is a nine-players werewolves game example built using AgentScope, showcasing multi-agent interactions, role-based gameplay, and structured output handling. Specifically, this game is consisted of
- three villagers 👨🌾,
- three werewolves 🐺,
- one seer 🔮,
- one witch 🧙♀️ and
- one hunter 🏹.
- 2025-10: We update the example to support more features:
- Allow the dead players to leave messages.
- Support Chinese now.
- Support continuous gaming by loading and saving session states, so the same agents can play multiple games and continue learning and optimizing their strategies.
Run the following command to start the game, ensuring you have set up your DashScope API key as an environment variable.
python main.pyNote:
- You can adjust the language, model and other parameters in
main.py.- Different models may yield different game experiences.
Running the example with AgentScope Studio provides a more interactive experience.
- Demo Video in Chinese (click to play):
- Demo Video in English (click to play):
The game is built with the ReActAgent in AgentScope, utilizing its ability to generate structured outputs to
control the game flow and interactions.
We also use the MsgHub and pipelines in AgentScope to manage the complex interactions like discussion and voting.
It's very interesting to see how agents play the werewolf game with different roles and objectives.
The game is played in English by default. Just uncomment the following line in game.py to switch to Chinese.
# from prompt import ChinesePrompts as PromptsYou can replace one of the agents with a UserAgent to play with AI agents.
Just modify the model parameter in main.py to try different models. Note you need to change the formatter at the same time to match the model's output format.

