4

I created a model (model_final) that calls another model (model_first_step). So to run model_final, I need to also have the model_first_step. You can find both models and the workflow here for download, but the question should be understandable without this context.

How can I include the model_first_step into the model_final? Of course, I could copy the whole workflow inside model_first_step into model_final, but doing it manually would be cumbersome. Is there a way to automatize this, so I don't have to share two files (two models)?

The model on the right is called inside the model on the left: enter image description here

KVO
  • 366
  • 2
  • 20
Babel
  • 71,072
  • 14
  • 78
  • 208

1 Answers1

1

In the model designer you can find all models as an expandable list in the algorithm tab. You might have to scroll down. enter image description here

willemite
  • 118
  • 1
  • 7
  • Thanks. Maybe worth expanding the answer a bit. But probably indeed this is the easiest way to achieve that. – Babel Sep 11 '23 at 18:09