Skip to main content

Back to Insights Educational article

What AI Implementation Actually Costs in 2026

Most AI quotes I see in 2026 hide the same two costs: integration work and the API meter that runs forever. This is what the honest math actually looks like.

Last updated: May 24, 2026 AI Costs

~13 min read Reading time 7 Sections Data guide Data-rich article

01 The shape of a quote

Why a $40K quote and a $400K quote can both be honest

From the few of these we have deployed, the spread between a cheap and an expensive build is rarely about the AI. It is about how many other systems the AI has to touch. A chatbot that answers questions from a single PDF using Claude Sonnet 4.5 over the Anthropic API can ship in two weeks for under $30K. The same chatbot that has to read your Zendesk tickets, write back to HubSpot, escalate to a human in Slack and stay compliant with GDPR is six months of work and starts at $250K.

Both numbers can be defensible. Neither tells you which one fits your business. The cost of the LLM call is usually under 15% of either total. Everything else is plumbing, evaluation, security review and the awkward weeks where the product team and the data team argue about who owns the prompt.

02 Build cost by use case

What I actually see people pay in 2026

The ranges below come from the work we have shipped plus rough numbers I have heard from operators in the past year. They assume a partner who has built this category before. If you are doing it fully in-house with no prior LLM production experience, the dollar cost drops and the calendar cost roughly doubles. The pattern I keep seeing is that the cheap quotes leave out integration and the expensive quotes leave out the ongoing API spend. The honest version itemizes both. If you are also weighing which type of system to build, the breakdown in agents vs chatbots vs copilots is worth a read first.

MIT's Project NANDA reported in July 2025 that the GenAI deployments which did pay off cited 2 to 10 million dollars a year saved on customer service and document processing, the unglamorous end of the stack.

FIG. 01 – BUILD COST BY USE CASE (USD K) Initial build cost, mid-market in 2026

Single-doc Q&A chatbot $15K – $60K RAG over your knowledge base $35K – $180K Customer support agent (multi-system) $80K – $300K Document processing pipeline $40K – $220K Voice or phone agent $100K – $450K Custom multi-step agent $180K – $600K+

$0K $150K $300K $450K $600K

– A&M Flow project sample + public operator reports, 2026 USD.

03 The meter

Token costs are not the scary part. Volume is.

At the moment, Claude Sonnet 4.5 sits at $3 per million input tokens and $15 per million output on the Anthropic pricing page. GPT-5 and GPT-4o land in a similar zone per the OpenAI pricing page. Those numbers sound trivial until you do the multiplication. A support agent that handles 5,000 conversations a month with an average of 8,000 input and 1,500 output tokens per conversation runs about $120 input and $112 output, so $232 a month. The same agent at 200,000 conversations is closer to $9,300 a month. Same prompt, same model, three orders of magnitude difference in invoice.

Vendor quotes that bury this number inside a flat monthly fee are usually pricing for low volume and will renegotiate the moment you scale. Talking to operators in production, the same pattern repeats: month three is fine, month nine the invoice has tripled and nobody warned them. If your vendor quote does not itemize token spend separately from build cost, walk away. That is where projects bleed for years.

Quick token math

Budget roughly 1 cent per moderate Claude Sonnet 4.5 call (about 2K in, 500 out). Multiply by daily volume, then by 30. That is your raw API floor. Add 25% for retries, evals and the cron job somebody will set up at 3am six months in.

04 Infra and tooling

The boring monthly invoices nobody mentions

Beyond the LLM API, every production AI system carries a small zoo of supporting bills. A typical mid-market support agent runs something like: Pinecone serverless for vector storage at $50 to $300 a month, a Hetzner CCX33 dedicated vCPU box for the orchestration service at roughly €60 a month, Vercel Pro for the frontend at $20 per seat, an observability tool like Helicone or LangSmith at $50 to $500 a month depending on volume and a managed Postgres for session and audit logs at $25 to $200. None of these are big on their own. Together they easily clear $1,000 a month before the LLM even shows up on the invoice.

FIG. 02 – TYPICAL MONTHLY RUN COST Run cost stack for a mid-market support agent

  • Line item – Vendor (example) – Monthly USD
  • LLM API – Anthropic Claude Sonnet 4.5 – $200 – $9,000
  • Vector DB – Pinecone serverless – $50 – $300
  • Compute – Hetzner CCX33 – €60
  • Frontend host – Vercel Pro – $20 / seat
  • Observability – Helicone or LangSmith – $50 – $500
  • Managed Postgres – Neon, Supabase – $25 – $200

If you are running heavy inference on open-weight models, Modal, Replicate and Fireworks all expose hosted GPU pricing that is worth a look before committing to a self-managed cluster. For a useful outside read on why aggregate infrastructure spend keeps creeping up, the a16z economic case for generative AI is a fair starting point.

05 Contrarian take

Most of your savings live in the prompt, not the model choice

