v2.0.4

MinishLab/model2vecv2.0.4Jun 20, 2026by lipku

AI Summary

This release adds support for YAML configuration files, enabling users to define settings in a config file rather than using only command-line arguments. It defines a clear priority hierarchy for configuration sources.

Key Highlights

  • Support for YAML configuration files
  • Config file priority: CLI args > YAML > argparse defaults
  • Usage instructions provided for config.yaml

New Features

  • YAML configuration support
  • Config file 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
```