AutoGenBench: Handle Ctrl-C more gracefully. (#2174)

* Prints the version of AutoGenBench from the command line, closing i1458

* Added autogenbench version to timestamp.txt

* Attempting to fix formatting.

* Add a gitignore for autogenbench

* Generalize to read all template dirs from Templates

* AutoGenBench logs telemetry when available.

* Remove spaces if present from template names.

* Bump version.

* Fixed formatting.

* Allow native warning to be skipped. Mount autogen repo in Docker if it can be found (experimental).

* Native execution now occurs in a venv.

* Bump version.

* Fixed a prompt escaping bug evident in GAIA task '6f37996b-2ac7-44b0-8e68-6d28256631b4'

* Updated all scenarios to use template discovery.

* Update with main version of runtime_logging.

* Better handling of Ctrl-C and cleanup of unused containers.

* Even stronger hinting that containers should be removed.

---------

Co-authored-by: gagb <gagb@users.noreply.github.com>
This commit is contained in:
afourney 2024-03-29 18:16:41 -07:00 committed by GitHub
parent 20893fc912
commit 061a857b3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 47 additions and 15 deletions

View File

@ -485,7 +485,14 @@ echo RUN.SH COMPLETE !#!#
# Create and run the container
container = client.containers.run(
image, command=["sh", "run.sh"], working_dir="/workspace", environment=env, detach=True, volumes=volumes
image,
command=["sh", "run.sh"],
working_dir="/workspace",
environment=env,
detach=True,
remove=True,
auto_remove=True,
volumes=volumes,
)
# Read the logs in a streaming fashion. Keep an eye on the time to make sure we don't need to stop.
@ -494,23 +501,45 @@ echo RUN.SH COMPLETE !#!#
logs = container.logs(stream=True)
log_file = open(os.path.join(work_dir, "console_log.txt"), "wt", encoding="utf-8")
stopping = False
exiting = False
for chunk in logs: # When streaming it should return a generator
# Stream the data to the log file and the console
chunk = chunk.decode("utf-8")
log_file.write(chunk)
log_file.flush()
sys.stdout.reconfigure(encoding="utf-8")
sys.stdout.write(chunk)
sys.stdout.flush()
while True:
try:
chunk = next(logs) # Manually step the iterator so it is captures with the try-catch
# Check if we need to terminate
if not stopping and time.time() - start_time >= docker_timeout:
# Stream the data to the log file and the console
chunk = chunk.decode("utf-8")
log_file.write(chunk)
log_file.flush()
sys.stdout.reconfigure(encoding="utf-8")
sys.stdout.write(chunk)
sys.stdout.flush()
# Check if we need to terminate
if not stopping and time.time() - start_time >= docker_timeout:
container.stop()
# Don't exit the loop right away, as there are things we may still want to read from the logs
# but remember how we got here.
stopping = True
except KeyboardInterrupt:
log_file.write("\nKeyboard interrupt (Ctrl-C). Attempting to exit gracefully.\n")
log_file.flush()
sys.stdout.write("\nKeyboard interrupt (Ctrl-C). Attempting to exit gracefully.\n")
sys.stdout.flush()
# Start the exit process, and give it a minute, but keep iterating
container.stop()
exiting = True
docker_timeout = time.time() - start_time + 60
except StopIteration:
break
# Don't exit the loop right away, as there are things we may still want to read from the logs
# but remember how we got here.
stopping = True
# Clean up the container
try:
container.remove()
except docker.errors.APIError:
pass
if stopping: # By this line we've exited the loop, and the container has actually stopped.
log_file.write("\nDocker timed out.\n")
@ -518,6 +547,9 @@ echo RUN.SH COMPLETE !#!#
sys.stdout.write("\nDocker timed out.\n")
sys.stdout.flush()
if exiting: # User hit ctrl-C
sys.exit(1)
def build_default_docker_image(docker_client, image_tag):
for segment in docker_client.api.build(

View File

@ -1 +1 @@
__version__ = "0.0.2"
__version__ = "0.0.3"