Skip to content

Commit 16d41ea

Browse files
CodeWithEmadefriis
andauthored
docs: typos fixed (#26234)
While going through the chatbot tutorial, I noticed a couple of typos and grammatical issues. Also, the pip install command for langchain_community was commented out, but the document mentions installing it. --------- Co-authored-by: Erick Friis <[email protected]>
1 parent fa229d6 commit 16d41ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/docs/tutorials/chatbot.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"\n",
106106
"## Quickstart\n",
107107
"\n",
108-
"First up, let's learn how to use a language model by itself. LangChain supports many different language models that you can use interchangably - select the one you want to use below!\n",
108+
"First up, let's learn how to use a language model by itself. LangChain supports many different language models that you can use interchangeably - select the one you want to use below!\n",
109109
"\n",
110110
"```{=mdx}\n",
111111
"import ChatModelTabs from \"@theme/ChatModelTabs\";\n",
@@ -254,7 +254,7 @@
254254
"metadata": {},
255255
"outputs": [],
256256
"source": [
257-
"# ! pip install langchain_community"
257+
"%pip install langchain_community"
258258
]
259259
},
260260
{
@@ -952,7 +952,7 @@
952952
"source": [
953953
"## Streaming\n",
954954
"\n",
955-
"Now we've got a function chatbot. However, one *really* important UX consideration for chatbot application is streaming. LLMs can sometimes take a while to respond, and so in order to improve the user experience one thing that most application do is stream back each token as it is generated. This allows the user to see progress.\n",
955+
"Now we've got a functioning chatbot. However, one *really* important UX consideration for chatbot applications is streaming. LLMs can sometimes take a while to respond, and so in order to improve the user experience one thing that most applications do is stream back each token as it is generated. This allows the user to see progress.\n",
956956
"\n",
957957
"It's actually super easy to do this!\n",
958958
"\n",

0 commit comments

Comments
 (0)