Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
Context observability provides optimization history tracking, event logging, and debugging tools.
Quick Start
from praisonaiagents import ContextManager
manager = ContextManager(model="gpt-4o-mini")
# Process messages (generates events)
result = manager.process(messages=messages)
# Get optimization history
history = manager.get_history()
for event in history:
print(f"{event['event_type']}: {event['tokens_saved']} saved")
Optimization Events
| Event Type | Description |
|---|
overflow_detected | Context exceeded threshold |
auto_compact | Auto-compaction triggered |
benefit_check | Compression benefit evaluated |
revert | Compression reverted (not beneficial) |
cap_outputs | Tool outputs capped |
prune_tools | Old tool outputs pruned |
sliding_window | Sliding window applied |
summarize | Messages summarized |
snapshot | Context snapshot taken |
OptimizationEvent
@dataclass
class OptimizationEvent:
timestamp: str # ISO timestamp
event_type: str # Event type
strategy: str # Strategy used
tokens_before: int # Tokens before
tokens_after: int # Tokens after
tokens_saved: int # Tokens saved
messages_affected: int # Messages changed
details: Dict[str, Any] # Additional info
History Tracking
# Get all history
history = manager.get_history()
# Filter by event type
compactions = [e for e in history if e['event_type'] == 'auto_compact']
# Get total tokens saved
total_saved = sum(e['tokens_saved'] for e in history)
CLI Commands
# Show optimization history
praisonai chat
> /context history
# Output:
# Time Event Tokens Saved
# ----------------------------------------------------------------------
# 2024-01-01T12:00:00 overflow_detected 45,000 -
# 2024-01-01T12:00:01 auto_compact 45,000 -15,000
# 2024-01-01T12:00:01 benefit_check 30,000 -
Context Stats
stats = manager.get_stats()
print(f"Model: {stats['model']}")
print(f"Utilization: {stats['utilization']*100:.1f}%")
print(f"History events: {stats['history_events']}")
print(f"Warnings: {stats['warnings']}")
CLI Stats Commands
# Show summary
> /context show
# Show token ledger
> /context stats
# Show budget allocation
> /context budget
Monitoring Integration
Events are included in monitor snapshots:
config = ManagerConfig(
monitor_enabled=True,
monitor_format="json",
)
# JSON snapshots include:
# - optimization_history
# - estimation_metrics
# - warnings
Debugging Tips
- Check history after issues - See what optimizations ran
- Look for reverts - Compression not beneficial
- Monitor utilization - Track context growth
- Review warnings - Early overflow indicators