2026-01-07 11:36:44 -08:00
|
|
|
# API Reference
|
|
|
|
|
|
|
|
|
|
## HeadroomClient
|
|
|
|
|
|
|
|
|
|
The main entry point for Headroom SDK.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import HeadroomClient
|
|
|
|
|
from openai import OpenAI
|
|
|
|
|
|
|
|
|
|
client = HeadroomClient(
|
|
|
|
|
original_client=OpenAI(),
|
|
|
|
|
default_mode="optimize",
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Constructor Parameters
|
|
|
|
|
|
|
|
|
|
| Parameter | Type | Default | Description |
|
|
|
|
|
|-----------|------|---------|-------------|
|
|
|
|
|
| `original_client` | `OpenAI \| Anthropic` | Required | The underlying LLM client |
|
|
|
|
|
| `provider` | `Provider` | Auto-detected | Token counting provider |
|
|
|
|
|
| `default_mode` | `str` | `"audit"` | Default mode: "audit", "optimize", "off" |
|
|
|
|
|
| `store_url` | `str` | `None` | Storage URL for metrics |
|
|
|
|
|
| `smart_crusher_config` | `SmartCrusherConfig` | Default | Compression settings |
|
|
|
|
|
| `cache_aligner_config` | `CacheAlignerConfig` | Default | Cache alignment settings |
|
|
|
|
|
|
|
|
|
|
### Methods
|
|
|
|
|
|
|
|
|
|
#### `chat.completions.create(**kwargs)`
|
|
|
|
|
|
|
|
|
|
Create a chat completion with optional optimization.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
response = client.chat.completions.create(
|
|
|
|
|
model="gpt-4o",
|
|
|
|
|
messages=[...],
|
|
|
|
|
headroom_mode="optimize", # Override default mode
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**Additional Parameters:**
|
|
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
|
|-----------|------|-------------|
|
|
|
|
|
| `headroom_mode` | `str` | Override mode for this request |
|
|
|
|
|
| `headroom_query` | `str` | Query for relevance scoring |
|
|
|
|
|
|
|
|
|
|
#### `chat.completions.simulate(**kwargs)`
|
|
|
|
|
|
|
|
|
|
Preview optimization without making an API call.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
plan = client.chat.completions.simulate(
|
|
|
|
|
model="gpt-4o",
|
|
|
|
|
messages=[...],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
print(f"Tokens before: {plan.tokens_before}")
|
|
|
|
|
print(f"Tokens after: {plan.tokens_after}")
|
|
|
|
|
print(f"Savings: {plan.savings_percent:.1f}%")
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**Returns:** `SimulationResult`
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Configuration Classes
|
|
|
|
|
|
|
|
|
|
### SmartCrusherConfig
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import SmartCrusherConfig
|
|
|
|
|
|
|
|
|
|
config = SmartCrusherConfig(
|
|
|
|
|
min_tokens_to_crush=200,
|
|
|
|
|
max_items_after_crush=50,
|
|
|
|
|
keep_first=3,
|
|
|
|
|
keep_last=2,
|
|
|
|
|
relevance_threshold=0.3,
|
|
|
|
|
anomaly_std_threshold=2.0,
|
|
|
|
|
preserve_errors=True,
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### CacheAlignerConfig
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import CacheAlignerConfig
|
|
|
|
|
|
|
|
|
|
config = CacheAlignerConfig(
|
|
|
|
|
extract_dates=True,
|
|
|
|
|
normalize_whitespace=True,
|
|
|
|
|
stable_prefix_min_tokens=100,
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### RelevanceScorerConfig
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import RelevanceScorerConfig
|
|
|
|
|
|
|
|
|
|
config = RelevanceScorerConfig(
|
|
|
|
|
scorer_type="bm25", # "bm25", "embedding", or "hybrid"
|
|
|
|
|
embedding_model=None, # Model name for embedding scorer
|
|
|
|
|
hybrid_alpha=0.5, # Weight for hybrid scoring
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Data Models
|
|
|
|
|
|
|
|
|
|
### SimulationResult
|
|
|
|
|
|
|
|
|
|
Returned by `simulate()`.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
@dataclass
|
|
|
|
|
class SimulationResult:
|
|
|
|
|
tokens_before: int
|
|
|
|
|
tokens_after: int
|
|
|
|
|
tokens_saved: int
|
|
|
|
|
savings_percent: float
|
|
|
|
|
transforms_applied: list[str]
|
|
|
|
|
waste_signals: WasteSignals
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### RequestMetrics
|
|
|
|
|
|
|
|
|
|
Metrics for a single request.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
@dataclass
|
|
|
|
|
class RequestMetrics:
|
|
|
|
|
request_id: str
|
|
|
|
|
timestamp: datetime
|
|
|
|
|
model: str
|
|
|
|
|
tokens_input_before: int
|
|
|
|
|
tokens_input_after: int
|
|
|
|
|
tokens_output: int
|
|
|
|
|
cost_before: float
|
|
|
|
|
cost_after: float
|
|
|
|
|
transforms_applied: list[str]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### WasteSignals
|
|
|
|
|
|
|
|
|
|
Detected waste in the request.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
@dataclass
|
|
|
|
|
class WasteSignals:
|
|
|
|
|
json_bloat_tokens: int
|
|
|
|
|
html_noise_tokens: int
|
|
|
|
|
whitespace_tokens: int
|
|
|
|
|
dynamic_date_tokens: int
|
|
|
|
|
repetition_tokens: int
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Providers
|
|
|
|
|
|
|
|
|
|
### OpenAIProvider
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import OpenAIProvider
|
|
|
|
|
|
|
|
|
|
provider = OpenAIProvider()
|
|
|
|
|
|
|
|
|
|
# Get token counter
|
|
|
|
|
counter = provider.get_token_counter("gpt-4o")
|
|
|
|
|
tokens = counter.count_text("Hello, world!")
|
|
|
|
|
|
|
|
|
|
# Get context limit
|
|
|
|
|
limit = provider.get_context_limit("gpt-4o") # 128000
|
|
|
|
|
|
|
|
|
|
# Estimate cost
|
|
|
|
|
cost = provider.estimate_cost(
|
|
|
|
|
input_tokens=1000,
|
|
|
|
|
output_tokens=500,
|
|
|
|
|
model="gpt-4o",
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### AnthropicProvider
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import AnthropicProvider
|
|
|
|
|
from anthropic import Anthropic
|
|
|
|
|
|
|
|
|
|
provider = AnthropicProvider(client=Anthropic())
|
|
|
|
|
|
|
|
|
|
counter = provider.get_token_counter("claude-3-5-sonnet-latest")
|
|
|
|
|
tokens = counter.count_messages(messages) # Accurate count via API
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Relevance Scoring
|
|
|
|
|
|
|
|
|
|
### BM25Scorer
|
|
|
|
|
|
|
|
|
|
Fast keyword-based scoring (zero dependencies).
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import BM25Scorer
|
|
|
|
|
|
|
|
|
|
scorer = BM25Scorer()
|
|
|
|
|
scores = scorer.score_items(
|
|
|
|
|
items=["item 1", "item 2", ...],
|
|
|
|
|
query="search query",
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### EmbeddingScorer
|
|
|
|
|
|
|
|
|
|
Semantic similarity scoring (requires `sentence-transformers`).
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import EmbeddingScorer, embedding_available
|
|
|
|
|
|
|
|
|
|
if embedding_available():
|
|
|
|
|
scorer = EmbeddingScorer(model="all-MiniLM-L6-v2")
|
|
|
|
|
scores = scorer.score_items(items, query)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### HybridScorer
|
|
|
|
|
|
|
|
|
|
Combines BM25 and embeddings.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import HybridScorer
|
|
|
|
|
|
|
|
|
|
scorer = HybridScorer(alpha=0.5) # 50% BM25, 50% embedding
|
|
|
|
|
scores = scorer.score_items(items, query)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### create_scorer()
|
|
|
|
|
|
|
|
|
|
Factory function to create scorers.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import create_scorer
|
|
|
|
|
|
|
|
|
|
# Auto-select best available scorer
|
|
|
|
|
scorer = create_scorer()
|
|
|
|
|
|
|
|
|
|
# Explicitly choose type
|
|
|
|
|
scorer = create_scorer(scorer_type="hybrid", alpha=0.7)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Transforms (Direct Use)
|
|
|
|
|
|
|
|
|
|
### SmartCrusher
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import SmartCrusher
|
|
|
|
|
|
|
|
|
|
crusher = SmartCrusher()
|
|
|
|
|
result = crusher.crush(
|
|
|
|
|
data={"results": [...]},
|
|
|
|
|
query="user query",
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### CacheAligner
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import CacheAligner
|
|
|
|
|
|
|
|
|
|
aligner = CacheAligner()
|
|
|
|
|
result = aligner.align(messages)
|
|
|
|
|
```
|
|
|
|
|
|
docs: sync README + benchmarks with code (drop retired IntelligentContext/RollingWindow) (#1545)
## Description
Sync the docs with the code after the live-zone realignment. The
`IntelligentContextManager` (ICM), `RollingWindow`, and scoring modules
were deleted in PR #350 (May 2026), but the README and benchmark
docstrings still advertised them as live, and an example still imported
the deleted module (broken on run). This fixes the README + benchmarks
and removes the dead example.
I validated the README against the code with three parallel
static-analysis sub-agents (features/architecture,
CLI/extras/wrap-matrix, public API/integrations). Most of the README
checked out accurate; only the items below were stale/wrong.
Closes #
## Type of Change
- [ ] Bug fix (non-breaking change that fixes an issue)
- [ ] New feature (non-breaking change that adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
- [x] Documentation update
- [ ] Performance improvement
- [ ] Code refactoring (no functional changes)
## Changes Made
- README: removed the `IntelligentContext` bullet and
`IntelligentContext / RollingWindow` from the transforms list (both
deleted in PR #350).
- README: standardized `Kompress-base` -> `Kompress-v2-base` to match
the HF model id `chopratejas/kompress-v2-base` and the existing badges
(diagram re-aligned).
- README: corrected the CodeCompressor language list to match the
`CodeLanguage` enum (added TS, C, Perl).
- README: softened the unanchored "6 algorithms" tagline to
"content-aware compressors".
- README: Cortex Code is library-mode only — there is no `headroom wrap
cortex`, so the compatibility-matrix row no longer shows a wrap
checkmark.
- Deleted `examples/test_intelligent_context_toin_ccr.py` — it imported
the deleted `IntelligentContextManager` (ImportError on run) and is
unreferenced.
- Removed stale `RollingWindow` mentions from benchmark
docstrings/comments (`benchmarks/__init__.py`, `bench_transforms.py`,
`bench_latency.py`, `scenarios/conversations.py`); the accurate PR-B1
retirement comment is kept.
## Testing
- [ ] Unit tests pass (`pytest`) — N/A, docs/docstring + example
deletion only
- [x] Linting passes — `ruff check` clean on all changed benchmark files
- [ ] Type checking passes — N/A (no type-relevant changes)
- [ ] New tests added — N/A
- [x] Manual testing performed — see Real Behavior Proof
### Test Output
```text
$ ruff check benchmarks/__init__.py benchmarks/bench_transforms.py benchmarks/bench_latency.py benchmarks/scenarios/conversations.py
All checks passed!
# stale refs remaining in README/benchmarks (excluding accurate retirement notes):
$ grep -rn "IntelligentContext|RollingWindow|Kompress-base" README.md benchmarks/ | grep -v retire
(only benchmarks/bench_transforms.py:362 — the accurate PR-B1 retirement comment)
# deleted example is unreferenced anywhere:
$ grep -rn "test_intelligent_context_toin_ccr" --include=*.md --include=*.yml --include=*.py .
(no hits)
```
## Real Behavior Proof
- Environment: macOS (darwin, arm64), Python 3.12 `.venv`, ruff 0.14.x,
repo at branch `docs/sync-readme-with-code` off latest `main`.
- Exact command / steps: (1) three parallel sub-agents
grep/Read-validated README claims vs `headroom/`, `pyproject.toml`,
`sdk/typescript/`; (2) directly verified each flagged mismatch
(`CodeLanguage` enum, `HF_MODEL_ID`, absence of
`IntelligentContext`/`RollingWindow` classes); (3) confirmed the example
imports a deleted module and is unreferenced; (4) `ruff check` on
changed benchmark files; (5) re-grepped README + benchmarks for any
remaining stale refs.
- Observed result: README and benchmark docstrings now match the code;
the only surviving `RollingWindow` string is the accurate retirement
comment; the broken example is removed; ruff passes; the ASCII
architecture diagram still aligns after the `Kompress-v2-base` rename.
- Not tested: rendering of the README on GitHub/PyPI (text-only change);
the separate `docs/content/` and `wiki/` doc sets (see Additional Notes
— out of scope for this PR).
## Review Readiness
- [x] I have performed a self-review
- [x] This PR is ready for human review
## Checklist
- [x] My code follows the project's style guidelines
- [x] I have performed a self-review of my code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective — N/A
(docs/example cleanup)
- [x] New and existing unit tests pass locally with my changes
- [ ] I have updated the CHANGELOG.md — N/A (Release Please
auto-generates from the conventional commit)
## Additional Notes
**Larger related finding (NOT in this PR):** the published docs site
(`docs/content/docs/*.mdx`) and the `wiki/*.md` set still document
`IntelligentContextManager`, `RollingWindow`, `RollingWindowConfig`,
`IntelligentContextConfig`, and `ScoringWeights` as live API — with
`from headroom import RollingWindow` / `from headroom.transforms import
IntelligentContextManager` code examples that would `ImportError`. It is
half-migrated (a couple of `.mdx` files already note "removed in 0.9.x"
while neighbors still teach it as current). This is ~15 files and the
fixes require rewriting examples to the live-zone model, not just
deletions — recommended as a focused follow-up PR rather than bundling
it here.
2026-06-28 22:36:41 -07:00
|
|
|
> **Context management** is handled automatically inside the pipeline
|
|
|
|
|
> (live-zone-only compression). The position-based `RollingWindow` and
|
|
|
|
|
> score-based `IntelligentContextManager` / `MessageScorer` APIs have been
|
|
|
|
|
> removed and are no longer part of Headroom.
|
Add IntelligentContextManager for semantic-aware context management
- Add multi-factor importance scoring (recency, semantic similarity,
TOIN importance, error indicators, forward references, token density)
- No hardcoded patterns - all signals learned from TOIN or computed
- Add ScoringWeights and IntelligentContextConfig dataclasses
- Add MessageScorer for scoring individual messages
- Add strategy selection: NONE, COMPRESS_FIRST, DROP_BY_SCORE
- Preserve tool call/response atomicity when dropping
- Add comprehensive tests (62 tests total)
- Update documentation (transforms, configuration, api, architecture)
2026-01-18 22:22:48 -08:00
|
|
|
|
2026-01-07 11:36:44 -08:00
|
|
|
### TransformPipeline
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import TransformPipeline
|
|
|
|
|
|
|
|
|
|
pipeline = TransformPipeline([
|
|
|
|
|
SmartCrusher(),
|
|
|
|
|
CacheAligner(),
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
result = pipeline.transform(messages)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Utilities
|
|
|
|
|
|
|
|
|
|
### Tokenizer
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import Tokenizer, count_tokens_text, count_tokens_messages
|
|
|
|
|
|
|
|
|
|
# Quick counting
|
|
|
|
|
tokens = count_tokens_text("Hello, world!", model="gpt-4o")
|
|
|
|
|
|
|
|
|
|
# With tokenizer instance
|
|
|
|
|
tokenizer = Tokenizer(model="gpt-4o")
|
|
|
|
|
tokens = tokenizer.count_text("Hello")
|
|
|
|
|
tokens = tokenizer.count_messages(messages)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### generate_report()
|
|
|
|
|
|
|
|
|
|
Generate HTML/Markdown reports from stored metrics.
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from headroom import generate_report
|
|
|
|
|
|
|
|
|
|
report = generate_report(
|
|
|
|
|
store_url="sqlite:///headroom.db",
|
|
|
|
|
format="html",
|
|
|
|
|
period="day",
|
|
|
|
|
)
|
|
|
|
|
```
|
2026-03-26 15:41:56 -07:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## TypeScript SDK
|
|
|
|
|
|
|
|
|
|
For the TypeScript SDK API reference, see [TypeScript SDK](typescript-sdk.md).
|
|
|
|
|
|
|
|
|
|
The TypeScript SDK provides `compress()`, `HeadroomClient`, and framework adapters for Vercel AI SDK, OpenAI, and Anthropic.
|