v2.0.4

a16z-infra/JungleGymv2.0.4Jun 20, 2026by lipku

AI Summary

This release introduces support for YAML configuration files, enabling users to externalize their settings. It establishes a clear priority hierarchy for configuration sources, where command-line arguments override YAML files and defaults.

Key Highlights

  • Added support for YAML configuration files
  • Implemented configuration priority: CLI args > YAML > argparse defaults
  • Allows specifying a custom config file using the -c flag
  • Includes a config.yaml.example template for setup

New Features

  • YAML configuration file support
  • Configuration file override via CLI
  • Config priority system

Full Release Notes

Support yaml config  
```shell
#  Usage:
cp config.yaml.example config.yaml   # create your config
python app.py                        # start with config.yaml
python app.py -c config_prod.yaml    # use a different config file
python app.py -c ''                  # skip yaml, CLI only
#  Priority:  CLI args  >  YAML  >  argparse defaults
```