You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to run some jobs that return a string each. Then I want to pass these as a list to another step. This does not work though because the list is reportedly not JSON-serializable. The problem is that validate_input in zenml.steps.entrypoint_function_utils exits early if the passed parameter is a StepArtifact but when a list of StepArtifact is passed, the function does not exit early.
The same goes for other collections.