Bjarne Hiller
03/17/2026, 3:41 PMcreate_data_pipeline(dataset), that downloads and processes the respective dataset via a function make_data(dataset). Right now, I guess I could go for partial(make_data, dataset) , register dataset as param in the catalog, or create a separate download function for each dataset. All of these feel a bit silly/convoluted to me, since I already have the dataset value right there, in my pipeline creation function. Ideally, I would like to create something like Node(make_data, python_inputs=dataset) , i.e., inputs that are not looked up in the catalog. What do you think?Laurens Vijnck
03/17/2026, 5:38 PMRavi Kumar Pilla
03/17/2026, 7:37 PMRavi Kumar Pilla
03/18/2026, 2:32 PM