A year ago, every enterprise conversation about LLMs started and ended with chatbots. Can it handle support tickets? Can it answer HR questions? Can it replace the help desk? And sure, that stuff works, mostly. But I've found the real value of these models sits somewhere far less glamorous: inside the boring, repetitive workflows that nobody wants to talk about.

Let me give you an example. One of my clients processes thousands of vendor invoices every month. Each one comes in a different format — PDF, scanned image, email attachment, even the occasional fax. Their team had three people whose entire job was copying data from these invoices into an ERP system. It was soul-crushing work, and they made errors all the time.

We built a pipeline that feeds each invoice into an LLM with a structured prompt: extract vendor name, invoice number, line items, total amount, and due date. The model handles the formatting chaos because it understands context, not just templates. It can look at a PDF that uses "Supplier" instead of "Vendor" and still get it right. The output goes straight into a validation queue where a human reviews only the edge cases — maybe five percent of invoices instead of one hundred percent.

That's a chatbot-like interaction in the sense that you're sending text and getting text back. But nobody talks to it. It's a background process. The team went from spending forty hours a week on data entry to spending two hours a week on review. The model isn't replacing their judgment — it's freeing them to do work that actually requires thinking.

Another use case that surprised me was internal knowledge retrieval. Not the flashy "ask your company wiki" bot that everyone demoes. I'm talking about something more specific: a manufacturing company that had decades of engineering change orders locked inside a document management system with a terrible search function. Engineers would spend hours digging through PDFs to find out why a part number changed three years ago.

We indexed those documents and built a retrieval-augmented generation pipeline. An engineer types a question like "Why was the torque spec for bolt A-412 changed in Q3 2021?" and gets back a paragraph that cites the exact change order, with the relevant page number. It's not generative fluff — it's grounded in the source material. The model is basically a really good search engine that understands intent.

I made a mistake early on with that project. I assumed we could use a general-purpose model and it would just work. It didn't. The model kept hallucinating part numbers that looked real but were completely made up. We had to switch to a smaller, domain-tuned model and add strict retrieval constraints. The lesson: don't let the LLM guess. Give it the facts and make it stick to them.

The third category that's been surprisingly effective is what I call structured data transformation. Think about pulling contracts from a legacy system, identifying key clauses like renewal dates and termination penalties, and outputting that into a spreadsheet. Or taking freeform notes from a sales call and generating a structured CRM entry with next steps, sentiment scores, and action items.

These aren't tasks that require a conversational interface. They require a model that can parse messy human language and produce clean, predictable output. The interaction is between the model and the database, not between the model and a person. That's where the ROI compounds, because you're automating processes that used to require multiple handoffs and manual review.

If you're sitting in an enterprise right now wondering where to start with LLMs, my advice is to ignore the chatbot use cases for a moment. Walk through your back office and find the workflows where someone copies data from one system to another, or reads a document and types a summary, or searches through old files looking for a specific detail. Those are the places where an LLM can quietly change everything, without ever having a conversation about it.