Hi, I am trying to call two functions from my compute module into AIP Logic. I’m getting an error stating that compute module functions are registering as ‘statefulFunction type which is unsupported in scoped mode’ in the Logic App.
I’ve created a function container inside the compute module that calls Flask (a separate scoring container in the same module) over localhost, is there a way to make those functions register as standard functions so Logic can call them?
Or should the @function wrappers live in a standard functions repo and call the container over an external HTTP route instead, and if so what is the hostname/port for the container?