Pedro Martins
02/08/2021, 6:06 PMconfig.toml
. See below:
with Flow("model-deployment-pipeline", **custom_confs,) as flow:
model_uri = Parameter("model_uri", default=config["model"]["modelUri"])
environment = Parameter("environment", default=config["model"]["environment"])
deploy_model(model_uri=model_uri, namespace=environment)
This flow is triggered when there are modification on the config.toml. How can I make sure that this flow will access the most up to date config file?Josh Greenhalgh
02/08/2021, 6:09 PMPedro Martins
02/08/2021, 6:14 PMKyle Moon-Wright
02/08/2021, 6:23 PM