mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
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 %}
|