API project = roro.get_current_project() repo = project.get_model_repository("iris") model_image = repo.new_image(model) model_image["Dataset-Features"] = "Sepal-Length,Sepal-Width,Petal-..." model_image["Training-Accuracy"] = 0.85 model_image.save(comment="Built a new model using SVM") 24