跪拜 Guibai
← All articles
Frontend · Backend · Artificial Intelligence

When Renting AI Costs More Than Owning It: The Qwen3.5-397B Enterprise Playbook

By 大厂码农老A ·
Read original on juejin.cn ↗ Google Translate ↗ Alt translation

API costs for high-frequency, stable enterprise tasks scale linearly with usage, while a privately deployed open-weight model can invert that curve if call volume justifies the infrastructure investment. Qwen3.5-397B's MoE architecture and open weights make it a credible candidate for organizations that need to lock down data sovereignty and bake domain judgment into a model without starting from scratch.

Summary

Thomson Reuters built its Thomson model on Alibaba's Qwen3.5-397B-A17B, a 397B-parameter MoE model that activates only 17B per token. The move highlights a growing enterprise shift from API rental to private ownership, driven by runaway inference costs on repetitive legal, financial, and procurement workflows. Open weights give organizations control over model versioning, fine-tuning, and data locality, but they don't eliminate the heavy lifting: GPU provisioning, distributed inference, KV cache management, and ongoing governance still land on the enterprise. The real asset isn't the model file itself, but the closed loop of expert corrections, evaluation sets, and business rules that compound into a defensible, trainable data moat over time.

Takeaways
Thomson Reuters invested roughly $40M to build its Thomson model on Qwen3.5-397B-A17B, signaling that large enterprises now treat AI as core infrastructure rather than a rented utility.
Qwen3.5-397B-A17B is a Mixture of Experts model with 397B total parameters but only 17B activated per token, reducing per-step compute while still requiring full-weight storage and distributed deployment.
Open weights grant control over versioning, fine-tuning, and deployment location, but they do not include training data, code, or recipes, and they don't automatically solve data governance or security audit requirements.
Enterprise AI control splits into four layers: data control, application control, service control, and weight control; open weights primarily strengthen the fourth layer.
RAG gives a model access to documents but does not encode an organization's judgment about risk thresholds, clause importance, or when to say 'uncertain'; that expertise must be captured through fine-tuning, explicit rules, and human feedback loops.
The most durable enterprise asset is not the model itself but the accumulated data flywheel: desensitized business data, expert corrections turned into preference data, failure cases in regression test sets, and domain evaluation benchmarks.
Formatting problems should be solved with structured output and field validation, not by hoping the model gets it right; dynamic regulations belong in a versioned knowledge base, not baked into model weights.
Deployment strategy should follow evaluation results: managed APIs for low-volume validation, private deployment for stable sensitive workloads, distillation for clear-boundary tasks, and continuous pre-training only when data, experts, and evaluation sets are mature.
Private AI value equals saved API fees plus saved labor time plus data-control benefits, minus compute, R&D, operations, governance, and error costs; it's a long-term investment that only pays off at sufficient scale.
Conclusions

OpenAI's own data shows legal-industry Codex weekly active users grew 108x since February 2026, and sales/recruitment grew 41x, which explains why Thomson Reuters felt urgency to own its stack rather than feed a competitor's API.

The article's four-layer control model (data, application, service, weight) is a useful corrective to the binary 'rent vs. own' debate; most enterprises actually need to mix and match across layers rather than pick a side.

Calling a 397B MoE model '17B activated' is technically accurate but operationally misleading: the full weight still must be loaded across GPUs, and KV cache for long contexts adds substantial memory pressure that small teams often underestimate.

The emphasis on building evaluation sets before touching model training is the single most under-implemented practice in enterprise AI; without a regression suite of real failures, fine-tuning is just guesswork.

Distillation from a large teacher model like Qwen3.5-397B into a smaller, cheaper business model is presented as a realistic end state, which aligns with the pattern of enterprises using frontier models for data generation rather than direct serving.

Concepts & terms
Mixture of Experts (MoE)
A model architecture where total parameters are split across multiple 'expert' sub-networks, and a routing mechanism activates only a subset for each input token. This keeps model capacity high while reducing per-token computation, but the full set of weights must still be stored and managed in memory.
Open Weights
A release model where the trained parameter values are publicly available for download and deployment, but training data, code, and infrastructure recipes typically remain proprietary. It enables self-hosting and fine-tuning without granting full open-source rights.
LoRA (Low-Rank Adaptation)
A parameter-efficient fine-tuning technique that inserts small, trainable rank-decomposition matrices into a frozen pre-trained model, allowing domain adaptation without updating the full weight set.
RAG (Retrieval-Augmented Generation)
A pattern that retrieves relevant documents from an external knowledge base and inserts them into the model's context window before generating a response, grounding outputs in updatable, auditable sources without modifying model weights.
KV Cache
A memory structure that stores key and value tensors from previous tokens during autoregressive generation, avoiding recomputation. Its size grows with context length and batch size, becoming a major bottleneck for long-document enterprise workloads.
Source: juejin.cn ↗ Google Translate ↗ Backup ↗