Skip to content

Commit 2ea51d8

Browse files
committed
v1.1.2
1 parent 0413072 commit 2ea51d8

11 files changed

+52
-36
lines changed

Backend/index.md

+30-23
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,38 @@ The core file that convert json to LangGraph is [/src/WorkFlow.py](https://githu
66

77
## Json Format
88

9-
json node format like this:
10-
you can extend ext to put your data, this is elastic design.
11-
for example, the ext.info is a ext and able to parse in our backend.
9+
It will be subgraphs.
10+
11+
for each subgraph, contain graph_name, graph_nodes, graph_serial_number
12+
13+
you can put anything at ext
14+
1215
```
13-
{
14-
"nodes": [
15-
{
16-
"uniq_id": "1",
17-
"nexts": [
18-
"2"
19-
],
20-
"type": "START",
21-
"name": "Node 1",
22-
"description": "",
23-
"tool": "",
24-
"true_next": null,
25-
"false_next": null,
26-
"ext": {
27-
"pos_x": 126,
28-
"pos_y": 146,
29-
"width": 200,
30-
"height": 200,
31-
"info": ""
16+
[
17+
{
18+
"name": "root",
19+
"nodes": [
20+
{
21+
"uniq_id": "1",
22+
"type": "STEP",
23+
"name": "Node 1",
24+
"description": "",
25+
"tool": "",
26+
"nexts": [],
27+
"true_next": null,
28+
"false_next": null,
29+
"ext": {
30+
"pos_x": 420,
31+
"pos_y": 60,
32+
"width": 150,
33+
"height": 200,
34+
"info": null
35+
}
3236
}
33-
},
37+
],
38+
"serial_number": 2
39+
}
40+
]
3441
```
3542

3643

Frontend/Graph.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,45 @@ layout: frontend
1010
#### Start Node
1111
A graph(json) only have one start node, this will mapping to LangGraph START
1212

13-
![](images/start.webp)
13+
![](images/node_start.webp)
1414

1515
#### Step Node
1616
Step Node will mapping to LangGraph add_node, you can drag edge from left node(right port) to right node(left port)
1717

18-
![](images/step.webp)
18+
![](images/node_step.webp)
1919

2020
if you drag two node toward to each other, can create cycle.
2121

2222
#### Step Node with tool
2323
Step node fill tool will call function, the tool definition need a tool node
2424

25-
![](images/use_tool.webp)
25+
![](images/node_use_tool.webp)
2626

2727
#### Tool Node
2828
Tool node need write real python function code, and need `@tool` decorator like LangChain Custom Tools
2929

30-
![](images/tool.webp)
30+
![](images/node_tool.webp)
3131

3232
#### Contition Node
3333
CONDITION node will mapping to LangGraph conditional_edge
3434

3535
* green edge is true case path
3636
* red edge is false case path
3737

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)
4239

4340
#### 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 )
4548

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)*
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Frontend/images/node_subgraph.webp

5.4 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

Others/index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ If you want to learn more about LangGraph, we also have [learning LangGraph for
44

55
## deprecated projects
66

7-
* old Qt version of [CrewAI-GUI](https://github.com/LangGraph-GUI/CrewAI-GUI)
7+
* old js version: [LangGraph-GUI](https://github.com/LangGraph-GUI/LangGraph-GUI/tree/0.6.1)
8+
* old flask version: [backend](https://github.com/LangGraph-GUI/LangGraph-GUI-backend/tree/flask)
89
* old Qt version: [LangGraph-GUI-Qt](https://github.com/LangGraph-GUI/LangGraph-GUI-backend/tree/GUI-Qt)
9-
* old ver [Flask backend](https://github.com/LangGraph-GUI/LangGraph-GUI-backend/tree/flask)
10+
* old Qt version: [CrewAI-GUI](https://github.com/LangGraph-GUI/CrewAI-GUI)

index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ If you have any questions or would like to leave a message, please use our [GitH
2323
* [task manager](https://github.com/orgs/LangGraph-GUI/projects)
2424

2525

26-
## _
26+
## Others
2727
We hope you find the information you need. If you have any questions, feel free to reach out!

0 commit comments

Comments
 (0)