Current section
Files
Jump to
Current section
Files
priv/graphs/ying_yang.dot.liquid
{% assign ying_prompt="Your last thought was '{Yang}'. You breathe in and think: " %}
{% assign yang_prompt="Your last thought was '{Ying}'. You breathe out and think: " %}
digraph Daoism{
Ying [module=GPTModule, prompt="{{ying_prompt}}", delay=5000]
Yang [module=GPTModule, prompt="{{yang_prompt}}", delay=5000]
Print [module=PrintModule]
Live [module=LiveOutputModule]
Start [module=StartModule, delay=2000, message="Om."]
Start -> Ying
Ying -> Yang
Yang -> Ying
Ying -> Live
Yang -> Live
}