Business professionals attempting to scale a concrete wall topped with razor wire, illustrating the security barrier facing firms adopting AI

A trend is emerging in the discovery calls I'm conducting with founders and operators in the professional services industry. They've been building. Eighteen months of experimenting: ChatGPT for first drafts, Claude for research, some automation flows cobbled together into a custom tool with Make, a few prompts, and some API calls. The productivity gains are real, their enthusiasm is genuine, and then someone on their team tries to connect one of those tools to an actual client file, and everything stops.

The AI Wall Professional Services Firms Are Hitting, and the Only Way Through It

They're not pumping the brakes due to technical reasons, but rather, the sudden realization that they don't actually know where that data goes.

That moment, that privacy wall, is the most important friction point in AI adoption for small professional services right now. And, it's not a capability gap; I'm seeing many firms adapting their systems in-house, in real time. The issue is the security of entrusted client data, whether financial, IP, or anything else that is remotely proprietary. At some point, they realize that sending client data through an LLM poses serious privacy and data security risks. And this concern sits between them, and where they're trying to take their business.

What Actually Happens When You Hit Send in a Chat Window

Every call to a frontier model, be it Claude, GPT-4o, Copilot, or Gemini, travels over an encrypted connection. TLS/HTTPS protects the data in transit so it can't be read as it moves across the network. That part is solid, but it's also not the problem. The problem is what happens at the other end.

To run inference, the receiving server has to decrypt and read your prompt in full. But the model can't process encrypted content; it needs to see the actual words, the actual structure, and the actual data you've sent. So the moment your prompt arrives at Anthropic's or OpenAI's infrastructure, it exists in plaintext on their systems, however briefly. Both providers' API policies currently state that API inputs are not used for model training by default, and enterprise agreements typically add contractual data handling commitments on top of that.

But even with those assurances, the simple fact is that the data has left your network. For a firm operating under confidentiality obligations, whether to clients, regulators, or both, that exposure is the issue. Not the intent of the provider. The fact of the transit.

The Chain Gets Longer Than You Think

Most small businesses aren't calling the API directly anyway. They're using third-party tools built on top of it: automation platforms, AI writing assistants, workflow builders. Each of those tools has its own data-handling policies, its own subprocessors, and its own security posture, which, let's get real, you probably haven't reviewed, because declining to use that tool means not using it. A document routed through a mid-tier SaaS automation tool on its way to an LLM may pass through three or four systems the business never examined. The chain of custody on that data is, at best, unclear. At worst, it's a compliance exposure you'd struggle to explain to a client or a regulator.

There's also a concentration risk to consider. Any system that receives and processes data is a potential breach surface. The major providers invest heavily in security, but a compromise of a widely used AI API affects every organization that runs through it. For a firm handling sensitive restructuring files, M&A due diligence, or HNW client records, the question shouldn't just be "is this secure" but "what's my exposure if it isn't."

Where Vibe-Coding Hits Its Ceiling

Most of those I speak to would be considered "non-technical"; those without a traditional tech background. These conversations have revealed a cohort of individuals building their own AI tools and then running into this wall in a very specific way: They can get to 60 or 70 percent of a useful internal system, proposal generators, calculation automations, and research summaries, using publicly available models and some creative prompting. These tools work well as long as they operate on generic inputs.

The moment those tools need to touch real client data, though, the builder faces a choice: accept the security risk, strip the AI layer out, or stop building. Most stop building. The technical knowledge required to architect a secure deployment is beyond the skill set or time commitment of someone who learned to build by chatting with Claude. There's nothing inherently wrong with that, but it is a real gap.

And as I see it, that gap is infrastructure.

Three Paths Through the Wall for SMEs

While none of the below are plug-and-play, none of them require an enterprise IT department either.

Local Model Deployment

The most accessible option: run the model on the firm's own hardware, and nothing leaves the building. Tools like Ollama allow open-source models, Llama, Mistral, Phi, to run entirely locally. The tradeoff is capability: these models are behind the frontier on complex reasoning tasks. For structured workflows like drafting, summarizing, and classifying, they're workable today and improving fast enough that the gap is closing.

