Trajbl

Keep the evidence. Drop the noise.

Trajbl sits between retrieval and the LLM. It receives a retrieved context pool, keeps complete evidence sentences, and builds a compact packet that the model can answer from.

How Trajbl compresses retrieved context into a compact evidence packet while preserving whole evidence sentences
Open the graphic for full-resolution detail.
+72%relative F1 lift vs LLMLingua2controlled long-context benchmark, similar token budget
~88%context token reductionmeasured against full-context RAG reference
68%RAG quality retainedwhile sending a much smaller context packet
0GPU/model dependencyTrajbl compression is CPU-first and model-free
Pipeline role

Trajbl is not trying to replace retrieval.

Good compression needs a good input pool. The fair production setup is: existing retriever top50 to Trajbl to LLM. That is why the benchmark compares Trajbl and LLMLingua2 over the same vector, hybrid, and BGE-reranked retrieval setups.

01

Retrieve

Your existing RAG stack finds candidate messages, chunks, notes, or documents.

02

Rank or fuse

Optional vector, hybrid RRF, or BGE reranking creates a stronger top50 context pool.

03

Compress with Trajbl

Trajbl keeps a small source-traceable packet of complete evidence sentences.

04

Answer

The LLM reads less context while preserving the facts most likely to answer the question.

Controlled benchmark signal

Trajbl beat LLMLingua2 on quality-per-token.

Full-context RAG remains the quality ceiling. Trajbl's job is to preserve much of that answer quality while sharply reducing the context packet. In the measured long-context comparison, Trajbl retained more quality than LLMLingua2 at a similar token budget.

Trajbl vs LLMLingua2Higher quality, lower tokens is better
Full RAG referenceQuality
0.587 F1Tokens
10,593
TrajblQuality
0.400 F1Tokens
1,313
LLMLingua2Quality
0.233 F1Tokens
1,405
Baseline comparison

Model-free Trajbl against model-based compressors.

Trajbl remained ahead of LLMLingua2 and LongLLMLingua-style compression in the measured long-context signal.

Against stronger compression baselinesObjective F1 comparison
Trajbl
0.398 F1
LLMLingua2 q-aware
0.238 F1
LongLLMLingua-7B
0.197 F1
Evidence integrity

Selection at sentence level keeps the packet readable.

Whole sentences

Selected evidence remains readable and verbatim instead of becoming disconnected token fragments.

Context-aware

The selector balances relevance, answer cues, and evidence coverage while keeping implementation details proprietary.

Source-linked

The retained packet can preserve a trace back to the documents or messages that supplied it.

CPU-first

Trajbl is a local preprocessing layer and does not require a GPU or hosted compression model.