v3.0.1

prefix-dev/pixiv3.0.1Jun 30, 2026by lyogavin

AI Summary

This is a patch release addressing installation issues where the import failed due to a missing `sentencepiece` dependency and improving the robustness of model-family imports.

Key Highlights

  • Fixed `ModuleNotFoundError: No module named 'sentencepiece'` by making `sentencepiece` a declared dependency.
  • Defensive model-family imports ensure that missing optional dependencies for niche models do not break the entire package.
  • The generic streaming path now always loads successfully regardless of specific optional 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
```