Private Cloud Endpoints

For firms that need frontier-level model quality, private cloud deployment is the cleaner answer. Running a model within a dedicated cloud tenant, AWS Bedrock, Azure OpenAI Service, or Google Vertex AI, means data stays within infrastructure the business controls, with contractual data residency guarantees from the provider. It costs more than a standard API call, but the security posture is defensible to clients and regulators. For a firm in a regulated industry, that defensibility has real value.

Tokenization Middleware (Privacy-Enhancing Proxy)

This one sits between the two above, and it's probably the most elegant and practical of the three when it's built well. In this scenario, a local processing layer strips and replaces all sensitive identifiers before anything leaves the network. Client names, file numbers, and financial figures become anonymous placeholders. The anonymized version goes to the API; the intelligence returns; a local layer rehydrates the output with the real values.

The API never sees the actual data; it only sees its structure. Frontier model quality is preserved, and sensitive information stays contained. It requires custom engineering, but it's buildable today by anyone who can spec it clearly.

What's Coming (But Not Yet)

Confidential computing, hardware-isolated environments like Azure's confidential nodes or AWS Nitro Enclaves, will eventually allow frontier inference with cryptographic guarantees that even the cloud provider can't read the data during processing. That's where enterprise private AI is heading. It's not mainstream yet, and I wouldn't build a near-term deployment plan around it, but the infrastructure is underway.

The Firm Nobody's Building For

Enterprise organizations have IT departments and compliance teams to figure this out. Individual freelancers and hobbyists operating at low stakes don't need to. The gap is a place with no clean path forward: the 5-to-25-person professional services firm.

The one with real client obligations. Real confidentiality requirements. A principal who's been vibe-coding their own tools for the past eighteen months and has genuinely useful internal systems that can't touch the work that matters most.

The solution for that firm isn't another SaaS subscription or a consultant's roadmap. It's a natively deployed, privately hosted system built for that firm's specific workflows, installed on their own infrastructure, never touching a public API with sensitive data. Not rented or managed by a third party. Privately and internally owned and operated.

That's the build that's missing, and it's the one worth having long term.

What I'd Do If I Were a Professional Services Provider

If I were a principal at a 10-person real estate brokerage, accounting practice, or legal firm right now, here's how I'd think about it:

Start with the local model path. While it's not the best long-term answer, it proves the architecture. Get Ollama running on a machine in your office. Pick one structured workflow, like a document summary or a draft generator for a specific document type, and build it against a local model. If it works well enough to be useful, you've validated that the workflow is worth investing in.

From there, the upgrade path is clear: a private cloud endpoint for greater capabilities and a tokenization layer, if the workflow demands an extra layer of privacy and security. The order matters because it means you're building toward a deployment architecture, and not just evaluating if AI is useful to your organization. By now, you already know that it is; you're just figuring out how to own the infrastructure.

The businesses that close this gap first will have something the rest of the market is still trying to figure out. And that's a worthwhile long-term approach.


I've been building toward this problem directly, not just writing about it. My current internal project, My Digital Employee, is an early-stage locally deployed agent built to run natively within a private system. Right now, it still uses public APIs because data sensitivity is minimal, but it doesn't rely on any third-party data-handling services. All internal databases. It's the proof-of-concept for the architecture above, and it's shaping how I think about what a client-facing build looks like.

If you're a founder or operator in professional services who's hit this wall, I'd like to hear about your specific situation, a genuine conversation about where you're blocked and whether there's a build worth scoping. Reach me at simon@bottbottgenai.com or visit bottbottgenai.com.

Ready to have systems that actually work for you?

Book a free 30-minute strategy call. We will diagnose your biggest workflow pain point and see if there is a fit.

More from the blog

August 5, 2026 · 4 min read

Are You Renting a Template or Building Infrastructure?

How to avoid being a founder who trades long-term control for short-term convenience when adopting AI for your business.

Read more →