From 8e829f38af9031bdeccbfcfa46c8bed7d43e7ec6 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Tue, 18 Mar 2025 08:05:25 -0700 Subject: [PATCH] Smaller sizes until we merge the fixes --- libs/langgraph/bench/__main__.py | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/libs/langgraph/bench/__main__.py b/libs/langgraph/bench/__main__.py index 12d04a6ab..da6b7b6f3 100644 --- a/libs/langgraph/bench/__main__.py +++ b/libs/langgraph/bench/__main__.py @@ -205,18 +205,30 @@ benchmarks = ( }, ), ( - "sequential_50", + "sequential_20", create_sequential(20).compile(), create_sequential(20).compile(), {"messages": []}, # Empty list of messages ), ( - "sequential_200", - create_sequential(200).compile(), - create_sequential(200).compile(), + "sequential_50", + create_sequential(50).compile(), + create_sequential(50).compile(), {"messages": []}, # Empty list of messages ), # ( + # "sequential_100", + # create_sequential(100).compile(), + # create_sequential(100).compile(), + # {"messages": []}, # Empty list of messages + # ), + # ( + # "sequential_200", + # create_sequential(200).compile(), + # create_sequential(200).compile(), + # {"messages": []}, # Empty list of messages + # ), + # ( # "sequential_1000", # create_sequential(1000).compile(), # create_sequential(1000).compile(),