codexapi 0.5.2__tar.gz → 0.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codexapi-0.5.2/src/codexapi.egg-info → codexapi-0.5.3}/PKG-INFO +1 -1
- {codexapi-0.5.2 → codexapi-0.5.3}/pyproject.toml +1 -1
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/__init__.py +1 -1
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/ralph.py +2 -0
- {codexapi-0.5.2 → codexapi-0.5.3/src/codexapi.egg-info}/PKG-INFO +1 -1
- {codexapi-0.5.2 → codexapi-0.5.3}/LICENSE +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/README.md +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/setup.cfg +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/__main__.py +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/agent.py +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/cli.py +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/foreach.py +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/task.py +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi/taskfile.py +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi.egg-info/SOURCES.txt +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi.egg-info/dependency_links.txt +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi.egg-info/entry_points.txt +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi.egg-info/requires.txt +0 -0
- {codexapi-0.5.2 → codexapi-0.5.3}/src/codexapi.egg-info/top_level.txt +0 -0
|
@@ -47,6 +47,8 @@ def run_ralph_loop(
|
|
|
47
47
|
raise TypeError("completion_promise must be a string or None")
|
|
48
48
|
if max_iterations < 0:
|
|
49
49
|
raise ValueError("max_iterations must be >= 0")
|
|
50
|
+
if hasattr(sys.stdout, "reconfigure"):
|
|
51
|
+
sys.stdout.reconfigure(line_buffering=True)
|
|
50
52
|
|
|
51
53
|
state_path = _state_path(cwd)
|
|
52
54
|
_ensure_state_dir(state_path)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|