v3.0.1
lyogavin/airllmv3.0.1Jun 30, 2026by lyogavin
AI Summary
A patch release that addresses installation failures by adding missing dependencies and improves the robustness of the package by making model-family imports defensive.
Key Highlights
- Fixes `ModuleNotFoundError` for `sentencepiece` by adding it as a declared dependency.
- Prevents package crashes when optional dependencies for niche model families are missing.
- Ensures a clean install works out of the box.
New Features
- Automatic dependency inclusion for `sentencepiece`.
- Defensive import handling for model families.
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 ```