add jinja templates for all current tasks

This commit is contained in:
Andreas Köpf
2022-12-22 00:59:00 +01:00
parent d20828e759
commit df62ee0f98
9 changed files with 78 additions and 72 deletions
+12
View File
@@ -0,0 +1,12 @@
Act as the assistant and reply to the user.
Here is the conversation so far:
{% for message in task.conversation.messages %}
{% if message.is_assistant %}
:robot: Assistant:
{{ message.text }}
{% else %}
:person_red_hair: User:
**{{ message.text }}**"
{% endif %}
{% endfor %}
:robot: Assistant: { human, pls help me! ... }