diff --git a/docs/docs/concepts/low_level.md b/docs/docs/concepts/low_level.md index c8e05ec31..4656d971a 100644 --- a/docs/docs/concepts/low_level.md +++ b/docs/docs/concepts/low_level.md @@ -22,10 +22,6 @@ A super-step can be considered a single iteration over the graph nodes. Nodes th The `StateGraph` class is the main graph class to use. This is parameterized by a user defined `State` object. -### MessageGraph - -The `MessageGraph` class is a special type of graph. The `State` of a `MessageGraph` is ONLY a list of messages. This class is rarely used except for chatbots, as most applications require the `State` to be more complex than a list of messages. - ### Compiling your graph To build your graph, you first define the [state](#state), you then add [nodes](#nodes) and [edges](#edges), and then you compile it. What exactly is compiling your graph and why is it needed?