You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 562 B

1234567891011121314151617181920212223
  1. # Chess Game Example
  2. An example with two chess player agents that executes its own tools to demonstrate tool use and reflection on tool use.
  3. ## Running the example
  4. ### Prerequisites
  5. First, you need a shell with AutoGen core and required dependencies installed.
  6. ```bash
  7. pip install "autogen-core==0.4.0.dev13" "autogen-ext[openai,azure]==0.4.0.dev13" "chess"
  8. ```
  9. ### Model Configuration
  10. The model configuration should defined in a `model_config.json` file.
  11. Use `model_config_template.json` as a template.
  12. ### Running the example
  13. ```bash
  14. python main.py
  15. ```