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 @@
Please provide a reply to the assistant.
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 %}
{% if task.hint %}
Hint: {{ task.hint }}
{% endif %}