惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
月光博客
月光博客
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI Agents Don't Understand Your Business.
Irvan Gerhana Septiyana · 2026-06-25 · via DEV Community

Your Taxonomy Does.

Every week, a new AI Agent framework appears.

One week it's LangGraph.

The next it's CrewAI.

Then AutoGen.

Then OpenAI Agents.

Then Model Context Protocol.

The ecosystem is moving incredibly fast.

Naturally, companies ask the same question.

"Can we build an AI agent for our business?"

The answer is usually yes.

But I think it's the wrong question.

A better question would be:

Does your business have a language your AI can actually understand?

Because that's where most enterprise AI projects quietly fail.


Every Business Has Its Own Language

Walk into any enterprise and listen carefully.

People don't speak generic English.

They speak the language of the business.

Finance teams talk about:

  • invoices
  • purchase orders
  • credit notes
  • contracts
  • reconciliation

Manufacturing teams talk about:

  • work orders
  • production batches
  • material movements
  • BOMs
  • quality inspections

Healthcare teams discuss:

  • encounters
  • diagnoses
  • insurance claims
  • providers
  • referrals

Every industry has its own vocabulary.

Humans learn it over time.

AI doesn't.


The Problem Isn't Intelligence

Let's imagine an AI agent receives this message.

PART PMT ALPHABRIDGE SOLUTIONS MFG-INV-000157

Can it answer:

Has this invoice been paid?

Not immediately.

Because the agent doesn't know:

What is "PART PMT"?

What is "MFG"?

Is "ALPHABRIDGE" a customer?

A supplier?

A partner?

A subsidiary?

What does this invoice belong to?

The model understands language.

It doesn't understand your company.


This Is Where Taxonomy Matters

A taxonomy isn't just a list of labels.

It's a shared definition of how your business describes the world.

Instead of treating every document as plain text, taxonomy gives structure to meaning.

For example:

PAYMENT_TYPE

↓

PARTIAL PAYMENT

CUSTOMER

↓

ALPHABRIDGE SOLUTIONS

DOCUMENT

↓

INVOICE

STATUS

↓

OPEN

Suddenly the system isn't reading text anymore.

It's interpreting business concepts.


AI Needs Definitions Before It Needs Prompts

One thing surprised me while building an enterprise Transaction Intelligence platform.

Prompt engineering wasn't the hardest part.

Building the business vocabulary was.

Before training a single model, we spent time defining:

  • customer entities
  • invoice structures
  • payment types
  • reconciliation states
  • contract relationships
  • document categories

Only then could the models produce reliable results.

Without shared definitions, every prediction became ambiguous.


Taxonomy Creates Consistency

Imagine ten developers building ten different services.

Without taxonomy:

One service calls it:

Invoice

Another says:

Billing Document

Another uses:

Reference

Someone else stores:

Invoice ID

Eventually every API starts speaking a different language.

Now imagine introducing an AI agent.

Which term should it trust?


Taxonomy Is The Foundation Of Enterprise AI

A well-designed taxonomy becomes the contract between humans, software, and AI.

Everything speaks the same language.

Documents.

Databases.

APIs.

Models.

Dashboards.

Agents.

That consistency dramatically reduces ambiguity across the entire organization.


This Is Bigger Than Machine Learning

Many engineers associate taxonomy with NLP.

In reality, it affects almost every part of software engineering.

Database design.

API contracts.

Search.

Analytics.

Data warehouses.

Knowledge graphs.

Feature stores.

Machine learning pipelines.

Even observability.

Once your business vocabulary becomes standardized, every downstream system becomes easier to build.


AI Agents Need Context, Not Just Intelligence

One misconception I see frequently is that better models automatically produce better enterprise agents.

In practice, agents fail for a much simpler reason.

They don't have enough context.

Context doesn't magically appear inside an LLM.

It comes from structured knowledge.

Customer masters.

Contract relationships.

Business rules.

Taxonomies.

Canonical data models.

That's the real memory of an enterprise.


We Don't Need Smarter Agents First

We Need Smarter Data

The next breakthrough in enterprise AI probably won't come from another prompt.

Or another framework.

Or another model.

It will come from organizations that finally organize their business knowledge into something machines can reason about.

That starts with taxonomy.


My Biggest Lesson

Building enterprise AI changed how I think about software.

Initially I believed the language model would be the center of the architecture.

Over time I realized something different.

The center wasn't the model.

It was the business vocabulary.

The model simply consumed it.

The better our taxonomy became...

The more reliable every downstream system became.


Final Thoughts

Artificial Intelligence is incredibly good at generating language.

Enterprise software isn't built on language.

It's built on meaning.

Meaning comes from shared definitions.

Shared definitions become taxonomy.

Taxonomy becomes knowledge.

Knowledge becomes automation.

And only then do AI agents become truly useful.

Maybe the next question we should ask isn't:

"Which AI model should we use?"

Maybe it's:

"Does our business have a language that AI can actually understand?"

That question has changed the way I build software.

I suspect it will change enterprise AI over the next decade as well.


Resources

The ideas in this article come from building a complete Enterprise AI Transaction Intelligence System designed for large-scale business reconciliation.

The full implementation covers:

  • Canonical Data Architecture
  • Business Taxonomy Design
  • Synthetic Enterprise Dataset Engineering
  • Financial Named Entity Recognition (NER)
  • Entity Resolution
  • Business Rules
  • Automated Reconciliation
  • FastAPI Production APIs
  • End-to-End Evaluation Framework

If you'd like to explore the architecture, source code, datasets, and implementation in depth, you can find everything here:

📘 Enterprise AI Automation Blueprint

👉 https://uigerhana.gumroad.com/l/enterprise-ai-automation-blueprint

I'm also publishing an ongoing series on Dev.to about Enterprise AI Engineering, AI Automation, Software Architecture, and Production Systems.

If you're building AI for real businesses—not just demos—I hope you'll join the journey.