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

Fix grammatical error in state-schema.ipynb #41

Open
wants to merge 2 commits 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 module-2/state-schema.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
" \n",
"But, note that these are type hints. \n",
"\n",
"They can used by static type checkers (like [mypy](https://github.com/python/mypy)) or IDEs to catch potential type-related errors before the code is run. \n",
"They can be used by static type checkers (like [mypy](https://github.com/python/mypy)) or IDEs to catch potential type-related errors before the code is run. \n",
"\n",
"But they are not enforced at runtime!"
]
Expand Down Expand Up @@ -117,7 +117,7 @@
"source": [
"We can use our defined state class (e.g., here `TypedDictState`) in LangGraph by simply passing it to `StateGraph`.\n",
"\n",
"And, we can think about each state key just a \"channel\" in our graph. \n",
"And, we can think about each state key as just a \"channel\" in our graph. \n",
"\n",
"As discussed in Module 1, we overwrite the value of a specified key or \"channel\" in each node."
]
Expand Down