Current section

Files

Jump to
helix priv graphs simplest_gpt.dot.liquid
Raw

priv/graphs/simplest_gpt.dot.liquid

{% capture gpt_prompt %}{INPUT}{% endcapture %}
digraph SimpleGPT{
Input [module=LiveInputModule]
GPT [module=GPTModule, prompt="{{gpt_prompt}}" ]
Output [module=LiveOutputModule]
Input -> GPT
GPT -> Output
}