GGoldwater.dev
All articles
Pragmatic AI8 min read·

You Don't Have to Build AI. You Can Just Call It.

Most leaders picture AI as a project: hire data scientists, collect data, wait two quarters. But a huge share of useful AI isn't built — it's called. Google Cloud exposes a shelf of pretrained AI as plain APIs: speech-to-text and back, document intelligence, entity recognition, translation, image generation. Here are the quick wins you could ship this week.

Part 2 of 7Series: The AI Adoption Series

When most leaders picture "doing AI," they picture a project: hire data scientists, collect training data, stand up a platform, wait two quarters. That mental model is a big reason so many organizations stall before they start — the bar looks impossibly high. But a huge share of the practical, valuable AI an organization actually needs isn't something you build at all. It's something you call.

Google Cloud — like every major cloud — exposes a shelf of pretrained AI as plain web APIs. You send data, you get structured results back, you pay by the unit. No training, no ML team, no infrastructure. A single developer with an API key can wire one of these into an existing process in an afternoon. These are the quick wins sitting in plain sight, and most companies that feel "behind" on AI could ship one this week.

I'm going to use Google Cloud's lineup here because it's clean and I know it well, but the categories are universal — AWS and Azure offer close equivalents for nearly all of this. Pick the cloud you're already in; the point is the building blocks, not the brand.

The shift: AI as a utility you call, not a system you build

The thing to internalize is that these capabilities are commodities now. Speech recognition, OCR, entity extraction, translation — things that were research projects a decade ago are metered services that cost cents. Cloud Vision processes 1,000 images for about $1.50 (Google Cloud); Speech-to-Text gives you the first 60 minutes a month free and bills in seconds after that (Google Cloud). You can prototype a real workflow for the price of lunch, which means the risk of trying is almost zero. That changes the calculus: you don't need a business case for a moonshot, just a developer and a process worth improving.

And "an API call" is meant literally. Pulling the text off a pile of scanned documents is about this much code:

python
from google.cloud import vision

client = vision.ImageAnnotatorClient()
image = vision.Image(content=open("scan.png", "rb").read())

# OCR a scanned document in one call — nothing to train
text = client.document_text_detection(image=image).full_text_annotation.text
print(text)

Turn speech into text — and back

Speech-to-Text transcribes audio — calls, meetings, voicemails, voice notes — into searchable, analyzable text, and its newer Chirp models handle real accents and background noise far better than the dictation tools people remember (Google Cloud). Text-to-Speech runs the other direction, turning text into natural-sounding audio for around $30 per million characters (Google Cloud). The quick wins: transcribe every support or sales call so it's searchable and can be summarized; turn long internal documents into audio people can listen to on a commute; or put a simple voice interface on a system that only had a screen before.

Read documents the way a person would

This is the category I see pay off fastest, because every organization drowns in documents. Document AI is document intelligence — it ingests invoices, forms, contracts, receipts, and IDs and returns structured fields you can drop straight into a system, at roughly $20–$30 per thousand pages (Google Cloud). For simpler needs, the Vision API does high-quality OCR to pull raw text off any scan or photo (Google Cloud). The quick wins are the manual data-entry jobs hiding all over operations: accounts-payable invoice processing, onboarding paperwork, claims intake, contract-review prep — anywhere a human is currently retyping what a document already says.

Understand and route language

The Natural Language API reads text and returns meaning: entity recognition (people, organizations, products, places), sentiment, and classification, with the first several thousand requests free each month (Google Cloud). That turns a pile of unstructured inbound text into something you can sort. The quick wins: automatically triage and route incoming email or support tickets by topic and urgency, flag negative feedback for fast follow-up, or extract the key entities and terms from contracts and reports. Pair it with the Translation API — billed per million characters (Google Cloud) — and you can do all of that across languages, or localize content without a translation vendor.

Generate and edit images on demand

On the generative side, Imagen on Vertex AI (now part of the Gemini Enterprise Agent Platform) creates and edits images from text prompts and reference images, at roughly two to four cents per image (Google Cloud). The quick wins live in marketing and content operations: generating campaign and social creative, producing product mockups or variations, removing or replacing backgrounds, and editing images at a volume that would swamp a design team. It won't replace your brand designers — it clears the long tail of routine image work that clogs their queue.

The shelf is deeper than this — Video Intelligence for analyzing video, multimodal models through the Gemini API for tasks that mix text, images, and audio, and more. But the five categories above cover the overwhelming majority of the quick wins, and you almost certainly run a process that maps to at least one of them.

Turning a building block into an actual win

Having the API is not the same as capturing the win. The recipe is the same one I'd use for any AI start: find a single process step that's currently slow, manual data-shuffling — transcribing, retyping, sorting, translating — put the right API behind it, keep a human checking the output, and measure the before and after. Don't wire it straight through with no review; these models are excellent, not infallible, and the human check is what makes "quick" also "safe."

One thing that's easy to skip in the rush: these APIs mean sending your data to a third-party service. That's fine for most internal, non-sensitive work, but before you pipe customer or regulated data through anything, confirm the data-handling terms, the processing region, and your own policy. A quick win is still subject to the same data boundaries your AI policy should already spell out — speed is not an excuse to skip the one question that actually matters.

The takeaway

If your organization feels stuck at the starting line, it may be because you're picturing AI as something you have to build. Most of the highest-value, lowest-effort wins are already sitting on a shelf, metered by the call: speech to text and back, document intelligence, entity recognition, translation, image generation. Pick one process that's full of manual drudgery, wire in the matching API behind a human check, and measure what changes. You can be running a real, useful piece of AI — with the numbers to show for it — before the big-platform committee has finished scheduling its kickoff.

One disclosure worth adding: wiring these APIs into real workflows is exactly what my firm, Prosigliere, does as a Google Cloud Partner and AI-forward engineering shop. If you want help turning one of these quick wins into something in production, it's a short conversation at prosigliere.com.

Sources: Cloud Speech-to-Text pricing · Cloud Text-to-Speech pricing · Cloud Vision · Document AI pricing · Cloud Natural Language · Cloud Translation · Imagen on Vertex AI

WG

Wes Goldwater

Director of Engineering at Prosigliere · writing the no-hype playbook for cloud & AI.

Keep reading