From 8dcd058404ece60abc2e608371804ed3bf77479e Mon Sep 17 00:00:00 2001 From: Neeraj G <108350739+NeerajG03@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:51:49 +0530 Subject: [PATCH] Formatting inconsistency in low_level.md (#1342) --- docs/docs/concepts/low_level.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/concepts/low_level.md b/docs/docs/concepts/low_level.md index 522017bcc..26b5e9ff8 100644 --- a/docs/docs/concepts/low_level.md +++ b/docs/docs/concepts/low_level.md @@ -191,7 +191,7 @@ class State(MessagesState): ## Nodes -In LangGraph, nodes are typically python functions (sync or `async`) where the **first** positional argument is the [state](#state), and (optionally), the **second** positional argument is a "config", containing optional [configurable parameters](#configuration) (such as a `thread_id`). +In LangGraph, nodes are typically python functions (sync or async) where the **first** positional argument is the [state](#state), and (optionally), the **second** positional argument is a "config", containing optional [configurable parameters](#configuration) (such as a `thread_id`). Similar to `NetworkX`, you add these nodes to a graph using the [add_node][langgraph.graph.StateGraph.add_node] method: