"""Synthetic and mock data blending.""" from __future__ import annotations from typing import Any def merge_sources(local_items: list[dict[str, Any]], generated_items: list[dict[str, Any]]) -> list[dict[str, Any]]: return local_items + generated_items