Spaces:
Sleeping
Sleeping
Upload tool
Browse files- agent.json +8 -8
- app.py +1 -1
agent.json
CHANGED
@@ -30,17 +30,17 @@
|
|
30 |
"name": null,
|
31 |
"description": null,
|
32 |
"authorized_imports": [
|
33 |
-
"
|
34 |
-
"
|
35 |
"queue",
|
36 |
-
"
|
37 |
"time",
|
38 |
"stat",
|
39 |
-
"
|
|
|
40 |
"datetime",
|
41 |
-
"
|
42 |
-
"
|
43 |
-
"pandas"
|
44 |
-
"random"
|
45 |
]
|
46 |
}
|
|
|
30 |
"name": null,
|
31 |
"description": null,
|
32 |
"authorized_imports": [
|
33 |
+
"itertools",
|
34 |
+
"statistics",
|
35 |
"queue",
|
36 |
+
"re",
|
37 |
"time",
|
38 |
"stat",
|
39 |
+
"math",
|
40 |
+
"unicodedata",
|
41 |
"datetime",
|
42 |
+
"collections",
|
43 |
+
"random",
|
44 |
+
"pandas"
|
|
|
45 |
]
|
46 |
}
|
app.py
CHANGED
@@ -17,7 +17,7 @@ agent = CodeAgent(
|
|
17 |
planning_interval=None,
|
18 |
name=None,
|
19 |
description=None,
|
20 |
-
authorized_imports=['
|
21 |
prompts_path='./prompts.yaml'
|
22 |
)
|
23 |
|
|
|
17 |
planning_interval=None,
|
18 |
name=None,
|
19 |
description=None,
|
20 |
+
authorized_imports=['itertools', 'statistics', 'queue', 're', 'time', 'stat', 'math', 'unicodedata', 'datetime', 'collections', 'random', 'pandas'],
|
21 |
prompts_path='./prompts.yaml'
|
22 |
)
|
23 |
|