v3.0.1
visioncortex/vtracerv3.0.1Jun 30, 2026by lyogavin
AI Summary
This patch release fixes installation reliability by declaring 'sentencepiece' as a dependency and making model-family imports defensive to prevent package breakage when optional dependencies are missing.
Key Highlights
- Fixes 'import airllm' failure on clean installs due to missing 'sentencepiece' dependency.
- 'sentencepiece' is now a declared dependency.
- Model-family imports are now defensive; missing optional dependencies for niche models no longer break the generic streaming path.
New Features
- Added 'sentencepiece' as a declared dependency.
- Implemented defensive model-family imports.
- Generic streaming path now loads regardless of optional dependency availability.
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 ```