File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1047,7 +1047,7 @@ class HarnessConfig(Config):
10471047 bindings: BindingsConfig = BindingsConfig()
10481048 objects: ObjectsConfig = ObjectsConfig()
10491049 artifacts: ArtifactsConfig = ArtifactsConfig()
1050- max_turns: int = 10
1050+ max_turns: int = - 1 # <= 0 means unbounded (run until a stop condition)
10511051
10521052class ModelConfig (Config ):
10531053 name: str | None = None
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ class HarnessConfig(LifecycleConfig):
112112 bindings : BindingsConfig = BindingsConfig ()
113113 objects : ObjectsConfig = ObjectsConfig ()
114114 artifacts : ArtifactsConfig = ArtifactsConfig ()
115- max_turns : int = 10
115+ max_turns : int = - 1
116116
117117 @classmethod
118118 def __pydantic_init_subclass__ (cls , ** kwargs : object ) -> None :
You can’t perform that action at this time.
0 commit comments