Skip to content

Commit

Permalink
Fix tiny typo in llm_chain.ipynb (#6679)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwabyick authored Sep 4, 2024
1 parent 2d57260 commit 5fd5c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core_docs/docs/tutorials/llm_chain.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
"source": [
"## Prompt Templates\n",
"\n",
"Right now we are passing a list of messages directly into the language model. Where does this list of messages come from? Usually it constructed from a combination of user input and application logic. This application logic usually takes the raw user input and transforms it into a list of messages ready to pass to the language model. Common transformations include adding a system message or formatting a template with the user input.\n",
"Right now we are passing a list of messages directly into the language model. Where does this list of messages come from? Usually it is constructed from a combination of user input and application logic. This application logic usually takes the raw user input and transforms it into a list of messages ready to pass to the language model. Common transformations include adding a system message or formatting a template with the user input.\n",
"\n",
"PromptTemplates are a concept in LangChain designed to assist with this transformation. They take in raw user input and return data (a prompt) that is ready to pass into a language model. \n",
"\n",
Expand Down

0 comments on commit 5fd5c45

Please sign in to comment.