h2oaimichalmarszalek commited on
Commit
b4c1b1a
·
1 Parent(s): 816d53f
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -80,7 +80,7 @@ agent = CodeAgent(
80
  description=None,
81
  #use_e2b_executor=True,
82
  prompt_templates=prompt_templates,
83
- authorized_imports = [
84
  "unicodedata",
85
  "stat",
86
  "datetime",
@@ -93,8 +93,8 @@ agent = CodeAgent(
93
  "time",
94
  "collections",
95
  "re",
96
- "PyYAML",
97
- "Jinja2",
98
  "pydash"
99
  ]
100
  )
 
80
  description=None,
81
  #use_e2b_executor=True,
82
  prompt_templates=prompt_templates,
83
+ additional_authorized_imports = [
84
  "unicodedata",
85
  "stat",
86
  "datetime",
 
93
  "time",
94
  "collections",
95
  "re",
96
+ "yaml",
97
+ "jinja2",
98
  "pydash"
99
  ]
100
  )