From 9f3fa0e7c3a48822a7acd54be6c23665bf28bca4 Mon Sep 17 00:00:00 2001 From: Dirk Brand Date: Wed, 12 Feb 2025 16:13:14 +0200 Subject: [PATCH] update --- cookbook/examples/apps/tic_tac_toe/README.md | 26 +++++--------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/cookbook/examples/apps/tic_tac_toe/README.md b/cookbook/examples/apps/tic_tac_toe/README.md index 2ddbb3c7e..50b65beea 100644 --- a/cookbook/examples/apps/tic_tac_toe/README.md +++ b/cookbook/examples/apps/tic_tac_toe/README.md @@ -52,7 +52,7 @@ streamlit run cookbook/examples/apps/tic_tac_toe/app.py ## How It Works -The game consists of three main components: +The game consists of three agents: 1. **Master Agent (Referee)** - Coordinates the game @@ -60,26 +60,20 @@ The game consists of three main components: - Maintains game state - Determines game outcome -2. **Player Agents** +2. **Two Player Agents** - Make strategic moves - Analyze board state - Follow game rules - Respond to opponent moves -3. **Web Interface** - - Displays game board - - Shows move history - - Allows model selection - - Provides game controls - ## Available Models The game supports various AI models: -- GPT-4 (OpenAI) -- Claude (Anthropic) +- GPT-4o (OpenAI) +- GPT-o3-mini (OpenAI) - Gemini (Google) -- GPT-3.5 Mini -- Llama 3 +- Llama 3 (Groq) +- Claude (Anthropic) ## Game Features @@ -104,14 +98,6 @@ The game supports various AI models: - Strategy tracking - Game statistics -## Contributing - -Feel free to contribute to this example by: -- Adding new AI models -- Improving the UI/UX -- Enhancing game strategies -- Adding new features - ## Support Join our [Discord community](https://agno.link/discord) for help and discussions.