A hybrid AI context gateway combining Headroom cloud compression and In-Place Local Test-Time Training (TTT).
Project description
Infinite Context Gateway
A hybrid Python library designed to handle massive amounts of text context by routing queries through two highly optimized, infinite-context engines:
- Cloud Engine: Compresses massive documents locally for free using the open-source
headroom-aialgorithm, and sends the smaller payload to commercial cloud LLMs (OpenAI, Anthropic, Groq). - Local Engine: Uses In-Place Test-Time Training (TTT) via DoRA to bake massive documents directly into the neural weights of local open-source models on your own GPU.
Installation
You can install the package directly from PyPI or GitHub. Choose the extras based on which engine you want to use.
For Cloud Engine (Lightweight, CPU only):
pip install "infinite-context-gateway[cloud]"
For Local Engine (Requires NVIDIA GPU & CUDA):
pip install "infinite-context-gateway[local]"
Usage
Option 1: Cloud Engine (Local Compression + Cloud LLM)
When you use the Cloud Engine, the gateway uses the open-source headroom-ai library to instantly compress your massive documents locally on your computer for free.
It then sends the shrunken document to a cloud provider like OpenAI, Groq, or Anthropic to answer the question. Because the document was compressed locally, you save massive amounts of money on API token costs!
Note: The api_key you provide here is for the Cloud Provider (like OpenAI or Groq), NOT for Headroom!
from infinite_context import ContextGateway
# Example: Using Groq's super-fast Llama 3 API
gateway = ContextGateway(
engine="cloud",
model_id="llama3-70b-8192", # Target model on Groq
api_key="your_groq_api_key_here", # The API key for the Cloud LLM provider
base_url="https://api.groq.com/openai/v1/chat/completions",
compression_ratio=0.8 # Compress the document by 80% locally
)
# Pass in a massive document and ask a question!
massive_document = "..."
response = gateway.chat("What is the failover protocol?", massive_document)
print(response)
Option 2: Local Engine (Test-Time Training)
When you use the Local Engine, the gateway bypasses the standard KV-Cache memory limits entirely.
Instead of putting the document into the prompt, it injects a fast PEFT DoRA adapter into a local model (like Qwen 0.5B) and trains the document directly into the neural weights over a few seconds.
This requires absolutely zero internet connection and no API keys.
from infinite_context import ContextGateway
# Loads the model in 4-bit precision into your GPU
gateway = ContextGateway(
engine="local",
model_id="Qwen/Qwen2.5-0.5B-Instruct",
load_in_4bit=True
)
response = gateway.chat("What is the failover protocol?", massive_document)
print(response)
Checkpoint Persistence
Because the local engine alters the neural weights, you can save the trained "Fast Weights" to your hard drive. You can then reload them days later and ask questions about the massive document without ever reading the document again.
# 1. Train the model on the document
gateway.chat("Summarise.", massive_document, keep_state=True)
# 2. Save the brain state
gateway.save_state("./memory_checkpoint")
# 3. Reload it later (zero retraining time)
new_gateway = ContextGateway(engine="local", model_id="Qwen/Qwen2.5-0.5B-Instruct")
new_gateway.load_state("./memory_checkpoint")
# Ask a question without passing the context!
answer = new_gateway.chat("What was the protocol?", context="")
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file infinite_context_gateway-0.1.1.tar.gz.
File metadata
- Download URL: infinite_context_gateway-0.1.1.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db581d2befe034a4fb3781f68e6886f37623f1457e65ba5ea81b3b9942c93723
|
|
| MD5 |
91c46fb8660d334fc3d591c570784a4e
|
|
| BLAKE2b-256 |
fe4307c859734923ed9f439372e44aa52a99b7f0f894bfead2c6323011163784
|
File details
Details for the file infinite_context_gateway-0.1.1-py3-none-any.whl.
File metadata
- Download URL: infinite_context_gateway-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e60c2e991cd7c5612f4294ed723825cd3e356fbf8fa912b5afa1c2f3803c31a
|
|
| MD5 |
3e6b464fba8bce021fa39f7603d9aec6
|
|
| BLAKE2b-256 |
c4e0089c6badaccc90de2d4ec2b7693d012e48cdc5f0fdb44d2cfb10a9550a50
|