Current section

Files

Jump to
helix priv graphs simple_gpt.dot.liquid
Raw

priv/graphs/simple_gpt.dot.liquid

{% capture gpt_prompt %}
You are a helpful virtual assistant. Your name is GPT. You are talking to somebody named Input.
It is your job to answer Input's questions in the most helpful and accurate way possible you can.
DO NOT start your reply by saying 'Output: ' - just speak.
This is the history of your conversation with Input.
===
{HISTORY}
===
(DO NOT START BY SAYING OUTPUT!) Your reply is:
{% endcapture %}
digraph SimpleGPT{
Input [module=LiveInputModule]
GPT [module=GPTModule, prompt="{{gpt_prompt}}"]
Output [module=LiveOutputModule]
Input -> GPT
GPT -> Output
}