Operators love to ask whether they should switch from Claude to GPT-5 to save money. In practice, the difference between picking the right model and the wrong model on a per-call basis is maybe 30 to 50%. The difference between a sloppy prompt that ships 12,000 tokens of redundant context every turn and a tight one that ships 2,000 is a clean 6x. The fastest way to cut your monthly invoice is almost always to rewrite the prompt, cache the system message and trim the retrieval context, not to migrate providers. I have watched teams spend six weeks on a model migration that saved 20%, when an afternoon of prompt cleanup would have saved 70%.

The corollary: pick a provider that supports prompt caching (Anthropic and OpenAI both do now) and structure your system prompt so the cached prefix is huge. Pricing pages list cache reads at a fraction of the input cost. That is the single biggest knob on the run-cost side. The OpenAI cookbook has a useful set of patterns for thinking about this.

06 Worked example

A realistic 12-month budget for a mid-market support agent

Formula

Year-1 cost = build + integration + 12 × run + 20% contingency

build

Engineering, design, eval harness, deploy

integration

CRM, helpdesk, auth, data pipelines (often 40–60% of build)

run

LLM API + vector DB + compute + observability + Postgres

contingency

Scope creep is the rule, not the exception

Result

Mid-market support agent: build $90K + integration $45K (50%) + 12 × $1,800 run ($21.6K) + 20% contingency ($31K) = ~$187K Year-1 cost . Year-2 drops to roughly $40K because the build is amortized and only run cost plus a maintenance retainer remain.

If you want to sanity-check whether that math pays back in your specific business, the interactive ROI calculator takes your conversation volume, agent salary and resolution rate as inputs and stress-tests the case.

Deloitte's global automation survey, published in June 2022, found organizations that scaled automation cut costs by 32 percent on average, while the typical program took about 22 months to pay back.

07 How we'd actually approach this

Ship a small version first and instrument it before you scale

If somebody asked me to spend their money tomorrow, the order of operations would be: ship the smallest version of the use case in four weeks against an off-the-shelf API, instrument it heavily from day one so you actually see token cost per conversation and per intent, then make the build-vs-buy call at month two with real data instead of guesses. Almost every team that spent $400K on a custom build before doing this step ended up rewriting most of it within a year.

The second move is to put a six-month review on the calendar before the contract is signed. Run cost will not look like the proposal said it would. Either volume undershot and you are paying for capacity you do not need, or it overshot and the per-call price needs renegotiation. Both are fine outcomes if you planned to revisit them. Neither is fine if you only notice when the CFO asks why the AWS bill doubled.

Signals a project will not pay back

  • Use case was picked because it was fashionable, not because volume justifies it
  • Quote rolls token spend into a flat monthly that nobody can explain
  • No eval harness in scope; quality will drift and nobody will know
  • Integration work is mentioned in one line but never costed
  • Internal sponsor cannot describe what success looks like at month 6

If you want a sanity check on a quote you have in hand, we will read it for free and tell you which line items are missing. Start here.

Related reading

Frequently Asked Questions

How much does AI implementation cost for a small business?+ Between $0 and $80K a year. The low end is per-seat SaaS subscriptions like ChatGPT Team at $25 per user a month. The high end is one mid-complexity custom implementation. Most small businesses should not commission a custom build until subscription tools have stopped delivering. What's the cheapest honest way to start with AI?+ Per-seat AI subscriptions ($20 to $30 per user a month) for the team that does the most repetitive knowledge work. Measure time saved over two months. Only then consider a custom build for the workflow that subscriptions cannot reach. How much does it cost to build a custom AI chatbot?+ $15K to $300K depending on integration depth, language support and action-taking complexity. Monthly run cost is $200 to $9,000. A read-only single-document bot sits at the low end. A multi-language, multi-system, action-taking customer service agent sits at the high end. How are Claude and GPT-5 priced for business use?+ Claude Sonnet 4.5 is $3 per million input tokens and $15 per million output as published on anthropic.com. GPT-5 and GPT-4o sit in a similar range on openai.com. Per-seat product tiers (Claude Team, ChatGPT Team) run $25 to $30 a seat. Enterprise contracts are custom but typically $40 to $100 per seat with annual commitments. Why do AI implementations vary so much in cost?+ Two implementations of the same thing can differ 10x because of integration complexity, data quality, accuracy requirements, autonomy level and compliance scope. A bot answering generic questions in one language on a single web page is cheap. The same bot integrated with five backend systems, six languages, taking actions, with HIPAA review, is expensive. What's a realistic payback timeline?+ For well-chosen first implementations, expect 6 to 12 months to positive ROI. High-volume support automation can hit positive ROI in 3 to 6 months. Multi-step agents and platforms run 12 to 24 months. No positive signal by month 12 usually means the use case was wrong, not the technology.

ANM SOLUTIONS / CONTACT US

Need help applying this to your business?

We turn AI insights into measurable business outcomes. Tell us about your workflow and we'll show you the highest-impact place to start.

Related Articles

ROI

Measuring AI ROI: How to Get a Number You Can Defend (2026)

An opinionated guide to measuring AI ROI for CFO-leaning operators. Three return layers, a defensible formula, honest evidence standards and when to wind a project down.

Read article

Published: 2026-05-03 · Author: A&M Flow