From 7d366266360b3c1b30e2887801f2dfaa21fe1aac Mon Sep 17 00:00:00 2001 From: Yash Malik <37410163+codeblech@users.noreply.github.com> Date: Thu, 5 Sep 2024 18:41:44 +0530 Subject: [PATCH] Update 05_Formatting_Output_and_Speaking_for_Claude.ipynb Minor Markdown fix --- .../05_Formatting_Output_and_Speaking_for_Claude.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompt_engineering_interactive_tutorial/Anthropic 1P/05_Formatting_Output_and_Speaking_for_Claude.ipynb b/prompt_engineering_interactive_tutorial/Anthropic 1P/05_Formatting_Output_and_Speaking_for_Claude.ipynb index 691aa13..7ff74e4 100644 --- a/prompt_engineering_interactive_tutorial/Anthropic 1P/05_Formatting_Output_and_Speaking_for_Claude.ipynb +++ b/prompt_engineering_interactive_tutorial/Anthropic 1P/05_Formatting_Output_and_Speaking_for_Claude.ipynb @@ -95,7 +95,7 @@ "source": [ "Why is this something we'd want to do? Well, having the output in **XML tags allows the end user to reliably get the poem and only the poem by writing a short program to extract the content between XML tags**.\n", "\n", - "An extension of this technique is to **put the first XML tag in the `assistant` turn. When you put text in the `assistant` turn, you're basically telling Claude that Claude has already said something, and that it should continue from that point onward. This technique is called \"speaking for Claude\" or \"prefilling Claude's response.\"\n", + "An extension of this technique is to **put the first XML tag in the `assistant` turn**. When you put text in the `assistant` turn, you're basically telling Claude that Claude has already said something, and that it should continue from that point onward. This technique is called \"speaking for Claude\" or \"prefilling Claude's response.\"\n", "\n", "Below, we've done this with the first `` XML tag. Notice how Claude continues directly from where we left off." ]