Skip to content

taps.apps.configs.synthetic

SyntheticConfig

Bases: AppConfig

Synthetic application configuration.

get_app()

get_app() -> App

Create an application instance from the config.

Source code in taps/apps/configs/synthetic.py
def get_app(self) -> App:
    """Create an application instance from the config."""
    from taps.apps.synthetic import SyntheticApp
    from taps.apps.synthetic import WorkflowStructure

    return SyntheticApp(
        structure=WorkflowStructure(self.structure),
        task_count=self.task_count,
        task_data_bytes=self.task_data_bytes,
        task_sleep=self.task_sleep,
        bag_max_running=self.bag_max_running,
        warmup_task=self.warmup_task,
    )