From 406b17c9d1d4100e8123554a733fca6eb4880c18 Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Wed, 7 Jan 2026 16:26:18 +0100 Subject: [PATCH] Fix variable name --- Anthropic 1P/04_Separating_Data_and_Instructions.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Anthropic 1P/04_Separating_Data_and_Instructions.ipynb b/Anthropic 1P/04_Separating_Data_and_Instructions.ipynb index 7d81fd1..892ac02 100644 --- a/Anthropic 1P/04_Separating_Data_and_Instructions.ipynb +++ b/Anthropic 1P/04_Separating_Data_and_Instructions.ipynb @@ -67,7 +67,7 @@ "source": [ "### Examples\n", "\n", - "In this first example, we're asking Claude to act as an animal noise generator. Notice that the full prompt submitted to Claude is just the `PROMPT_TEMPLATE` substituted with the input (in this case, \"Cow\"). Notice that the word \"Cow\" replaces the `ANIMAL` placeholder via an f-string when we print out the full prompt.\n", + "In this first example, we're asking Claude to act as an animal noise generator. Notice that the full prompt submitted to Claude is just the `PROMPT` substituted with the input (in this case, \"Cow\"). Notice that the word \"Cow\" replaces the `ANIMAL` placeholder via an f-string when we print out the full prompt.\n", "\n", "**Note:** You don't have to call your placeholder variable anything in particular in practice. We called it `ANIMAL` in this example, but just as easily, we could have called it `CREATURE` or `A` (although it's generally good to have your variable names be specific and relevant so that your prompt template is easy to understand even without the substitution, just for user parseability). Just make sure that whatever you name your variable is what you use for the prompt template f-string." ]