Model the brand once
Brand, ICP, product catalogue, tone and legal constraints become related objects instead of a four-thousand-token preamble pasted in front of every call.
Use case 01 of 28
research → strategy → campaign → script → post → video
One campaign passes through six agents. Each is handed the brand book, the ICP, the product catalogue and the tone rules again, because the previous agent's output does not carry them. Your customer pays once for the campaign. You pay six times for the same brand knowledge.
Where the spend goes
This is the shape of the problem in AI content platforms: a pipeline where each step re-establishes context the previous step already had.
What we do here
Brand, ICP, product catalogue, tone and legal constraints become related objects instead of a four-thousand-token preamble pasted in front of every call.
The researcher resolves market and ICP. The scriptwriter resolves voice, product claims and legal limits. The video agent resolves asset rules. No stage receives the other stages' context.
The strategy agent's choices — angle, audience, promise — are written back as facts. Later stages read those facts instead of re-deriving them from raw brand text.
Cost per generated asset is measured per step, so you can see which stage is expensive and whether a model downgrade there is safe.
The context each agent gets
Each one is a set of objects with relations, not a section of a prompt. An agent asks for what its task needs and receives that much.
The layer underneath
Most AI products keep business knowledge as prompt text — long strings pasted in front of every call. Text has no structure, so nothing can be selected out of it. The only available move is to send all of it, every time. ensemble models the same knowledge as objects with typed attributes and explicit relations, and objects can be queried.
A prompt preamble
Everything the agent might need, concatenated and re-sent. It cannot be narrowed, because there is nothing in a paragraph to select on. Cost grows with how much your business knows.
A resolved context
Exactly the objects this agent needs for this task, assembled at call time. Cost grows with the complexity of the task, which is the thing your customer is actually paying for.
What the thing is — a product, an account, a campaign, a policy, a prior decision.
Who it belongs to — this tenant, this customer, this department, or everyone.
When it was true, what superseded it, and which version applied at the moment in question.
Validated fact, inference, or unverified claim — so an agent knows what it is standing on.
Which kind of task the fact is actually useful for. Most knowledge is irrelevant to most tasks.
Multidimensional means every object carries those five axes at once, and a request resolves along all of them. In AI content platforms, that is the difference between sending the whole business and sending 6 kinds of fact, filtered to the task in front of the agent.
How it integrates
No model change, no framework migration, no rewrite of your agents. The only thing that changes is where the context comes from.
Audit
You send 100 production runs. We measure token usage per agent, how much of it is repeated business knowledge, and what a completed task costs today. Read-only — nothing is integrated yet.
No integration · Free
Model
We build the object model of your business logic from what you already have — databases, documents, existing prompts and the production runs themselves. This is where the pipeline below earns its keep.
Weeks, not quarters
Route
Replace the place where your agents assemble context with one resolve call. Run it side by side with your current prompt first — same outputs, fewer tokens — then cut over.
Shadow mode first
const context = await ensemble.resolve({
agent: "scriptwriter",
task: "draft_video_script",
subject: { campaign: q3-launch },
});
// context.block is the resolved business knowledge —
// typically a fraction of what you send today.
const answer = await model.complete({
system: context.block,
messages,
});
// every resolution is metered
context.usage; // { tokensIn, baseline, saved }Who builds it
25+
Years building complex systems where the business logic — not the interface — was the product
Structuring a company's knowledge into objects that an agent can query is not a prompt-engineering exercise. It is domain modelling, and doing it by hand is why most teams never get past a prompt preamble.
We built an automated pipeline for it. It reads a product — its code, its data, its documents and its actual production runs — and produces a visual model of the business logic inside: the entities, the rules, the relations and the places where agents are re-deriving something the system already knows.
That model is the deliverable you can look at and argue with, and it is also the thing your agents resolve against. Both come out of the same pipeline, which is why the timeline is weeks rather than a consulting engagement.