I'm currently doing some Rnd around integrating our application with realtime Azure databricks models being served using MLFlow model serving as described here:
https://docs.microsoft.com/en-us/azure/databricks/applications/mlflow/model-serving
My questions are around if there is any way to programatically obtain metadata about the published models.
Here are the types of information we would like to be able to query about a published model:
What models are available for serving
What is the model prediction endpoint
What are the required inputs and their data types
What are the model outputs and data types
Is there any REST api for getting to this information? Or a swagger endpoint, like the one that Azure ML models published as web services provides: https://docs.microsoft.com/en-us/azure/machine-learning/how-to-consume-web-service?tabs=azure-portal#web-service-schema-openapi-specification
Appreciate any information anyone can provide on this subject.
Thanks