v3.0.1
HumanAIGC/Cloth2Texv3.0.1Jun 30, 2026by lyogavin
AI Summary
A patch release addressing installation issues where the `sentencepiece` module was missing, causing import failures on clean installs. It also improves package stability by making model-family imports defensive to prevent breaking the entire package when optional dependencies are absent.
Key Highlights
- Fixes `ModuleNotFoundError` for `sentencepiece` on clean installs
- Defensive imports prevent package breakage from missing optional dependencies
- Generic streaming path now loads reliably even with missing niche dependencies
Full Release Notes
## AirLLM v3.0.1 Patch release. - **Fix:** `import airllm` failed on a clean install with `ModuleNotFoundError: No module named 'sentencepiece'`. `sentencepiece` is now a declared dependency, so `pip install airllm` works out of the box. - Model-family imports are now defensive: a missing optional dependency for one niche model family no longer breaks the whole package — the generic streaming path always loads. ### Upgrade ```bash pip install --upgrade airllm ```