polyguard-openenv / app /dataops /synthetic_mix.py
TheJackBright's picture
Deploy PolyGuard OpenEnv Space
877add7 verified
"""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