From 3ea75ca65f449317bda56caaaf7a8f2e635cca61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herbert=20M=C3=BChlburger?= Date: Thu, 10 Oct 2024 15:32:33 +0200 Subject: [PATCH 1/2] Update state-schema.ipynb fix grammar --- module-2/state-schema.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module-2/state-schema.ipynb b/module-2/state-schema.ipynb index 189cfd4b5..c99cf0491 100644 --- a/module-2/state-schema.ipynb +++ b/module-2/state-schema.ipynb @@ -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!" ] From 9549ae7e030aa328bd1340600d30fd2a67df5422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herbert=20M=C3=BChlburger?= Date: Thu, 10 Oct 2024 15:36:01 +0200 Subject: [PATCH 2/2] Update state-schema.ipynb --- module-2/state-schema.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module-2/state-schema.ipynb b/module-2/state-schema.ipynb index c99cf0491..c99daf16d 100644 --- a/module-2/state-schema.ipynb +++ b/module-2/state-schema.ipynb @@ -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." ]