Maybe we have a class ```python @dataclass class LoggingConfig: handlers: dict[str, list[Handlers]] @classmethod def from_logfile(filepath, agents, workers) -> Self: pass # other builders ``` And then we can have functionality to merge multiple LoggingConfigs, e.g. with `|` operator