Skip to content

Mermaid Workflow Lab

Prompt

Create a mermaid diagram of a three step workflow on a gray background,
Make it have three boxes connected with arrows.
Label the first box "Prompt".  Make it yellow.
Label the second box "Large Language Model". Make it cyan.
Label the third box "Response". Make it pink.

Response

Show Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "diagramLanguage": "mermaid",
  "diagramType": "graph",
  "diagram": "graph LR
      A[Prompt] --> B[Large Language Model]
      B --> C[Response]
      style A fill:#ffff00
      style B fill:#00ffff
      style C fill:#ffc0cb"
}