Spaces:
Build error
Build error
File size: 11,992 Bytes
31aa72c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | # Universal Compression
Headroom's Universal Compression module provides intelligent, automatic compression with ML-based content detection and structure preservation.
## Overview
Universal Compression combines several techniques:
1. **ML-based Detection** - Automatically detects content type (JSON, code, logs, text) using Magika
2. **Structure Preservation** - Keeps keys, signatures, and templates intact via structure masks
3. **Intelligent Compression** - Compresses content while preserving meaning with LLMLingua
4. **Reversible via CCR** - Stores originals for retrieval when LLM needs full context
## Quick Start
### One-Liner
```python
from headroom.compression import compress
result = compress(content)
print(result.compressed)
print(f"Saved {result.savings_percentage:.0f}% tokens")
```
### With Configuration
```python
from headroom.compression import UniversalCompressor, UniversalCompressorConfig
config = UniversalCompressorConfig(
compression_ratio_target=0.5, # Keep 50% of content
use_entropy_preservation=True, # Preserve UUIDs, hashes
)
compressor = UniversalCompressor(config=config)
result = compressor.compress(content)
```
---
## How It Works
### Detection Flow
```
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
β Content ββββ>β Detect ββββ>β Extract ββββ>β Compress β
β Input β β Type β β Structure β β Content β
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
β β β
βΌ βΌ βΌ
βββββββββββββββ βββββββββββββββ βββββββββββββββ
β Magika β β Handler β β LLMLingua β
β (ML) β β (JSON, β β (optional) β
β β β Code...) β β β
βββββββββββββββ βββββββββββββββ βββββββββββββββ
```
### Structure Masks
Structure masks identify what to preserve:
| Content Type | What's Preserved | What's Compressed |
|--------------|------------------|-------------------|
| **JSON** | Keys, brackets, booleans, nulls, short values, UUIDs | Long string values, whitespace |
| **Code** | Imports, function signatures, class definitions, types | Function bodies, comments |
| **Logs** | Timestamps, log levels, error messages | Repeated patterns, verbose details |
| **Text** | High-entropy tokens (IDs, hashes) | Low-information content |
---
## Configuration
### UniversalCompressorConfig
```python
from headroom.compression import UniversalCompressorConfig
config = UniversalCompressorConfig(
# Detection
use_magika=True, # Use ML-based detection (requires magika)
# Compression
use_llmlingua=True, # Use LLMLingua for compression
compression_ratio_target=0.3, # Keep 30% of content (70% reduction)
min_content_length=100, # Skip content shorter than this
# Structure preservation
use_entropy_preservation=True, # Preserve high-entropy tokens
entropy_threshold=0.85, # Entropy threshold for preservation
# CCR
ccr_enabled=True, # Store originals for retrieval
)
```
### Configuration Options
| Option | Default | Description |
|--------|---------|-------------|
| `use_magika` | `True` | Use ML-based content detection |
| `use_llmlingua` | `True` | Use LLMLingua for compression |
| `compression_ratio_target` | `0.3` | Target ratio (0.3 = keep 30%) |
| `min_content_length` | `100` | Minimum chars to compress |
| `use_entropy_preservation` | `True` | Preserve high-entropy tokens |
| `entropy_threshold` | `0.85` | Entropy threshold (0.0-1.0) |
| `ccr_enabled` | `True` | Enable CCR storage |
---
## Content Handlers
### JSON Handler
Preserves JSON structure while compressing values:
```python
from headroom.compression.handlers.json_handler import JSONStructureHandler
handler = JSONStructureHandler(
preserve_short_values=True, # Keep values < 20 chars
short_value_threshold=20, # Threshold for "short"
preserve_high_entropy=True, # Keep UUIDs, hashes
entropy_threshold=0.85, # Entropy threshold
max_array_items_full=3, # Keep first N array items full
max_number_digits=10, # Preserve numbers up to N digits
)
```
**What's Preserved:**
- All keys (navigational - LLM sees schema)
- Structural syntax (`{`, `}`, `[`, `]`, `:`, `,`)
- Booleans and nulls (semantically important)
- High-entropy strings (UUIDs, hashes - identifiers)
- Short numbers (often IDs)
**Example:**
```python
# Before
{
"id": "usr_abc123",
"name": "Alice Johnson",
"bio": "A long description that goes on and on..."
}
# After (structure preserved, long values compressed)
{
"id": "usr_abc123",
"name": "Alice Johnson",
"bio": "A long...[compressed]..."
}
```
### Code Handler
Preserves code structure using AST parsing (tree-sitter) or regex fallback:
```python
from headroom.compression.handlers.code_handler import CodeStructureHandler
handler = CodeStructureHandler(
preserve_comments=False, # Preserve comments as structural
use_tree_sitter=True, # Use tree-sitter for parsing
default_language="python", # Default when detection fails
)
```
**What's Preserved:**
- Import statements
- Function/method signatures
- Class definitions
- Type annotations
- Decorators
**What's Compressed:**
- Function bodies (implementations)
- Comments (unless `preserve_comments=True`)
**Example:**
```python
# Before
def process_data(items: List[str]) -> Dict[str, int]:
"""Process items and count occurrences."""
result = {}
for item in items:
item = item.strip().lower()
if item in result:
result[item] += 1
else:
result[item] = 1
return result
# After (signature preserved, body compressed)
def process_data(items: List[str]) -> Dict[str, int]:
"""Process items and count occurrences."""
result = {}
for item in items:
...[compressed]...
```
### Supported Languages
| Language | Parser | Support Level |
|----------|--------|---------------|
| Python | tree-sitter | Full AST |
| JavaScript | tree-sitter | Full AST |
| TypeScript | tree-sitter | Full AST |
| Go | tree-sitter | Full AST |
| Rust | tree-sitter | Full AST |
| Java | tree-sitter | Full AST |
| C | tree-sitter | Full AST |
| C++ | tree-sitter | Full AST |
---
## Compression Result
```python
from headroom.compression import compress
result = compress(content)
# Access result fields
print(result.compressed) # Compressed content
print(result.original) # Original content
print(result.compression_ratio) # e.g., 0.35 (35% of original size)
print(result.tokens_before) # Estimated tokens before
print(result.tokens_after) # Estimated tokens after
print(result.tokens_saved) # tokens_before - tokens_after
print(result.savings_percentage) # e.g., 65.0 (65% savings)
# Detection info
print(result.content_type) # ContentType.JSON, CODE, etc.
print(result.detection_confidence) # 0.0-1.0
# Structure info
print(result.handler_used) # "json", "code", etc.
print(result.preservation_ratio) # Fraction preserved as structure
# CCR info
print(result.ccr_key) # Key for retrieval (if CCR enabled)
```
---
## Batch Compression
For multiple contents, batch compression is more efficient:
```python
from headroom.compression import UniversalCompressor
compressor = UniversalCompressor()
contents = [
'{"users": [...]}',
'def hello(): pass',
'Plain text content',
]
results = compressor.compress_batch(contents)
for result in results:
print(f"{result.content_type}: {result.savings_percentage:.0f}% saved")
```
---
## Custom Handlers
Register custom handlers for specific content types:
```python
from headroom.compression import UniversalCompressor
from headroom.compression.detector import ContentType
from headroom.compression.handlers.base import BaseStructureHandler, HandlerResult
from headroom.compression.masks import StructureMask
class LogStructureHandler(BaseStructureHandler):
"""Custom handler for log content."""
def __init__(self):
super().__init__(name="log")
def can_handle(self, content: str) -> bool:
return "[INFO]" in content or "[ERROR]" in content
def _extract_mask(self, content, tokens, **kwargs):
# Mark timestamps and log levels as structural
mask = [False] * len(content)
# ... (custom logic)
return HandlerResult(
mask=StructureMask(tokens=tokens, mask=mask),
handler_name=self.name,
confidence=0.9,
)
# Register the custom handler
compressor = UniversalCompressor()
compressor.register_handler(ContentType.TEXT, LogStructureHandler())
```
---
## CCR Integration
Universal Compression integrates with CCR (Compress-Cache-Retrieve) for reversible compression:
```python
from headroom.compression import UniversalCompressor, UniversalCompressorConfig
config = UniversalCompressorConfig(ccr_enabled=True)
compressor = UniversalCompressor(config=config)
result = compressor.compress(large_content)
# CCR key for retrieval
if result.ccr_key:
print(f"Original stored with key: {result.ccr_key}")
# LLM can request original via CCR when needed
```
See [CCR Guide](ccr.md) for full CCR documentation.
---
## Performance
| Content Type | Compression | Speed | Accuracy |
|--------------|-------------|-------|----------|
| JSON (large arrays) | 70-90% | ~1ms | Keys preserved |
| Code (Python) | 50-70% | ~10ms | Signatures preserved |
| Plain text | 60-80% | ~5ms | High-entropy preserved |
**Overhead:** ~1-10ms per compression depending on content size and type.
---
## Installation
```bash
# Basic compression (fallback to simple compression)
pip install headroom-ai
# With ML detection (recommended)
pip install "headroom-ai[magika]"
# With LLMLingua compression
pip install "headroom-ai[llmlingua]"
# With AST-based code handling
pip install "headroom-ai[code]"
# Everything
pip install "headroom-ai[all]"
```
---
## Example: Full Pipeline
```python
from headroom.compression import UniversalCompressor, UniversalCompressorConfig
# Configure for aggressive compression
config = UniversalCompressorConfig(
compression_ratio_target=0.25, # Keep 25%
use_magika=True,
use_llmlingua=True,
ccr_enabled=True,
)
compressor = UniversalCompressor(config=config)
# Compress JSON API response
json_content = """
{
"users": [
{"id": "usr_123", "name": "Alice", "bio": "Software engineer..."},
{"id": "usr_456", "name": "Bob", "bio": "Product manager..."}
],
"total": 2,
"page": 1
}
"""
result = compressor.compress(json_content)
print(f"Type: {result.content_type}") # ContentType.JSON
print(f"Handler: {result.handler_used}") # json
print(f"Saved: {result.savings_percentage:.0f}%") # ~60%
print(f"Structure: {result.preservation_ratio:.0%} preserved") # ~40%
print(f"CCR Key: {result.ccr_key}") # For retrieval
```
---
## See Also
- [Transforms Reference](transforms.md) - Other compression transforms
- [CCR Guide](ccr.md) - Reversible compression architecture
- [Text Compression](text-compression.md) - Opt-in utilities for search/logs
|