File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -96,19 +96,23 @@ with the usage of the `vars` parameter.
96
96
You will be provided with text to translate to {{ language }}.
97
97
Respond with nothing but the translated text.
98
98
99
- Don't translate the following: {{ never-translate | join(', ') }}
99
+ Don't translate the following
100
+ {% for item in neverTranslate %}
101
+ - {{ item }}
102
+ {% endfor %}`
100
103
101
104
prompt-file : README.md
102
105
vars : |
103
106
language: Spanish
104
- never-translate :
107
+ neverTranslate :
105
108
- code blocks
106
- - markdown headers
107
109
- image alt text
108
110
` ` `
109
111
110
- > **Note**: Variables can be used for both ` prompt`/`prompt-file` and
111
- > `system-prompt`/`system-prompt-file` inputs.
112
+ > [!TIP]
113
+ > Variable templating makes most
114
+ > sense when using ` prompt-file` or `system-prompt-file` inputs, as it allows
115
+ > you to maintain reusable prompt templates with dynamic content.
112
116
113
117
# # Permissions 🔒
114
118
You can’t perform that action at this time.
0 commit comments