mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-11 20:27:54 +02:00
- Now that checkpoint at end of each step adds no latency there is not point to keep this - This will make it easier to add future features
101 lines
3.4 KiB
Plaintext
101 lines
3.4 KiB
Plaintext
# serializer version: 1
|
|
# name: test_in_one_fan_out_state_graph_waiting_edge_custom_state_class
|
|
'''
|
|
+-----------+
|
|
| __start__ |
|
|
+-----------+
|
|
*
|
|
*
|
|
*
|
|
+---------------+
|
|
| rewrite_query |
|
|
+---------------+
|
|
*** ...
|
|
* .
|
|
** ...
|
|
+--------------+ .
|
|
| analyzer_one | .
|
|
+--------------+ .
|
|
* .
|
|
* .
|
|
* .
|
|
+---------------+ +---------------+
|
|
| retriever_one | | retriever_two |
|
|
+---------------+ +---------------+
|
|
*** ***
|
|
* *
|
|
** **
|
|
+----+
|
|
| qa |
|
|
+----+
|
|
*
|
|
*
|
|
*
|
|
+---------+
|
|
| __end__ |
|
|
+---------+
|
|
'''
|
|
# ---
|
|
# name: test_in_one_fan_out_state_graph_waiting_edge_via_branch
|
|
'''
|
|
+-----------+
|
|
| __start__ |
|
|
+-----------+
|
|
*
|
|
*
|
|
*
|
|
+---------------+
|
|
| rewrite_query |
|
|
+---------------+
|
|
*** ...
|
|
* .
|
|
** ...
|
|
+--------------+ .
|
|
| analyzer_one | .
|
|
+--------------+ .
|
|
* .
|
|
* .
|
|
* .
|
|
+---------------+ +---------------+
|
|
| retriever_one | | retriever_two |
|
|
+---------------+ +---------------+
|
|
*** ***
|
|
* *
|
|
** **
|
|
+----+
|
|
| qa |
|
|
+----+
|
|
*
|
|
*
|
|
*
|
|
+---------+
|
|
| __end__ |
|
|
+---------+
|
|
'''
|
|
# ---
|
|
# name: test_nested_graph
|
|
'''
|
|
+-----------+
|
|
| __start__ |
|
|
+-----------+
|
|
*
|
|
*
|
|
*
|
|
+-------+
|
|
| inner |
|
|
+-------+
|
|
*
|
|
*
|
|
*
|
|
+------+
|
|
| side |
|
|
+------+
|
|
*
|
|
*
|
|
*
|
|
+---------+
|
|
| __end__ |
|
|
+---------+
|
|
'''
|
|
# ---
|