Issue when trying to pass data between Kubeflow components using files
问题 I made two components using python functions and I am trying to pass data between them using files, but I am unable to do so. I want to calculate the sum and then send the answer to the other component using a file. Below is the partial code (The code works without the file passing). Please assist. # Define your components code as standalone python functions:====================== def add(a: float, b: float, f: comp.OutputTextFile(float)) -> NamedTuple( 'AddOutput', [ ('out', comp