Build, Buy, or Wire Together — How Mid-Market Firms Actually Make This Call
For mid-market firms, the right answer is almost always wire-together — and here's how to tell when it isn't.
When a Nebraska manufacturer or credit union or commercial insurance agency is ready to move on a specific AI workflow, the first real decision is how to build the thing. This usually gets framed as “build vs. buy” — do we build a custom solution or buy a platform? The framing is incomplete. There are three options, and the one that goes unspoken is usually the one that makes the most sense for a mid-market firm: wire together.
Wire-together means assembling a working solution from existing services, APIs, and tools — a model API here, a document parser there, a light orchestration layer to connect them, integrated into whatever system the team is already using — without building a custom application from scratch and without buying a bundled platform that tries to do everything. Most of the AI workflow tooling that’s in production at mid-market firms in Nebraska and similar markets looks like this, because the alternative options have specific failure modes at this scale that wire-together avoids.
The three options for any given workflow
Build from scratch means developing a custom application — writing the code, building the infrastructure, managing the model hosting or API integration, and maintaining the full stack. You control everything. You also own everything, which means every bug, every scaling problem, every compliance audit of the system, and every change request from operations goes through your development team or your outside development partner.
Buy a platform means purchasing a software product — often sold as a vertical AI solution for your industry — that bundles the model, the interface, the workflow logic, and the integration layer into a packaged product. You configure it rather than build it. The vendor manages the infrastructure. The tradeoff is that the platform does what the platform does, and your ability to customize is limited to what the vendor has anticipated.
Wire together means assembling a solution using the APIs and services that best fit each component of the workflow. The language model comes from a model provider. The document parsing comes from a specialized extraction service. The integration into your ERP or AMS comes through the API that system already exposes. An orchestration layer — often a simple script or a lightweight framework — connects the components and handles the business logic. The result is a working solution that you own and can modify, built at a fraction of the cost of a fully custom application.
The right choice depends on the specific workflow, the firm’s existing infrastructure, the regulatory context, and the realistic options on the market. It’s not the same answer for every problem.
Why buying a platform is rarely the right answer at mid-market scale
Platform vendors in the AI space typically solve a real problem: they make it easy to get something deployed quickly without building anything. The tradeoff emerges over time.
The first tradeoff is fit. Platforms are built for a general version of your workflow, not your specific workflow. A commercial insurance platform might handle submission intake well for standard ACORD forms from large national brokers. It may handle your regional broker’s non-standard PDFs poorly, or not at all, because that’s not the customer profile the platform was designed around. A mid-market manufacturer who runs a mix of job-shop and production work may find that the platform’s quoting module assumes a production-shop model and requires significant workarounds for job-shop logic.
The second tradeoff is cost at scale. Platform pricing is usually per-seat or per-transaction, which means cost scales with usage. At a large enterprise, the platform’s cost is a small percentage of the productivity it enables and the vendor’s support infrastructure is genuinely valuable. At a 40-person agency or a 200-person manufacturer, the per-seat economics often produce a monthly bill that’s hard to justify relative to the actual value being delivered, especially when the fit is imperfect.
The third tradeoff is dependency. When the workflow’s logic lives inside the platform’s black box, changing the workflow requires the vendor’s cooperation or a new configuration option the vendor hasn’t built yet. The firm’s ability to adapt the tool to changing business conditions is limited by the vendor’s roadmap. For workflows that are stable and generic, this is manageable. For workflows that are specific to the firm’s competitive positioning — the pricing model, the customer segmentation logic, the risk-flagging criteria — locking that logic inside a platform is a long-term constraint.
This doesn’t mean platforms are never the right answer. For standard, well-defined workflows where multiple mature products exist and the firm doesn’t need to differentiate on that workflow, a platform is a reasonable choice. The question is whether the specific workflow is standard enough for the platform to fit without significant compromise.
When build-from-scratch actually makes sense
Build-from-scratch is the right call in a narrow set of circumstances.
The first is when the workflow is genuinely novel and no existing tool or assembly of tools can handle it. A firm with a proprietary process that doesn’t map to anything on the market — a custom risk-scoring model, a specialized extraction format that no parser handles well, an integration requirement that none of the available APIs support — may actually need custom development. These situations are less common than they’re often presented as being.
The second is when the workflow touches data that can’t be sent to an external model provider — either for regulatory reasons, contractual reasons, or security policy. A hospital system running patient data through a workflow has HIPAA constraints that may require on-premise model hosting or a specific cloud environment with a BAA. A defense contractor may have classification requirements that rule out standard model APIs. For most Nebraska mid-market firms — insurance, banking, manufacturing, agribusiness — these constraints are narrower than they might appear and can often be addressed by choosing the right model provider rather than building a custom model.
The third circumstance is when the firm has the development capacity in-house and the workflow is important enough to justify the ongoing maintenance burden. A 500-person manufacturer with a software development team that’s already maintaining custom ERP integrations may find that adding a custom AI workflow is a reasonable extension of their existing capability. The ongoing cost of ownership is the determining factor, not the initial build.
Build-from-scratch is expensive to start and expensive to maintain. The cases where it’s clearly the right choice are narrower than most buyers assume when they first start thinking about the options.
The wire-together default and how to do it without making a mess
Wire-together is the default for mid-market AI workflows because it hits the right tradeoffs on cost, fit, and ownership.
The cost is lower than build-from-scratch because you’re assembling existing services rather than building components from scratch. The model API is a commodity. The document parser is a specialized service someone else has built and maintains. The integration layer is a few hundred lines of code rather than a full application. The total engineering investment is weeks, not months.
The fit is better than a platform because you’re selecting the best component for each part of the workflow rather than accepting the platform’s choices. If the best document parser for your specific document type is different from the one the platform uses, you use the better one. If your ERP integration requires a specific API pattern that the platform doesn’t support, you write the integration yourself.
The ownership is better than either alternative because the logic is in your code, not the platform’s configuration. The prompts are versioned in your repository. The integration to your ERP uses your credentials and your API access. When the workflow needs to change, the change is in your code.
The risk in wire-together is making a mess of the assembly. The components are loosely coupled by default, which means the connections can break, the error handling can be inconsistent, and the observability — knowing what’s happening inside the system when something goes wrong — can be poor if it’s not built in from the start.
Avoiding that outcome requires a few specific practices. Error handling at each connection point, not just at the ends. Logging that captures enough context to diagnose failures without capturing data that shouldn’t be logged. Naming conventions for every component — the prompts, the scheduled jobs, the integration endpoints — that describe what they do rather than when they were built. A runbook that covers the common failure modes and what to do about each one. These aren’t exotic requirements. They’re the same disciplines that make any software integration maintainable.
The decision rubric
For a specific workflow, the decision follows this logic:
Start with the wire-together assumption. Can this workflow be assembled from existing services — a model API, a parser, an integration layer — at a cost and timeline that fits the firm’s situation? If yes, that’s the default path.
Test against platforms. Is there a mature platform in this space that handles this workflow well without significant compromise on fit? If the platform fits and the pricing is reasonable at the firm’s scale, evaluate whether the ownership tradeoff is acceptable for this specific workflow. For workflows that are generic and stable, platforms are worth considering. For workflows that are specific to the firm’s competitive position or likely to change as the business evolves, prefer wire-together.
Build from scratch only when the first two options are genuinely unavailable — when the workflow is novel enough that no existing tool or assembly fits, when data constraints rule out external services, or when the firm’s in-house development capacity makes it a natural choice.
The rubric isn’t complicated. Most mid-market firms default toward platforms because platforms are easy to buy and easy to explain to a board. The discipline is applying the rubric honestly rather than buying a platform and then spending the next year working around its limitations.
For more on how Blue Sage structures the tool-selection conversation at the start of each engagement, see how we work.