AI工程SynapseB类

[EN] 当AI遇上多语言网站:一次演示前夜的系统性质量修复

TL;DR

  • Found 7 content inconsistencies between CN/EN site versions, under 20 hours to demo
  • Three-layer structured audit replaced ad-hoc manual spot-checking
  • Same data error shows different symptoms in each language — only cross-version comparison catches it
  • HTTP 200 ≠ business content correct; every pass needs location evidence
  • Audit → fix → verify must be a closed loop, no step optional

We were 20 hours from a demo for two technical directors with actual decision-making authority. The show included our bilingual knowledge base landing page and three case studies. During final review, we found 7 inconsistencies between the Chinese and English versions — 3 of them were data errors, not wording differences. One example: the Chinese case study said “completed system integration within 14 days,” the English version said “within 3 weeks.” Both sentences pass any format check. Only side-by-side cross-language comparison surfaces the contradiction.

The root problem wasn’t translation lag. The 7 issues came from three independent layers: content quality (truncated sentences, unreplaced placeholder text), data accuracy (case study numbers updated in Chinese but never synced to English), and multilingual completeness (some English sections were literally still Chinese placeholder text). These layers mask each other — fix a wording issue and you still can’t see the data error underneath it. Standard format validation tools are blind to cross-language semantic inconsistency, and manual comparison under time pressure misses things.

Rather than page-by-page manual comparison, we ran a structured three-layer audit using the Synapse multi-agent team. Each layer was handled by a dedicated agent role: content_reviewer checked sentence completeness and placeholder detection, fact_checker ran numeric cross-references between CN and EN versions, and i18n_auditor checked section parity and untranslated content. The critical design rule: every agent output required specific location evidence with any pass status — page, section, sentence. A bare status: pass was rejected. This rule came from a hard lesson: a previous pipeline returned status: success for three consecutive weeks while the actual content had not updated at all. The success only confirmed the script completed, not that the business output was correct.

The three-layer audit produced a complete fix list 8 hours before the demo. All 7 issues were resolved and verified individually.

Key Takeaways

  • If you’re preparing a multilingual external demo, start systematic audit at least 48 hours out — time for fixing and verifying costs more than time for finding.
  • If you’re building a content quality process, separate audit dimensions rather than mixing them — content quality, data accuracy, and multilingual completeness are independent layers; mixed audits stay shallow on all three.
  • If you’re using an AI team for content validation, require location evidence on every assertion — “page 3, paragraph 2” is more actionable than “check passed,” and makes pre-delivery spot-checks possible.
  • If you maintain a bilingual content system, build a cross-language reference table for all quantifiable data — any number or date needs a single source of truth; one-side updates must trigger the other.

Read the Full Article (Chinese)

This is an abstract. The full technical walkthrough — including the audit configuration schema and the complete post-mortem — is in Chinese.