Skip to main content

Context window optimization for AI agents. Zero dependencies.

Project description

antaris-context

Zero-dependency context window optimization for AI agents.

Manage context windows, token budgets, turn lifecycle, and message compression without external dependencies. Integrates with antaris-memory for memory-informed priority boosting and antaris-router for adaptive budget allocation. Built for production AI agent systems that need deterministic, configurable context management.

PyPI Tests Python 3.9+ License


Install

pip install antaris-context

Quick Start

from antaris_context import ContextManager

# Initialize with a token budget and template
manager = ContextManager(total_budget=8000, template="code_assistant")

# Add conversation turns
manager.add_turn("user", "How do I add JWT auth to my Flask API?")
manager.add_turn("assistant", "Use flask-jwt-extended. Here's a minimal example...")

# Check usage
print(f"Turns: {manager.turn_count}")
report = manager.get_usage_report()
print(f"Used: {report['total_used']}/{report['total_budget']} tokens ({report['utilization']:.1%})")

# Render for your LLM provider
messages = manager.render(format="anthropic")   # Anthropic message format
messages = manager.render(format="openai")      # OpenAI message format
plain    = manager.render(format="raw")         # "role: content\n..." string

Token Budgets

Every ContextManager splits its total budget across four sections — system, memory, conversation, and tools. Built-in templates pre-allocate these for common patterns:

templates = ContextManager.get_available_templates()
# {
#   'chatbot':          {'system': 800,  'memory': 1500, 'conversation': 5000, 'tools': 700},
#   'agent_with_tools': {'system': 1200, 'memory': 2000, 'conversation': 3500, 'tools': 1300},
#   'rag_pipeline':     {'system': 600,  'memory': 1000, 'conversation': 4500, 'tools': 1900},
#   'code_assistant':   {'system': 1000, 'memory': 1800, 'conversation': 4000, 'tools': 1200},
#   'balanced':         {'system': 1000, 'memory': 2000, 'conversation': 4000, 'tools': 1000},
# }

manager = ContextManager(total_budget=8000, template="agent_with_tools")
manager.apply_template("rag_pipeline")  # Switch template mid-session

Add content to sections with priority levels:

manager.add_content('system', "You are a coding assistant.", priority='critical')
manager.add_content('memory', "User prefers Python examples.", priority='important')
manager.add_content('conversation', messages, priority='normal')
manager.add_content('tools', long_debug_output, priority='optional')

# Priority levels:
# critical  — never truncated (system prompts, safety rules)
# important — removed only when necessary
# normal    — standard selection (conversation history)
# optional  — first to go when space is needed

Turn Lifecycle

Turns are the core unit of conversation management. Add turns, compact old ones, and render for any provider:

manager = ContextManager(total_budget=16000, template="agent_with_tools")

# Add turns from a conversation
for msg in conversation_history:
    manager.add_turn(msg["role"], msg["content"])

print(f"Turn count: {manager.turn_count}")

# Configure retention policy
manager.set_retention_policy(
    keep_last_n_verbatim=10,
    summarize_older=True,
    max_turns=100,
)

# Compact old turns (truncates to 120 chars by default)
removed = manager.compact_older_turns(keep_last=20)
print(f"Compacted {removed} turns")

# Plug in a real summarizer for semantic compression
def my_summarizer(text: str) -> str:
    # Call your LLM to summarize
    return "Summary: ..."

manager.set_summarizer(my_summarizer)
manager.compact_older_turns(keep_last=20)
# Older turns are now passed to my_summarizer instead of truncated

Rendering

render() produces provider-ready message lists. Use the format parameter (or the provider alias):

# Anthropic format — list of {"role": ..., "content": ...} dicts
messages = manager.render(format="anthropic")

# OpenAI format — same structure, ready for chat completions
messages = manager.render(format="openai")

# Raw format — plain text string "role: content\n..."
plain = manager.render(format="raw")

# Inject a system prompt
messages = manager.render(format="openai", system_prompt="Be concise.")

Sliding Window

get_sliding_window() returns the most recent turns without mutating state — a lightweight read-only view:

# Get the last 5 turns
recent = manager.get_sliding_window(max_turns=5)
# [{"role": "user", "content": "..."}, {"role": "assistant", "content": "..."}]

# Use it for a focused context window before an API call
for turn in recent:
    print(f"{turn['role']}: {turn['content'][:80]}")

Trim to Budget

trim_to_budget() prunes section content (lowest priority first) until the total token count is within the target:

