https://github.com/dmachard/game-6000-dice
A experiment to see how "super intelligent" AIs perform at a simple dice game...
https://github.com/dmachard/game-6000-dice
anthropic-claude game gpt openai-api
Last synced: 2 months ago
JSON representation
A experiment to see how "super intelligent" AIs perform at a simple dice game...
- Host: GitHub
- URL: https://github.com/dmachard/game-6000-dice
- Owner: dmachard
- License: mit
- Created: 2025-05-19T17:43:26.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-07-28T20:56:15.000Z (3 months ago)
- Last Synced: 2025-07-30T01:06:31.551Z (3 months ago)
- Topics: anthropic-claude, game, gpt, openai-api
- Language: Rust
- Homepage:
- Size: 491 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🎲 6000 Dice Game
A fun experiment to see how "super intelligent" AIs perform at a simple dice game.
## 🎯 The Concept
A dice game where humans face off against expensive AIs in an epic battle to reach 6000 points. Watch them **over-analyze every single roll...**,
## 🧠Rules Summary
- **Straight (1–6):** 2000 points
- **Three pairs:** 1500 points
- **Six of a kind:** value × 1000
- **Three 1s:** 1000 points
- **Three of a kind (2–6):** value × 100
- **Each 1:** 100 points
- **Each 5:** 50 points
- **No points:** Lose your turn's accumulated score## 📸 Screenshots
Below are some screenshots of the game in action:


## 🔧 Setup IA (optional)
You may provide at least one valid API key to enable AI/LLM gameplay.
To use OpenAI's GPT-4, set your API key:
```bash
export OPENAI_API_KEY=your_key_here
```To use Anthropic Claude 4, set your API key:
```bash
export ANTHROPIC_API_KEY=your_key_here
```To use Ollama, update the `config.yaml` file to set the model to use
## 🚀 Start game
```bash
cargo run play
```## 🧠AI Personalities
To make things even more entertaining, each AI can be assigned a unique personality:
```yaml
ai_personality: "vicious" # Options: "default", "paranoid", "academic", "vicious"