I am trying to use a model I’ve deployed from Jupyter notebook as function and use it from the AIP logic flow.
Model was successfully deployed and I’ve created a function to run the model.
I already have the object which has matching properties for the model input.
Here’s the steps I took in AIP logic.
- Take the Input from the prepared Object
- Call function created from the model
- map all the matching properties for the model input
but when I tried to run the logic I would get this message:
ServiceException: INVALID_ARGUMENT (LogicExecutor:FunctionHasInvalidOutput): {unstructuredErrorContent=InvalidOutputError{details: InvalidOutputDetails{value: UntypedValueConversionFailedWrapper{value: UntypedValueConversionFailed{value: Optional[false]}}}}}
and argument:
{
“unstructuredErrorContent”: “{“details”:{“type”:“untypedValueConversionFailed”,“untypedValueConversionFailed”:{“value”:false}}}”
}
I think this might be a pretty simple issue to solve, but I don’t know how to. Is there anyone who could help me with this?