manager.add_content('system', system_prompt, priority='critical')
manager.add_content('conversation', long_history, priority='normal')
manager.add_content('tools', tool_output, priority='optional')

# Hard-cap total tokens at 4000
freed = manager.trim_to_budget(max_tokens=4000)
print(f"Freed {freed} tokens")
# 'optional' items are dropped first, then 'normal', then 'important'
# 'critical' items are never removed

Overflow Cascade

When a section exceeds its budget, cascade_overflow() borrows unused slack from other sections:

manager.add_content('tools', very_long_tool_output, priority='normal')

if manager.is_over_budget():
    redistributed = manager.cascade_overflow('tools')
    print(f"Borrowed {redistributed} tokens from other sections")

Adaptive Compression

The optimize_context() method applies multi-stage compression — content-level compression, priority-aware truncation, and section rebalancing — to hit a target utilization:

result = manager.optimize_context(query="JWT authentication", target_utilization=0.85)

print(f"Success: {result.success}")
print(f"Tokens saved: {result.tokens_saved}")
print(f"Compression ratio: {result.compression_ratio:.2f}")
print(f"Actions: {result.actions_taken}")

Set compression levels and selection strategies:

manager.set_compression_level('aggressive')  # light, moderate, aggressive

manager.set_strategy('hybrid', recency_weight=0.4, relevance_weight=0.6)
manager.set_strategy('recency', prefer_high_priority=True)
manager.set_strategy('budget', approach='balanced')

Track usage patterns over time and let budgets adapt automatically:

manager.enable_adaptive_budgets(target_utilization=0.85)
manager.track_usage()

suggestions = manager.suggest_adaptive_reallocation()
if suggestions:
    for section, budget in suggestions['suggested_budgets'].items():
        current = suggestions['current_budgets'][section]
        print(f"{section}: {current} -> {budget} tokens")

manager.apply_adaptive_reallocation(auto_apply=True)

Relevance Scoring

Content can be scored for relevance against a query, so the most relevant items survive compression:

# Add content with a query for relevance-based selection
manager.add_content('conversation', messages, query="JWT authentication Flask")

# The hybrid strategy weighs recency and relevance together
manager.set_strategy('hybrid', recency_weight=0.4, relevance_weight=0.6)

The ImportanceWeightedCompressor scores items on five axes — recency, priority label, explicit importance score, message role, and content density — then keeps top-N verbatim, compresses middle items, and drops low-scorers:

from antaris_context import ImportanceWeightedCompressor

iwc = ImportanceWeightedCompressor(keep_top_n=5, compress_middle=True, drop_threshold=0.1)
result = iwc.compress_items(content_items)
# result["kept"]       — items kept verbatim
# result["compressed"] — items with condensed content
# result["dropped"]    — items removed entirely
# result["tokens_saved"]

The SemanticChunker splits text at sentence and paragraph boundaries with configurable chunk sizes:

from antaris_context import SemanticChunker

chunker = SemanticChunker(min_chunk_size=100, max_chunk_size=500)
chunks = chunker.chunk(long_text)
for chunk in chunks:
    print(f"[{chunk.chunk_type}] importance={chunk.importance_score:.2f}  {chunk.content[:60]}...")

Suite Integration

Memory-informed priority boosting

Connect antaris-memory so that optimize_context() automatically boosts content items matching recent memory hits:

from antaris_context import ContextManager
from antaris_memory import MemorySystem

mem = MemorySystem("./workspace")
mem.load()

manager = ContextManager(total_budget=8000)
manager.set_memory_client(mem)
# optimize_context() now elevates items that overlap with memory search results

Router-driven budget adaptation

Accept hints from antaris-router to shift section budgets and target utilization on the fly:

from antaris_router import Router

router = Router(config_path="./config")
result = router.route(user_input)

manager.set_router_hints(result.routing_hints)
# Hints like {'boost_section': 'tools', 'target_utilization': 0.7}
# shift 10% of total budget to the boosted section automatically

Compression Utilities

from antaris_context import MessageCompressor

compressor = MessageCompressor('moderate')  # light, moderate, aggressive

# Compress a single string
compressed = compressor.compress(long_text)

# Compress a list of message dicts
compressed_msgs = compressor.compress_message_list(messages, max_content_length=500)

# Compress tool output (keep first/last N lines)
output = compressor.compress_tool_output(long_output, max_lines=20, keep_first=10, keep_last=10)

# Check stats
stats = compressor.get_compression_stats()
print(f"Saved {stats['bytes_saved']} bytes ({stats['compression_ratio']:.1%})")

