QMOD Language¶
The QMOD language is a set of tools that you can use to describe Models for the Synthesis engine.
There are 3 main interfaces:
- In the IDE using the Model Editor
- In the SDK using Python Model Editor
- In the SDK/IDE using the Model Object/JSON, described more here: Getting Started
flowchart LR
Editor[Model Editor - IDE] --> JSONSchema;
Python[`classiq` - SDK] --> JSONSchema;
JSONSchema[Model Object/JSON] --> Synthesis;
Synthesis[SynthesisEngine] --> GeneratedCircuit;