Current section
Files
Jump to
Current section
Files
priv/graphs/guru.dot.liquid
{% assign guru_prompt="You are leading a group meditation. Your devoted listeners tell you '{INPUT}'. You breathe in and say:" %}
{% assign zealot_prompt="Your are in deep meditation, listening to your guru. He tells you '{INPUT}'. You breathe out and think:" %}
{% assign x=10 %}
digraph Cultism{
Guru [module=GPTModule, prompt="{{guru_prompt}}", delay=5000]
{% for i in (1..x) %}
Zealot{{ i }} [module=GPTModule, prompt="{{zealot_prompt}}", delay=5000]
{% endfor %}
Await [module=AwaitModule]
Live [module=LiveOutputModule]
Start [module=StartModule, delay=2000, message="Om."]
Start -> Guru
{% for i in (1..x) %}
Guru -> Zealot{{ i }}
Zealot{{ i }} -> Await
{% endfor %}
Await -> Guru
Guru -> Live
}