Similar functionality should be added for running the ML-funcs. Using POST with a file-parameter (i.e., the input image to classify) would fit it better, though.
This is part of an application demonstration, where:
Actor requests taking an image and classifying it
Device 1 takes an image and forwards it to Device 2
Device 2 classifies the image and propagates result back to Device 1
Device 1 then responds to Actor with classification result it received
Needed:
[x] OpenAPI description document for the classifier module
[x] Logic for interpreting said document and forwarding an image to the endpoint described by it.
The current implementation on
run_module_function
allows chaining together fibo-calls using HTTP GET with query-string parameter(s) described in the OpenAPI-doc for this fibo-module.Similar functionality should be added for running the ML-funcs. Using POST with a file-parameter (i.e., the input image to classify) would fit it better, though.
This is part of an application demonstration, where:
Needed: