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

updated sysyem to system prompt for clarity #118

Open
wants to merge 1 commit into
base: main
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 skills/citations/guide.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
"metadata": {},
"outputs": [],
"source": [
"sysyem_prompt = \"You will be acting as a conversational AI customer support assistant for the ecommerce website PetWorld. Your goal is to help answer customer questions in a friendly and helpful manner, using PetWorld's help center articles as your knowledge base.\"\n",
"system_prompt = \"You will be acting as a conversational AI customer support assistant for the ecommerce website PetWorld. Your goal is to help answer customer questions in a friendly and helpful manner, using PetWorld's help center articles as your knowledge base.\"\n",
"\n",
"prompt_template = '''\n",
"Here are the help center articles you have available, provided in <article> tags with unique IDs:\n",
Expand Down Expand Up @@ -307,7 +307,7 @@
"\n",
" response = client.messages.create(\n",
" model='claude-3-5-sonnet-20241022',\n",
" system=sysyem_prompt,\n",
" system=system_prompt,\n",
" messages=[\n",
" {\n",
" 'role': 'user',\n",
Expand Down