From deb2d330b6f62c90294c3c8a5a308ae523f6f20a Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Fri, 13 Dec 2024 15:46:40 -0500 Subject: [PATCH] Reset iteration budget and update default max_iterations to 500 (#5590) Co-authored-by: openhands --- openhands/core/config/config_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/core/config/config_utils.py b/openhands/core/config/config_utils.py index 6e7ddebac6..38c3c1d03d 100644 --- a/openhands/core/config/config_utils.py +++ b/openhands/core/config/config_utils.py @@ -2,7 +2,7 @@ from types import UnionType from typing import get_args, get_origin OH_DEFAULT_AGENT = 'CodeActAgent' -OH_MAX_ITERATIONS = 100 +OH_MAX_ITERATIONS = 500 def get_field_info(f):