Lenses
Specialists beat a generalist
A focused agent with one concern catches what a single broad prompt misses; you define the panel.
Contracts, proposals and filings get reviewed in parallel by specialized agents: technical, business, compliance. The findings merge into one report.
Every contract and filing deserves technical, commercial and compliance eyes. What it gets is whoever had time, whenever that was.
The panel is yours to define; the mechanics are the platform's to run.
01
Each agent gets one lens: technical, business, compliance, yours to define.
02
Agents read the same document in parallel, grounded in its text.
03
Findings collect into one report with each agent's evidence.
04
A person reads one report instead of chairing three reviews.
The same reason human review works that way: focus finds what breadth skims over.
Lenses
A focused agent with one concern catches what a single broad prompt misses; you define the panel.
Parallel
Reviewers run concurrently on local hardware, so a three-lens panel costs the time of the slowest lens.
Evidence
Each finding cites the passage that triggered it, so disagreement is settled by the document.
Each reviewer is an agent with a persona; the orchestrator runs them together and collects the results.
using LMKit.Agents;
using LMKit.Model;
var model = LM.LoadFromModelID("qwen3.5:9b");
var technical = Agent.CreateBuilder(model)
.WithPersona("Review for technical gaps and undefined terms.")
.Build();
var business = Agent.CreateBuilder(model)
.WithPersona("Review commercial terms against our policies.")
.Build();
var compliance = Agent.CreateBuilder(model)
.WithPersona("Review for regulatory and residency issues.")
.Build();
var orchestrator = new ParallelOrchestrator()
.AddAgent("Technical", technical)
.AddAgent("Business", business)
.AddAgent("Compliance", compliance);
var results = await orchestrator.ExecuteAsync(reviewPrompt);
The panel is orchestration over documented building blocks, each usable on its own.
Panel
Parallel, pipeline and supervisor orchestrators for agents that work together.
How orchestration worksRouting
Supervisors that hand work to the right specialist and collect the results.
How delegation worksShape
Review flows beyond a straight line: branches, joins and conditions.
How graphs workEvidence
Every agent's reads, findings and reasoning on the record, so the merged report can cite its sources.
How observability worksBecause attention is a budget. A reviewer told to check everything checks nothing thoroughly; three specialists each reading with one mandate, technical, commercial, regulatory, surface findings a generalist pass smooths over.
Yes. The parallel orchestrator fans the document out to every specialist at once and collects their findings, so panel review takes one specialist's time, not the sum of all of them. On your hardware, the extra passes cost no per-token fees.
A merge step collects each agent's findings with their evidence, and observability keeps every read and conclusion on the record, so the combined report cites which reviewer found what, where.
Yes. Every reviewer runs on your infrastructure, so contracts and filings never reach a third party. Embed the panel with LM-Kit.NET, or serve it from LM-Kit One when several teams share it.
Private Document Intelligence