From 953e2907d4347d9477e4908e912b83b54b6a5aeb Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Tue, 28 Jan 2025 10:16:54 -0500 Subject: [PATCH] docs: remove MessageGraph from concepts doc (#3226) --- docs/docs/concepts/low_level.md | 4 ---- 1 file changed, 4 deletions(-) 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?