Python · 518 bytes Raw Blame History
1 """v12 → v13 migrator: identity bump for the 2026 registry refresh.
2
3 The base-model registry gained additive metadata (`reasoning_tuned`,
4 `context_length_effective`, `text-moe`) without changing `.dlm`
5 frontmatter shape. The doc schema still advances to v13 so
6 migration-aware tooling can distinguish post-refresh docs from older
7 ones. Existing v12 documents therefore migrate as pure identity.
8 """
9
10 from __future__ import annotations
11
12
13 def migrate(raw: dict[str, object]) -> dict[str, object]:
14 return dict(raw)