diff --git a/esd_services_api_client/nexus/algorithms/_baseline_algorithm.py b/esd_services_api_client/nexus/algorithms/_baseline_algorithm.py index ccdb8d7..eeedf8a 100644 --- a/esd_services_api_client/nexus/algorithms/_baseline_algorithm.py +++ b/esd_services_api_client/nexus/algorithms/_baseline_algorithm.py @@ -87,6 +87,7 @@ async def _measured_run(**run_args): return await partial( _measured_run, + **kwargs, **self._inputs, metric_tags=self._metric_tags, metrics_provider=self._metrics_provider, diff --git a/esd_services_api_client/nexus/algorithms/_remote_algorithm.py b/esd_services_api_client/nexus/algorithms/_remote_algorithm.py index efd23c0..6f1438a 100644 --- a/esd_services_api_client/nexus/algorithms/_remote_algorithm.py +++ b/esd_services_api_client/nexus/algorithms/_remote_algorithm.py @@ -113,6 +113,7 @@ async def _measured_run(**run_args) -> AlgorithmResult: return await partial( _measured_run, + **kwargs, **results, metric_tags=self._metric_tags, metrics_provider=self._metrics_provider,