Reduce max iterations by default (#7535)

This commit is contained in:
Engel Nyst 2025-03-27 02:00:14 +01:00 committed by GitHub
parent 60196d2eca
commit 8e9eb7d07d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@
#daytona_target = ""
# Base path for the workspace
workspace_base = "./workspace"
#workspace_base = "./workspace"
# Cache directory path
#cache_dir = "/tmp/cache"
@ -64,7 +64,7 @@ workspace_base = "./workspace"
#max_budget_per_task = 0.0
# Maximum number of iterations
#max_iterations = 100
#max_iterations = 250
# Path to mount the workspace in the sandbox
#workspace_mount_path_in_sandbox = "/workspace"

View File

@ -5,7 +5,7 @@ from pydantic import BaseModel
from pydantic.fields import FieldInfo
OH_DEFAULT_AGENT = 'CodeActAgent'
OH_MAX_ITERATIONS = 500
OH_MAX_ITERATIONS = 250
def get_field_info(field: FieldInfo) -> dict[str, Any]: