Skip to content

Commit aa0bd37

Browse files
committed
Release v0.1.4
1 parent 8f234ae commit aa0bd37

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to Squeez are documented here.
44

5+
## [0.1.4] - 2026-04-27
6+
7+
### Added
8+
- **Extractive backend (`highlighter`)**: auto-detected support for `KRLabsOrg/verbatim-rag-modern-bert-v2` (and any compatible Verbatim-RAG ModernBERT span model). Same CLI, same Python API — just point `SQUEEZ_LOCAL_MODEL` at the HF id.
9+
- **Session stats**: `--stats` prints token/line savings per call; `--summary` prints accumulated savings across the session. Logged to `~/.cache/squeez/session_stats.jsonl`.
10+
11+
### Changed
12+
- Docs reframed around two model types (generative vs extractive) instead of internal backend names.
13+
514
## [0.1.3] - 2026-03-18
615

716
### Fixed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ pytest -q 2>&1 | squeez "find the failing test"
254254
git log --oneline -50 | squeez "find the auth commit"
255255
```
256256

257-
`KRLabsOrg/verbatim-rag-modern-bert-v2` is a 150M ModernBERT span model
258-
trained on a multi-domain mix that includes Squeez tool-output. See
259-
[RESULTS.md](RESULTS.md) for the head-to-head with Squeez-2B.
257+
[`KRLabsOrg/verbatim-rag-modern-bert-v2`](https://huggingface.co/KRLabsOrg/verbatim-rag-modern-bert-v2)
258+
is a 150M ModernBERT span model trained on a multi-domain mix that includes
259+
Squeez tool-output — its model card has the head-to-head numbers.
260260

261261
To train your own extractive model, see [TRAINING.md](TRAINING.md).
262262

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "squeez"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "Squeeze verbose LLM agent tool output down to only the relevant lines"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"

squeez/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Squeez — Squeeze verbose LLM agent tool output down to only the relevant evidence blocks."""
22

3-
__version__ = "0.1.3"
3+
__version__ = "0.1.4"
44

55

66
def __getattr__(name: str):

0 commit comments

Comments
 (0)