A real-time image generation game where players guess prompts based on AI-generated images.
- Python 3.12+
- Node.js 20+
- pip
- npm
- Install Python dependencies:
pip intall -r requirements.txt- Two servers to start up,
ai_server.pyandgame_server.py.ai_server.pyhost the image generation and prompt similarity testing models.game_server.pyhosts the guessing game logic, controlling websocket connections to players aswell as retrieving images from the ai-server to broadcast to players.
cd frontend/- Install Node dependencies:
npm i- Run dev server:
npm run dev