Skip to content

Instantly share code, notes, and snippets.

@narenaryan
Created April 28, 2024 21:05
Show Gist options
  • Save narenaryan/7fde387cec4934afb945851432145263 to your computer and use it in GitHub Desktop.
Save narenaryan/7fde387cec4934afb945851432145263 to your computer and use it in GitHub Desktop.
Context: {{ prompt.context }}
{% if prompt.instructions|length > 1 %}
Follow the below instructions step-by-step for objective:
{% for instruction in prompt.instructions -%}
{{loop.index}}. {{ instruction }}
{% endfor %}
{% endif %}
Examples:
{% for example in prompt.examples -%}
{%- for k in example %}
{{k}}: {{ example[k] }}
{%- endfor %}
{% endfor %}
Audience: {{ prompt.metadata.domain }}
Task Difficulty: {{ prompt.metadata.difficulty }}
Reply in tone: {{ prompt.constraints.tone }}
Objective: {{ prompt.objective }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment