There is a way to pass a string from a pipeline step to another in azure machine learning sdk v2? E.g.:
def step_1(<inputs>):
var: str = 'lorem ipsum'
<function>
return var # or
step_1.var = var
def step_2(var: Input(type='string')):
<function>
The Output
method from azure.ai.ml
(or mldesigner
) doesn't accepts type='string'
.Thus, I can't define an output like
def step_1(var: Output(type='string'):
<do something with var>
<function's end>