v3.0.1

karakeep-app/karakeepv3.0.1Jun 30, 2026by lyogavin

AI Summary

This is a patch release that resolves installation issues by adding the 'sentencepiece' dependency and improves stability by making model-family imports defensive against missing optional dependencies.

Key Highlights

  • Fixed 'ModuleNotFoundError' for missing 'sentencepiece' dependency during clean installs
  • Defensive imports prevent package crashes from missing optional dependencies for niche model families
  • Generic streaming path now loads reliably for all model families

New Features

  • Added 'sentencepiece' as a declared dependency
  • Implemented defensive imports 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
```