Blog · Essay · build vs buy vs integrate

When “Just Use ChatGPT” Breaks Down: A CEO’s Guide to Build vs Buy vs Integrate

Business People
"Business People" by Direct Media is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.

When Pine Labs Taps Google Cloud to Build Agentic AI Infrastructure – Fintech Singapore made headlines, many CEOs assumed the answer was simple: plug a large‑language model (LLM) into the existing stack and watch productivity soar. In practice, that shortcut often trips over hidden process constraints, data hygiene gaps, and governance blind spots.

I’ve spent the last decade shipping more than 30 startups, sitting at the intersection of product, engineering, and compliance. The lesson that repeats itself, whether you’re a fintech, a logistics platform, or a B2B SaaS, is that build vs buy vs integrate is not a strategic checkbox—it’s a day‑to‑day execution decision. Below I walk through what broke on a recent client redesign, the diagnostic lenses I use on a Monday morning, and a concrete checklist you can run with your team this week.


1. The “Just Use ChatGPT” Myth

A senior manager at a mid‑market payments firm asked us to replace a manual reconciliation step with a ChatGPT‑powered assistant. The idea sounded attractive: a few prompts, an API key, and the bot would read transaction logs, match them to invoices, and flag mismatches. Within two weeks the prototype was live, but the error rate was double the manual baseline, and the compliance team started receiving alerts about data leakage.

What went wrong?

  1. Process granularity – The reconciliation workflow involved conditional logic that changed based on jurisdiction, currency, and contract type. A generic LLM could not capture those nuances without extensive prompting engineering.
  2. Data quality – The source logs contained inconsistent timestamps and missing fields. The LLM hallucinated values when the input was malformed.
  3. Governance – No audit trail existed for the model’s decisions, violating the ISO 27001 controls we had instituted for the organization.

The result was a costly rollback and a week of fire‑fighting. The team learned that a “just plug‑in” approach ignores three pillars: process fidelity, data readiness, and governance.


2. The Three Decision Axes

When you stand at the crossroads of build vs buy vs integrate, ask yourself three concrete questions:

AxisBuildBuyIntegrate
ControlFull ownership of model architecture, data pipelines, and compliance.Vendor‑managed updates, limited customisation.Leverage existing vendor APIs while retaining internal orchestration.
SpeedMonths to a year, depending on talent and scope.Weeks to months for a SaaS contract and onboarding.Days to weeks for API wiring, but requires internal glue code.
RiskTechnical debt, talent scarcity, security exposure if not done right.Vendor lock‑in, SLA dependence, data residency constraints.Hybrid risk: you inherit vendor risk while managing integration complexity.

The optimal choice often sits in the middle – a hybrid integration that uses a vetted vendor model but wraps it in a custom orchestration layer that enforces your process rules and audit requirements.


3. A Real‑World Playbook: From Failure to Fix

3.1 Diagnose the Failure (Monday Morning)

  1. Map the end‑to‑end workflow – Use a simple swim‑lane diagram. Identify decision points, data hand‑offs, and compliance gates.
  2. Audit the data – Run a quick data‑quality script (think of the open‑source tools from the recent HN posts on data quality frameworks). Flag missing fields, inconsistent formats, and PII exposure.
  3. Check governance coverage – Verify that every automated step has a logging hook, role‑based access, and an audit‑ready output.

3.2 Choose the Path Forward

*If the workflow is highly regulated and the decision logic is complex*, build a lightweight model in‑house that can be audited line‑by‑line. Use an MLOps platform that integrates with your existing CI/CD pipeline.

*If the core AI capability is standard (e.g., sentiment analysis, document summarisation) and the data is clean*, buy a SaaS offering that already meets ISO 27001 and GDPR standards. Negotiate a data‑processing addendum that gives you visibility into model updates.

*If you need a mix* – for example, a vendor‑provided LLM for language generation but you must enforce domain‑specific validation – integrate. Wrap the vendor API in a micro‑service that applies your business rules, logs every request, and surfaces a compliance‑ready audit trail.

