Spaces:
Build error
Build error
File size: 5,553 Bytes
d724f14 | 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 | # Error Handling
Headroom provides explicit exceptions for debugging, with a safety guarantee that compression failures never break your LLM calls.
## Exception Hierarchy
```python
from headroom import (
HeadroomError, # Base class - catch all Headroom errors
ConfigurationError, # Invalid configuration
ProviderError, # Provider issues (unknown model, etc.)
StorageError, # Database/storage failures
CompressionError, # Compression failures (rare)
ValidationError, # Setup validation failures
)
```
## Usage
```python
from headroom import (
HeadroomClient,
HeadroomError,
ConfigurationError,
StorageError,
)
try:
client = HeadroomClient(...)
response = client.chat.completions.create(...)
except ConfigurationError as e:
print(f"Config issue: {e}")
print(f"Details: {e.details}") # Additional context
except StorageError as e:
print(f"Storage issue: {e}")
# Headroom continues to work, just without metrics persistence
except HeadroomError as e:
print(f"Headroom error: {e}")
```
## Exception Types
### ConfigurationError
Raised when configuration is invalid.
```python
# Examples:
# - Invalid mode value
# - Missing required provider
# - Invalid model context limit
try:
client = HeadroomClient(
original_client=OpenAI(),
provider=OpenAIProvider(),
default_mode="invalid_mode", # Will raise ConfigurationError
)
except ConfigurationError as e:
print(f"Config error: {e}")
print(f"Field: {e.details.get('field')}")
```
### ProviderError
Raised for provider-specific issues.
```python
# Examples:
# - Unknown model name
# - Provider API error
# - Token counting failure
try:
response = client.chat.completions.create(
model="unknown-model-xyz",
messages=[...]
)
except ProviderError as e:
print(f"Provider error: {e}")
print(f"Provider: {e.details.get('provider')}")
```
### StorageError
Raised when database operations fail.
```python
# Examples:
# - Database connection failure
# - Write permission denied
# - Disk full
try:
metrics = client.get_metrics()
except StorageError as e:
print(f"Storage error: {e}")
# Application can continue - just won't have metrics
```
### CompressionError
Raised when compression fails (rare).
```python
# Examples:
# - Malformed JSON in tool output
# - Unexpected data structure
# Note: In practice, compression errors are caught internally
# and the original content passes through unchanged.
# This exception is only raised if you explicitly enable strict mode.
```
### ValidationError
Raised when setup validation fails.
```python
result = client.validate_setup()
if not result["valid"]:
raise ValidationError(
"Setup validation failed",
details={"issues": result["issues"]}
)
```
## Safety Guarantee
**If compression fails, the original content passes through unchanged.**
This is a core design principle. Your LLM calls never fail due to Headroom:
```python
# Even if SmartCrusher encounters unexpected data:
messages = [
{"role": "tool", "content": "malformed json {{{"}
]
# This will NOT raise an exception
# Instead, the malformed content passes through unchanged
response = client.chat.completions.create(
model="gpt-4o",
messages=messages
)
```
## Logging Errors
Enable logging to see error details:
```python
import logging
logging.basicConfig(level=logging.WARNING)
# Now you'll see warnings when compression is skipped:
# WARNING:headroom.transforms.smart_crusher:Skipping compression: invalid JSON
```
## Error Details
All Headroom exceptions include a `details` dict with context:
```python
try:
client = HeadroomClient(...)
except HeadroomError as e:
print(f"Error: {e}")
print(f"Type: {type(e).__name__}")
print(f"Details: {e.details}")
# Details might include:
# - field: which config field caused the error
# - provider: which provider was involved
# - model: which model was requested
# - original_error: underlying exception
```
## Best Practices
### 1. Catch Specific Exceptions
```python
# Good: catch specific exceptions
try:
response = client.chat.completions.create(...)
except ConfigurationError:
# Handle config issues
pass
except ProviderError:
# Handle provider issues
pass
# Avoid: catching all exceptions
try:
response = client.chat.completions.create(...)
except Exception:
# Too broad - might hide real bugs
pass
```
### 2. Let StorageError Pass
```python
# Storage errors don't affect core functionality
try:
metrics = client.get_metrics()
except StorageError:
metrics = [] # Continue without historical metrics
```
### 3. Validate on Startup
```python
client = HeadroomClient(...)
# Validate once at startup
result = client.validate_setup()
if not result["valid"]:
raise SystemExit(f"Headroom setup invalid: {result['issues']}")
# Then use client normally
response = client.chat.completions.create(...)
```
## Debugging
### Enable Debug Logging
```python
import logging
logging.basicConfig(level=logging.DEBUG)
# Shows detailed transform decisions
# DEBUG:headroom.transforms.smart_crusher:Analyzing 1000 items...
# DEBUG:headroom.transforms.smart_crusher:Kept 15 items (errors: 2, anomalies: 3)
```
### Check Stats After Error
```python
try:
response = client.chat.completions.create(...)
except HeadroomError:
# Check what happened
stats = client.get_stats()
print(f"Last request stats: {stats}")
```
|