Large inputs (>2 MB) trigger a warning — chunk before compressing for best performance.


Cross-Session Snapshots

Save and restore full context state (including content) across sessions:

# Export to a JSON-serializable dict
snapshot = manager.export_snapshot(include_importance_above=0.5)

# Reconstruct a new manager from the snapshot
manager2 = ContextManager.from_snapshot(snapshot)

# In-process structural snapshots (lightweight, no content)
manager.save_snapshot("pre-refactor")
manager.restore_snapshot("pre-refactor")

for info in manager.list_snapshots():
    print(info['name'])

Context Analysis

analysis = manager.analyze_context()
print(f"Efficiency score: {analysis['efficiency_score']:.2f}")

for section, data in analysis['section_analysis'].items():
    print(f"{section}: {data['utilization']:.1%}{data['status']}")

for suggestion in analysis['optimization_suggestions']:
    print(f"  - {suggestion['description']}")

Complete Agent Example

from antaris_context import ContextManager

manager = ContextManager(total_budget=8000, template="code_assistant")

# System prompt (never truncated)
manager.add_content('system',
    "You are a coding assistant. Always provide working examples.",
    priority='critical')

# User memory
for memory in ["User is learning Python", "Prefers concise explanations"]:
    manager.add_content('memory', memory, priority='important')

# Conversation turns
for turn in conversation_history:
    manager.add_turn(turn["role"], turn["content"])

# Compact if needed
if manager.is_over_budget():
    manager.compact_older_turns(keep_last=20)

# Hard-trim to budget
manager.trim_to_budget(max_tokens=7500)

# Optimize to target utilization
result = manager.optimize_context(query=current_query, target_utilization=0.85)

# Render for your provider
messages = manager.render(format="openai")
response = openai_client.chat.completions.create(model="gpt-4o", messages=messages)

Configuration File

{
  "compression_level": "moderate",
  "strategy": "hybrid",
  "strategy_params": {
    "recency_weight": 0.4,
    "relevance_weight": 0.6
  },
  "section_budgets": {
    "system": 1000,
    "memory": 2000,
    "conversation": 4000,
    "tools": 1000
  },
  "truncation_strategy": "oldest_first",
  "auto_compress": true
}
manager = ContextManager(config_file="config.json")
manager.set_compression_level("aggressive")
manager.save_config("updated_config.json")

Token Estimation

Uses character-based approximation (~4 chars/token). Fast and sufficient for budget management. For exact counts, plug in your model's tokenizer:

import tiktoken
enc = tiktoken.encoding_for_model("gpt-4o")
manager._estimate_tokens = lambda text: len(enc.encode(text))

What It Doesn't Do

  • No actual tokenization — character-based approximation. Plug in your tokenizer for exact counts.
  • No LLM calls — purely deterministic. The pluggable set_summarizer() is optional; without it, compaction is structural only.
  • No content generation — selects, compresses, and truncates existing content. Won't paraphrase.
  • No distributed contexts — manages single context windows. For multi-agent scenarios, use multiple managers.

Running Tests

git clone https://github.com/Antaris-Analytics/antaris-context.git
cd antaris-context
python -m pytest tests/ -v

All 150 tests pass with zero external dependencies.


Part of the Antaris Analytics Suite — v3.0.0

License

Apache 2.0 — see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

antaris_context-3.1.0.tar.gz (60.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

antaris_context-3.1.0-py3-none-any.whl (47.0 kB view details)

Uploaded Python 3

File details

Details for the file antaris_context-3.1.0.tar.gz.

File metadata

  • Download URL: antaris_context-3.1.0.tar.gz
  • Upload date:
  • Size: 60.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for antaris_context-3.1.0.tar.gz
Algorithm Hash digest
SHA256 8e9bf86bf975cde2cc99a2082e71aa9c49f51c5c899f290f5e13ca52cc71c36c
MD5 fefe8c89910bf75d424a079167bb3eb3
BLAKE2b-256 d95f5828f942480c846d9ec5f5961f66fe5f46e42b0bc275db3ecbce840a6930

See more details on using hashes here.

File details

Details for the file antaris_context-3.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for antaris_context-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9642cca9a48b162505486de5dadb14b99580b0715d98565f00d3900a5f3d1f2f
MD5 15a651053447b194fa4ac77c187ff2f6
BLAKE2b-256 45375518944ee205d38d7fec36c7101836de3bc4c625ebff066003167061812b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page