3.3 Execution Checklist (What to Do This Week)

  • Define a “gate”: before any AI call reaches production, the request must pass a validation schema (JSON schema, type checks).
  • Implement a logging middleware: capture input, output, latency, and user ID. Store logs in an immutable bucket.
  • Set up a data‑quality monitor: run a daily checksum on the source tables; raise an alert if the error‑rate exceeds a threshold.
  • Create a rollback plan: a one‑click switch to revert to the legacy manual process.
  • Run a security audit: engage an ISO 27001 lead auditor (or use your internal audit team) to verify that the AI component does not introduce new attack vectors.

4. The Hidden Cost of “Just Use” – Talent and Maintenance

Even after you pick a path, the hidden work begins. A vendor LLM may be easy to call, but you still need:

  • Prompt engineers who can translate business rules into reliable prompts.
  • Data stewards who keep the training data fresh and compliant.
  • Ops engineers who monitor latency spikes and cost overruns.

In my experience, teams that underestimate these roles end up with a “pilot that never scales.” The budget line item for “LLM subscription” balloons, while the real cost – people time – stays invisible.


5. Governance, Security, and the ISO 27001 Lens

Because I’m an ISO 27001 Lead Auditor, I always frame AI decisions against the A.5 Information Security Policies and A.12 Operational Security controls. Two practical steps:

  1. Asset classification – Tag every AI model, dataset, and API as “confidential,” “restricted,” or “public.” Apply encryption at rest and in transit accordingly.
  2. Change management – Any model update (fine‑tuning, version bump) must go through the same change‑request workflow as a code change, with peer review and documented rollback.

These controls turn a “nice‑to‑have” AI experiment into a business‑critical capability that can survive audits and board scrutiny.


6. When to Walk Away

Sometimes the best decision is not to add AI at all. If the process you’re trying to automate has a highly variable human judgment component (e.g., legal opinion, strategic partnership assessment), the risk of model drift and reputational damage outweighs the efficiency gain. In those cases, focus on decision‑support dashboards rather than full automation.


7. FAQ

How do I decide between building and buying when time‑to‑market is critical?

Start with a minimum viable integration: use a vendor API wrapped in a compliance layer. If the pilot shows that you need deeper customisation, iterate toward a bespoke build.

What data quality checks are essential before feeding data to an LLM?

Validate schema conformity, remove PII, ensure timestamp consistency, and run a duplicate‑record detector. Simple open‑source tools like SodaGPT can automate the first pass.

Does integrating a third‑party model compromise ISO 27001 compliance?

Not if you treat the integration as a controlled asset: encrypt the data in transit, log every request, and include the vendor in your supplier risk register.

How much of my team should be dedicated to prompt engineering?

Allocate at least 10 % of the AI project budget to prompt engineers in the first three months. Their work reduces downstream error‑handling costs dramatically.

When is it acceptable to let the model “learn” from production data?

Only after you have a data‑governance framework that captures consent, versioning, and auditability. Uncontrolled learning can violate privacy regulations and erode model reliability.


8. Closing Thoughts & Next Steps

The “just use ChatGPT” shortcut is tempting, but the reality of enterprise workflow redesign demands a disciplined build vs buy vs integrate approach. Start by mapping your process, auditing your data, and applying the governance checklist above. Then decide which axis gives you the right balance of control, speed, and risk.

If you’d like to walk through this framework with your leadership team, I’m happy to have a brief discovery call. No sales pitch—just a focused conversation on how to make AI work for your specific operating model.

Book a conversation or explore more on my homepage.


*Related reading:*

FAQ

How do I decide between building and buying when time-to-market is critical?

Start with a minimum viable integration using a vendor API wrapped in a compliance layer. If the pilot shows you need deeper customisation, iterate toward a bespoke build.

What data quality checks are essential before feeding data to an LLM?

Validate schema conformity, remove PII, ensure timestamp consistency, and run a duplicate‑record detector. Simple open‑source tools like SodaGPT can automate the first pass.

Does integrating a third‑party model compromise ISO 27001 compliance?

Not if you treat the integration as a controlled asset: encrypt the data in transit, log every request, and include the vendor in your supplier risk register.

How much of my team should be dedicated to prompt engineering?

Allocate at least 10 % of the AI project budget to prompt engineers in the first three months. Their work reduces downstream error‑handling costs dramatically.

When is it acceptable to let the model “learn” from production data?

Only after you have a data‑governance framework that captures consent, versioning, and auditability. Uncontrolled learning can violate privacy regulations and erode model reliability.

In the market

Headlines this post is responding to — not invented stats.