Skip to content
QiTASC.com / General Concepts /
Making Steps Language Models Available to the UI Steps Language
/ .. /
Making Steps Language Models...










Making Steps Language Models Available to the UI Steps Language

Models defined in .steps files are available to .uisteps if they are located in the same directory as configured in the Glue path. Local model, a model of that file's language regardless of its storage location, have precedence over public models defined in .steps files.

The following folder structure references the root directory according to the Glue path configuration:

Example

1
2
3
4
5
6
+ root/
|- ModelA.uisteps
|- ModelB.steps
|- ModelC.steps
|-+ subfolder/
  |- ModelC.uisteps

The above example assumes that every file contains a Model with the same name as the file, without an extension. In other words, the UI Steps Models ModelA and ModelC can both access ModelA from ModelA.uisteps, ModelB from ModelB.steps and ModelC from subfolder/ModelC.uisteps.

Likewise, ModelB can access ModelB from ModelB.steps and ModelC from ModelC.steps, and vice versa.