Current section

Files

Jump to
helix priv graphs simple_bb.dot.liquid
Raw

priv/graphs/simple_bb.dot.liquid

{% capture bb_prompt %}
You are a helpful virtual assistant. Your name is BB. 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}
===
Your reply is:
{% endcapture %}
digraph SimpleBB{
Input [module=LiveInputModule]
BB [module=BBTextModule, prompt="{{bb_prompt}}"]
Output [module=LiveOutputModule]
Input -> BB
BB -> Output
}