@@ -10,37 +10,45 @@ layout: frontend
10
10
#### Start Node
11
11
A graph(json) only have one start node, this will mapping to LangGraph START
12
12
13
- ![ ] ( images/start .webp )
13
+ ![ ] ( images/node_start .webp )
14
14
15
15
#### Step Node
16
16
Step Node will mapping to LangGraph add_node, you can drag edge from left node(right port) to right node(left port)
17
17
18
- ![ ] ( images/step .webp )
18
+ ![ ] ( images/node_step .webp )
19
19
20
20
if you drag two node toward to each other, can create cycle.
21
21
22
22
#### Step Node with tool
23
23
Step node fill tool will call function, the tool definition need a tool node
24
24
25
- ![ ] ( images/use_tool .webp )
25
+ ![ ] ( images/node_use_tool .webp )
26
26
27
27
#### Tool Node
28
28
Tool node need write real python function code, and need ` @tool ` decorator like LangChain Custom Tools
29
29
30
- ![ ] ( images/tool .webp )
30
+ ![ ] ( images/node_tool .webp )
31
31
32
32
#### Contition Node
33
33
CONDITION node will mapping to LangGraph conditional_edge
34
34
35
35
* green edge is true case path
36
36
* red edge is false case path
37
37
38
- ![ ] ( images/condition.webp )
39
-
40
- ## Other Resource
41
- * If you want to learn more about LangGraph, we have LangGraph for dummy : [ LangGraph-learn] ( https://github.com/LangGraph-GUI/LangGraph-learn ) *
38
+ ![ ] ( images/node_condition.webp )
42
39
43
40
#### Information Node
44
- INFO node do nothing, just append info to previous stage output
41
+ INFO node just append info to previous stage output
42
+
43
+ ![ ] ( images/node_info.webp )
44
+
45
+
46
+ #### Subgraph Node
47
+ SUBGRAPH node will run another graph (need have same subgraph name )
45
48
46
- ![ ] ( images/info.webp )
49
+ ![ ] ( images/node_subgraph.webp )
50
+
51
+
52
+
53
+ ## Other Resource
54
+ * If you want to learn more about LangGraph, we have LangGraph for dummy : [ LangGraph-learn] ( https://github.com/LangGraph-GUI/LangGraph-learn ) *
0 commit comments