Light modifications to ignore runtime files.

This commit is contained in:
Timothy Farrell 2024-01-03 13:54:32 -06:00
parent 03037bfe6a
commit 76e5e09042
2 changed files with 5 additions and 1 deletions

4
.gitignore vendored
View File

@ -1 +1,5 @@
.cache
.coding
.env
__pycache__

View File

@ -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
},
)