m-ric HF staff commited on
Commit
3de5978
·
verified ·
1 Parent(s): c03e5bb

Upload tool

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