Juan Carlos Calvo Jackson
09/06/2024, 3:18 PMrun.task_inputs
(for run: TaskRun
) it gives a dictionary with empty valuesNate
09/06/2024, 3:38 PMtask_inputs
are references to upstream results that this task depends on
task run parameters are not stored in the API at all
so you'd need to:
• use partial
as mentioned here in the docs
• add them to some sort of global / nonlocal variable (or a KV) that you can access in the hookChris White
prefect.context.get_run_context().parameters
Chris White