DEV Community

Garfield Assay
Garfield Assay

Posted on

Your Enterprise AI Has a Knowledge Problem, Not Just a Model Problem

Teams often diagnose an unreliable enterprise AI system as a model problem.

They change the prompt. They replace the embedding model. They add a reranker. They increase the context window. These changes can help, but they do not repair the knowledge supply chain underneath the system.

If the source material is duplicated, stale, contradictory, permission-blind, or ownerless, a stronger model simply retrieves and explains unreliable knowledge more fluently.

Before building or scaling RAG and enterprise agents, I find it more useful to ask a different question:

Is the organization's knowledge ready to be trusted by AI?

Here is a practical five-control framework for answering it.

1. Source connection

Can the organization identify where relevant knowledge lives and connect those systems without creating another uncontrolled copy?

A readiness review should include documents, databases, wikis, support systems, images, audio, and video. The first milestone is not migrating everything. It is establishing read-only visibility into the sources, their owners, permissions, and update patterns.

Warning signs include exports shared through personal drives, important answers that exist only in chat, and teams that cannot name the system of record.

2. Quality and authority

Can the system distinguish an authoritative policy from a convenient but outdated copy?

Basic retrieval scores are not enough. Enterprise knowledge needs signals such as source authority, freshness, completeness, review status, and intended audience. Those signals should be visible to the people who govern the content and available to downstream retrieval systems.

Without an authority model, relevance can select the wrong version with high confidence.

3. Duplicate and conflict control

Does the organization know when two items are true duplicates, near-duplicates, or conflicting versions?

The hard part is not only finding similar text. A useful control also defines survivorship rules: which version remains authoritative, which evidence supports that decision, and what happens when a source changes later.

For multimodal content, this extends beyond text similarity to stable IDs, media fingerprints, transcripts, timecodes, and rights metadata.

4. Permissions and lineage

Can every answer be traced back to its source, transformation history, and access policy?

An AI system should not flatten enterprise permissions during ingestion. It should preserve the chain from source system to extracted knowledge, deduplication decision, authoritative object, and downstream answer or agent action.

This is both a security control and a debugging tool. When an answer is wrong, teams need to see whether the failure came from the source, preprocessing, ranking, governance decision, or application layer.

5. Human governance

Is there a clear queue for decisions that automation should not make alone?

AI can identify suspicious duplicates, stale content, missing owners, or conflicting claims. It should not silently declare every ambiguous item authoritative. Mature systems route high-impact exceptions to the right human owner, record the decision, and use that feedback to improve future recommendations.

The goal is not to review everything manually. It is to make the important uncertainty visible and assignable.

A simple readiness test

For each control, choose one of four states:

  1. Controlled — the capability is defined, consistently applied, and measurable.
  2. Partial — it exists for some sources or teams but is not dependable across the organization.
  3. Missing — the capability is not yet implemented.
  4. Unknown — the organization cannot currently verify the answer.

"Unknown" should not be treated as neutral. Not knowing where knowledge lives, who owns it, or which version is authoritative is itself a visibility risk.

The output should not be a single vanity score. It should show the weakest control, the evidence gap, and the next governance action that reduces risk before the AI system expands.

What to do before tuning the model again

Pick one high-value workflow and trace its knowledge path end to end:

  • Which systems supply the answer?
  • Which item is authoritative when versions disagree?
  • Which permissions must survive retrieval?
  • Can the answer be traced to its source and transformations?
  • Who decides when the evidence is ambiguous?

If these questions are difficult to answer, model tuning is probably not the highest-leverage next step. Start by making the knowledge supply chain visible.

Assay is exploring this problem through a 60-second Enterprise AI Knowledge Readiness Check. It produces a directional view of the five controls and the first governance priority—without claiming that a short assessment replaces a full technical review.

Run the 60-second readiness check

Discussion

When a RAG system gives a confident but wrong answer, which layer do you investigate first: source quality, version conflict, permissions, retrieval, or model behavior?

Top comments (0)