academic program
Often times, we don't want to write complete prompts, but rather we want to A prompt template that can be modified later based on additional input data before submitting it to Claude. If you wish to Claude It would be very useful to perform the same task each time, but the data Claude uses may be different each time.
Luckily, we can get the best of both worlds with the Separate the fixed frame of the prompt from the variable user input, then replace the user input in the prompt before sending the complete prompt to Claude, very easy to achieve this.
Below, we will demonstrate step-by-step how to write replaceable prompt templates and how to replace user input.
typical example
In the first example, we asked Claude to act as an animal sound generator. Note that the full prompt submitted to Claude (the third yellow box in the chain) simply replaces the input ("Cow" in the second box in this case) into the prompt template (the first box). Note that "Cow" replaces "{{ANIMAL}}" in the third yellow box.
Note: You don't actually have to give the substitution placeholder a special nameIn this example, {{ANIMAL}} is used because it is a format requirement for the exercise. In this example, {{ANIMAL}} is used because that is the formatting requirement for the exercise. But in general, we could just as easily refer to it as "{{CREATURE}}" or "{{A}}" (but It's usually best to make your placeholders specific and relevant(This makes the hints easy to understand and easy for the user to parse, even if there is no replacement). Just make sure that whatever you name the replacement placeholder, you use the same name in the replacement formula.
Example:
输入:
提示模板
用户:我会告诉你一种动物的名字。请回复该动物发出的声音。{{ANIMAL}}
+
输入 {{ANIMAL}}
牛
=
替换后的提示
用户:我会告诉你一种动物的名字。请回复该动物发出的声音。牛
输出:
Claude 的回应
哞。
Why are we separating and replacing inputs like this? Because.Prompt templates simplify repetitive tasks. Suppose you build a cue structure that invites third-party users to submit content (in this case, animals they want to generate sounds for). These third-party users don't have to write or view the full prompt. They just need to fill in the variables.
We're using a spreadsheet function for substitution here, but that's also coding best practice! We use the {{double braces}} format in our own code.
Attention:Hint templates can contain any number of variables.
When introducing substitution variables like this one, it's important to make sure that Claude knows where the variable begins and ends (separate from the directive or task description). Let's look at an example that doesn't separate instructions from substitution variables.
Example:
输入:
提示模板
User: Yo Claude. {{EMAIL}} <----- 将这封邮件变得更加礼貌,但不要修改其他内容。
+
输入 {{EMAIL}}
明天早上 6 点到场,因为我是 CEO,我说了算。
=
替换后的提示
User: Yo Claude. 明天早上 6 点到场,因为我是 CEO,我说了算。 <----- 将这封邮件变得更加礼貌,但不要修改其他内容。
输出:
Claude 的回复
亲爱的 Claude,
希望你一切安好。作为 CEO,我想请求你明天早上 6 点到我们的办公室。我知道这可能是一个早起的时间,但我相信这对我们公司的成功是必要的。如果你对此时间有任何疑虑或冲突,请告诉我,我们可以一起找到合适的安排。
感谢你一直以来的奉献和辛勤工作。期待明天见到你。
此致敬礼,
[你们 CEO 的名字]
Here, Claude considers "Yo Claude" to be part of the email and rewrites it as "Dear Claude"! You can spot this because it starts with "Dear Claude" in the rewrite. It's pretty clear to humans, especially in the prompt template, where the email starts and ends, but in the replacement prompt, it's not so obvious.
How do we solve this problem?Wrap input in XML tags! We did this below, and as you can see, there is no longer a "Dear Claude" in the output.
XML tag are sharp bracketed tags like this one. They appear in pairs and consist of an open tag (e.g. ) and a closed tag (e.g. ) marked by a "/". XML tags are used to wrap content, e.g. content.
Attention: Although Claude recognizes and handles a wide range of separators and delimiters, we recommend that youSpecial use of XML tags as delimiters for Claudebecause Claude's training specifically focuses on using XML tags as a hint organization mechanism. In addition to function calls, theClaude is not trained to maximize your performance by specifically targeting certain XML tags.We intended Claude to be very flexible and customizable.
Example:
输入:
提示模板
用户:Yo Claude. <email>{{EMAIL}}</email> <----- 请将这封邮件写得更礼貌一些,但不要改变其内容。
+
输入 {{EMAIL}}
早上6点到,因为我是CEO,所以我这么说。
=
替换后的提示
用户:Yo Claude. <email>早上6点到,因为我是CEO,所以我这么说。</email> <----- 请将这封邮件写得更礼貌一些,但不要改变其内容。
输出:
Claude的回复
亲爱的 [您的名字],
希望这封邮件能给您带来愉快的心情。作为CEO,我希望您能在早上6点到场。我理解这可能是一个很早的时间,但我相信这是我们组织成功的必要条件。请告知我这个时间是否适合您,非常感谢您的配合。
此致,
[CEO的名字]
Let's look at another example of how XML tags can help.
In the following hint, Claude misinterprets both the instruction part and the input part of the hint. Due to formatting issues, it incorrectly sees "Each is about an animal, like rabbits" as part of the list, which the user (the person who populates the {{SENTENCES}} variable) probably doesn't want.
Example:
输入:
提示模板
用户:以下是一组句子。告诉我列表中的第二个句子。
- 每个句子都与一种动物有关,比如兔子。
{{SENTENCES}}
+
输入 {{SENTENCES}}
- 我喜欢奶牛的叫声
- 这句话是关于蜘蛛的
- 这句话看起来是关于狗的,但实际上是关于猪的
=
替换后的提示
用户:以下是一组句子。告诉我列表中的第二个句子。
- 每个句子都与一种动物有关,比如兔子。
- 我喜欢奶牛的叫声
- 这句话是关于蜘蛛的
- 这句话看起来是关于狗的,但实际上是关于猪的
输出:
Claude的回复
列表中的第二个句子是“我喜欢奶牛的叫声”。
To solve this problem, we simply wrap the user-entered sentence in XML tags. This will show Claude where the input begins and ends, despite the misleading dash before "Each is about an animal, like rabbits".
Example:
输入:
Prompt 模板
User: 下面是一组句子。告诉我列表中的第二项。
- 每个句子都与动物有关,比如兔子。
<sentences>
{{SENTENCES}}
</sentences>
+
Input {{SENTENCES}}
- 我喜欢牛的声音
- 这句话是关于蜘蛛的
- 这句话看似是关于狗的,但实际上是关于猪的
=
替换后的 Prompt
User: 下面是一组句子。告诉我列表中的第二项。
- 每个句子都与动物有关,比如兔子。
<sentences>
- 我喜欢牛的声音
- 这句话是关于蜘蛛的
- 这句话看似是关于狗的,但实际上是关于猪的
</sentences>
输出:
Claude 的回复
列表中的第二项是“这句话是关于蜘蛛的”。
Attention: In the incorrect "Every sentence is about animals" prompt, we must include a hyphen in order for Claude to give the incorrect response in the example we want. This is an important lesson in prompt design:Details matter! It's worth the time.Check your prompts for spelling and grammatical errors. Claude is very sensitive to patterns (in its early stages, it was an unfine-tuned text-only prediction tool); it's more likely to make a mistake when you make a mistake, it behaves more intelligently when you appear smart, it behaves stupidly when you appear stupid, etc.
If you are ready to try the chapter exercises, click on the links below. Scroll down if you want to try any of the examples in this lesson!
practice
Exercise 4.1 - Haiku Themes
Write a prompt in the highlighted template box that accepts a variable named "{{TOPIC}}" and outputs a haiku about that topic. This exercise is designed to test your understanding of the variable template structure.
Example:
输入:
Prompt 模板
User: 写一首关于 {{TOPIC}} 的俳句。
+
Input {{TOPIC}}
猪
=
替换后的 Prompt
User: 写一首关于猪的俳句。
输出:
Claude 的回复
这是关于猪的俳句:
泥中拱鼻响
卷尾粉胖咕噜
猪儿游农场
Exercise 4.2 - Dog Problems with Spelling Errors
Fix the hints in the highlighted template box by adding XML tags so that Claude gives the correct answer.
Try not to change anything else in the prompt. This confusing and error-ridden writing is intentional and is intended to give you an idea of how Claude responds to these errors. If your prompt generates a correct answer, Claude's response will turn green.
Attention: While Claude is able to parse poor grammar and misspelled cues to some extent, theClearly written, spell-checked, and grammatically correct prompts will greatly reduce Claude's risk of making mistakes and significantly improve the quality of his output.
Example:
输入:
Prompt 模板
User: 嗨是我我有个关于狗的问题 jkaerjv <question>{{QUESTION}}</question> jklmvca tx 它对我帮助很大非常非常多 atx fst fst 答案简短简短 tx
+
Input {{QUESTION}}
狗能是棕色的吗?
=
替换后的 Prompt
User: 嗨是我我有个关于狗的问题 jkaerjv <question>狗能是棕色的吗?</question> jklmvca tx 它对我帮助很大非常非常多 atx fst fst 答案简短简短 tx
输出:
Claude 的回复
是的,狗可以是棕色的。
❓ If you need a prompt, click the plus sign (➕) on the far left of this line.
Exercise 4.3 - Dog Problems Part II
will notAdd XML tags to fix the prompts in the highlighted template box. Instead, remove only one or two words from the prompt.
Again, try not to change anything else in the prompt. This will demonstrate the type of language Claude is able to parse and understand. If your hint generates the correct answer, Claude's response will turn green.
Example:
输入:
Prompt 模板
User: 嗨是我我有个关于狗的问题 {{QUESTION}} tx 它对我帮助很大非常非常多 atx fst fst 答案简短简短 tx
+
Input {{QUESTION}}
狗能是棕色的吗?
=
替换后的 Prompt
User: 嗨是我我有个关于狗的问题 狗能是棕色的吗? tx 它对我帮助很大非常非常多 atx fst fst 答案简短简短 tx
输出:
Claude 的回复
是的,狗可能有棕色的毛发。棕色是许多犬种常见的毛色。
❓ If you need a prompt, click the plus sign (➕) on the far left of this line.