-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move pregel tests around to match upstream.
- Loading branch information
Showing
9 changed files
with
20,836 additions
and
20,786 deletions.
There are no files selected for viewing
1,591 changes: 1,591 additions & 0 deletions
1,591
langgraph-tests/tests/__snapshots__/test_large_cases.ambr
Large diffs are not rendered by default.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
langgraph-tests/tests/__snapshots__/test_large_cases_async.ambr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# serializer version: 1 | ||
# name: test_weather_subgraph[aiomysql] | ||
''' | ||
%%{init: {'flowchart': {'curve': 'linear'}}}%% | ||
graph TD; | ||
__start__([<p>__start__</p>]):::first | ||
router_node(router_node) | ||
normal_llm_node(normal_llm_node) | ||
weather_graph_model_node(model_node) | ||
weather_graph_weather_node(weather_node<hr/><small><em>__interrupt = before</em></small>) | ||
__end__([<p>__end__</p>]):::last | ||
__start__ --> router_node; | ||
normal_llm_node --> __end__; | ||
weather_graph_weather_node --> __end__; | ||
router_node -.-> normal_llm_node; | ||
router_node -.-> weather_graph_model_node; | ||
router_node -.-> __end__; | ||
subgraph weather_graph | ||
weather_graph_model_node --> weather_graph_weather_node; | ||
end | ||
classDef default fill:#f2f0ff,line-height:1.2 | ||
classDef first fill-opacity:0 | ||
classDef last fill:#bfb6fc | ||
|
||
''' | ||
# --- | ||
# name: test_weather_subgraph[aiomysql_pool] | ||
''' | ||
%%{init: {'flowchart': {'curve': 'linear'}}}%% | ||
graph TD; | ||
__start__([<p>__start__</p>]):::first | ||
router_node(router_node) | ||
normal_llm_node(normal_llm_node) | ||
weather_graph_model_node(model_node) | ||
weather_graph_weather_node(weather_node<hr/><small><em>__interrupt = before</em></small>) | ||
__end__([<p>__end__</p>]):::last | ||
__start__ --> router_node; | ||
normal_llm_node --> __end__; | ||
weather_graph_weather_node --> __end__; | ||
router_node -.-> normal_llm_node; | ||
router_node -.-> weather_graph_model_node; | ||
router_node -.-> __end__; | ||
subgraph weather_graph | ||
weather_graph_model_node --> weather_graph_weather_node; | ||
end | ||
classDef default fill:#f2f0ff,line-height:1.2 | ||
classDef first fill-opacity:0 | ||
classDef last fill:#bfb6fc | ||
|
||
''' | ||
# --- |
Oops, something went wrong.