Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

09_Complex_Prompts - TASK_DESCRIPTION should be F-string #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Anthropic 1P/09_Complex_Prompts_from_Scratch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
"# Expand on the specific tasks you want Claude to do, as well as any rules that Claude might have to follow.\n",
"# This is also where you can give Claude an \"out\" if it doesn't have an answer or doesn't know.\n",
"# It's ideal to show this description and rules to a friend to make sure it is laid out logically and that any ambiguous words are clearly defined.\n",
"TASK_DESCRIPTION = \"\"\"Write a clear, concise answer to this question:\n",
"TASK_DESCRIPTION = f\"\"\"Write a clear, concise answer to this question:\n",
"\n",
"<question>\n",
"{QUESTION}\n",
Expand Down Expand Up @@ -1134,7 +1134,7 @@
"# Expand on the specific tasks you want Claude to do, as well as any rules that Claude might have to follow.\n",
"# This is also where you can give Claude an \"out\" if it doesn't have an answer or doesn't know.\n",
"# It's ideal to show this description and rules to a friend to make sure it is laid out logically and that any ambiguous words are clearly defined.\n",
"TASK_DESCRIPTION = \"\"\"Write a clear, concise answer to this question:\n",
"TASK_DESCRIPTION = f\"\"\"Write a clear, concise answer to this question:\n",
"\n",
"<question>\n",
"{QUESTION}\n",
Expand Down