From 76e5e090427b06e78101f0ab8513fba6b2b21c33 Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Wed, 3 Jan 2024 13:54:32 -0600 Subject: [PATCH] Light modifications to ignore runtime files. --- .gitignore | 4 ++++ aitist/app.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4c49bd7..7c13ae3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ +.cache +.coding .env +__pycache__ + diff --git a/aitist/app.py b/aitist/app.py index fe90501..3343d4f 100755 --- a/aitist/app.py +++ b/aitist/app.py @@ -33,7 +33,7 @@ user_proxy = autogen.UserProxyAgent( max_consecutive_auto_reply=10, is_termination_msg=lambda x: x.get("content", "").rstrip().endswith("TERMINATE"), code_execution_config={ - "work_dir": "coding", + "work_dir": ".coding", "use_docker": False, # set to True or image name like "python:3" to use docker }, )