Skip to content

Commit bc44a6a

Browse files
unamedkrclaude
andcommitted
v0.11.0: quantcpp CLI + progressive default + Llama-3.2-1B default
User feedback fixes: - Added `quantcpp` CLI command (pip install → quantcpp "question") - Default model: Llama-3.2-1B (SmolLM2-135M produced garbage) - Progressive KV: ON by default everywhere Usage: quantcpp "What is gravity?" # one-shot quantcpp # interactive chat quantcpp -m my_model.gguf # custom model Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3f3fb74 commit bc44a6a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bindings/python/pyproject.toml

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

88
[project]
99
name = "quantcpp"
10-
version = "0.10.1"
10+
version = "0.11.0"
1111
description = "Single-header LLM inference engine with KV cache compression (7× compression at fp32 parity)"
1212
readme = "README.md"
1313
license = { text = "Apache-2.0" }

bindings/python/quantcpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from importlib.metadata import version as _pkg_version
1616
__version__ = _pkg_version("quantcpp")
1717
except Exception:
18-
__version__ = "0.10.1" # fallback for editable / source-tree imports
18+
__version__ = "0.11.0" # fallback for editable / source-tree imports
1919

2020
import os
2121
import sys

0 commit comments

Comments
 (0)