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 worksPrivate Document Intelligence