src/responsibleai/component_fetch_registered_model.yaml (17 lines of code) (raw):
$schema: http://azureml/sdk-2-0/CommandComponent.json
name: fetch_registered_model
display_name: Fetch Registered Model
version: VERSION_REPLACEMENT_STRING
type: command
inputs:
model_id:
type: string
outputs:
model_info_output_path:
type: uri_folder
code: ./src_fetch_registered/
environment: azureml:AML-RAI-Environment:VERSION_REPLACEMENT_STRING
command: >-
python fetch_registered.py
--model_id ${{inputs.model_id}}
--model_info_output_path ${{outputs.model_info_output_path}}