v3.0.1
Notifuse/notifusev3.0.1Jun 30, 2026by lyogavin
AI Summary
A patch release for AirLLM that fixes import errors by adding sentencepiece as a dependency and improves robustness by making model-family imports defensive.
Key Highlights
- Fix for `import airllm` failing due to missing sentencepiece dependency
- sentencepiece is now a declared dependency
- Model-family imports are now defensive
- Generic streaming path always loads
New Features
- Fixed import errors for clean installs
- Improved dependency management
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 ```