v3.0.1
f/prompts.chatv3.0.1Jun 30, 2026by lyogavin
AI Summary
This patch release addresses installation issues to ensure the package works immediately upon installation and prevents package crashes when optional dependencies for niche models are missing.
Key Highlights
- Fixed 'import airllm' failure on clean installs due to missing 'sentencepiece' dependency.
- Made model-family imports defensive to prevent breaking the whole package if a specific optional dependency is missing.
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 ```