Essentials
Variables
Like we’ve mentioned on the gists page, variables are placeholders in prompt templates.
In addition, there must be no spaces between the variable name and the curly brackets:
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
{{variable}}
{{1variable}} # ❌
{{variable-1}} # ❌
{{Variable-1}} # ❌
{{variable_1}} # ✅
{{variable1}} # ✅
{{ variable }} # ❌
{{variable}} # ✅
Was this page helpful?