11  Flowcharts

Flowcharts are a great way to visualize processes and workflows.

%%{init: {
  "theme": "forest",
  "themeCSS": ".extension { fill: white !important; }; .divider { display: none; };"
}}%%

flowchart TB
  A@{ shape: circle, label: "API Endpoint Request"} --> B(JSON Decoded)
  B --> C{Does Model File Exist?}
  C -- No --> D[Return Error]
  C -- Yes --> E(Load Model)
Figure 11.1: A Basic Flowchart