Upload tool
Browse files- agent.json +8 -8
- app.py +1 -1
- requirements.txt +2 -2
- tools/visit_webpage.py +1 -1
agent.json
CHANGED
@@ -30,17 +30,17 @@
|
|
30 |
"name": null,
|
31 |
"description": null,
|
32 |
"authorized_imports": [
|
33 |
-
"
|
34 |
-
"collections",
|
35 |
"random",
|
36 |
-
"
|
|
|
|
|
37 |
"queue",
|
38 |
"time",
|
39 |
-
"
|
40 |
-
"
|
41 |
-
"
|
42 |
"re",
|
43 |
-
"
|
44 |
-
"stat"
|
45 |
]
|
46 |
}
|
|
|
30 |
"name": null,
|
31 |
"description": null,
|
32 |
"authorized_imports": [
|
33 |
+
"pandas",
|
|
|
34 |
"random",
|
35 |
+
"statistics",
|
36 |
+
"unicodedata",
|
37 |
+
"datetime",
|
38 |
"queue",
|
39 |
"time",
|
40 |
+
"stat",
|
41 |
+
"math",
|
42 |
+
"itertools",
|
43 |
"re",
|
44 |
+
"collections"
|
|
|
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=['pandas', 'random', 'statistics', 'unicodedata', 'datetime', 'queue', 'time', 'stat', 'math', 'itertools', 're', 'collections'],
|
21 |
prompts_path='./prompts.yaml'
|
22 |
)
|
23 |
|
requirements.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
|
|
1 |
markdownify
|
|
|
2 |
smolagents
|
3 |
-
pandas
|
4 |
duckduckgo_search
|
5 |
-
requests
|
|
|
1 |
+
pandas
|
2 |
markdownify
|
3 |
+
requests
|
4 |
smolagents
|
|
|
5 |
duckduckgo_search
|
|
tools/visit_webpage.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
from smolagents.tools import Tool
|
2 |
-
import markdownify
|
3 |
import smolagents
|
4 |
import requests
|
|
|
5 |
|
6 |
class VisitWebpageTool(Tool):
|
7 |
name = "visit_webpage"
|
|
|
1 |
from smolagents.tools import Tool
|
|
|
2 |
import smolagents
|
3 |
import requests
|
4 |
+
import markdownify
|
5 |
|
6 |
class VisitWebpageTool(Tool):
|
7 |
name = "visit_webpage"
|