Commit
·
b4c1b1a
1
Parent(s):
816d53f
fix
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ agent = CodeAgent(
|
|
80 |
description=None,
|
81 |
#use_e2b_executor=True,
|
82 |
prompt_templates=prompt_templates,
|
83 |
-
|
84 |
"unicodedata",
|
85 |
"stat",
|
86 |
"datetime",
|
@@ -93,8 +93,8 @@ agent = CodeAgent(
|
|
93 |
"time",
|
94 |
"collections",
|
95 |
"re",
|
96 |
-
"
|
97 |
-
"
|
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 |
)
|