Commit ·
8f95629
1
Parent(s): 2844db6
docs: Update version to 1.0.1 and add changelog
Browse files- CHANGELOG.md +12 -0
- pyproject.toml +1 -1
CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
| 1 |
# Changelog
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
## [0.2.1] - 2025-09-02
|
| 4 |
### Added
|
| 5 |
- CLI `--save-plots` option for `sweep` and `dp-curve`; saves PNG charts to `benchmarks/out/` (or `--out-dir`).
|
|
|
|
| 1 |
# Changelog
|
| 2 |
|
| 3 |
+
## [1.0.1] - 2025-09-06
|
| 4 |
+
### Added
|
| 5 |
+
- Implemented core modules from scratch based on design documents.
|
| 6 |
+
- Implemented FastAPI server with `/process` endpoint (`src/crom_efficientllm/server.py`).
|
| 7 |
+
- Added `enhanced_greedy_pack` with detailed statistics for budget packing (`src/crom_efficientllm/budget_packer.py`).
|
| 8 |
+
- Implemented `SafeCrossEncoderManager` for robust and observable Cross-Encoder handling (`src/crom_efficientllm/cross_encoder.py`).
|
| 9 |
+
- Added `ExplainCapsuleLogger` for structured JSONL logging of all processing events (`src/crom_efficientllm/capsule_logger.py`).
|
| 10 |
+
|
| 11 |
+
### Changed
|
| 12 |
+
- Major version bump to reflect the first functional implementation of core logic.
|
| 13 |
+
|
| 14 |
+
|
| 15 |
## [0.2.1] - 2025-09-02
|
| 16 |
### Added
|
| 17 |
- CLI `--save-plots` option for `sweep` and `dp-curve`; saves PNG charts to `benchmarks/out/` (or `--out-dir`).
|
pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "crom-efficientllm"
|
| 7 |
-
version = "0.
|
| 8 |
description = "CRoM (Context Rot Mitigation)-EfficientLLM: Budget packing, hybrid rerank, and drift estimation with observability"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.9"
|
|
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "crom-efficientllm"
|
| 7 |
+
version = "1.0.1"
|
| 8 |
description = "CRoM (Context Rot Mitigation)-EfficientLLM: Budget packing, hybrid rerank, and drift estimation with observability"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.9"
|