albertvillanova HF Staff commited on
Commit
19797ec
·
verified ·
1 Parent(s): 94c3c22

Upload agent

Browse files
agent.json CHANGED
@@ -43,24 +43,24 @@
43
  "name": null,
44
  "description": null,
45
  "requirements": [
 
46
  "smolagents",
47
  "pandas",
48
  "markdownify",
49
- "duckduckgo_search",
50
- "requests"
51
  ],
52
  "authorized_imports": [
53
- "pandas",
54
- "unicodedata",
 
55
  "datetime",
 
56
  "itertools",
57
- "time",
58
  "stat",
59
- "queue",
60
- "math",
61
- "collections",
62
- "statistics",
63
  "random",
64
- "re"
 
 
65
  ]
66
  }
 
43
  "name": null,
44
  "description": null,
45
  "requirements": [
46
+ "requests",
47
  "smolagents",
48
  "pandas",
49
  "markdownify",
50
+ "duckduckgo_search"
 
51
  ],
52
  "authorized_imports": [
53
+ "re",
54
+ "queue",
55
+ "collections",
56
  "datetime",
57
+ "unicodedata",
58
  "itertools",
 
59
  "stat",
60
+ "time",
 
 
 
61
  "random",
62
+ "pandas",
63
+ "statistics",
64
+ "math"
65
  ]
66
  }
managed_agents/useless/agent.json CHANGED
@@ -43,16 +43,16 @@
43
  "smolagents"
44
  ],
45
  "authorized_imports": [
46
- "unicodedata",
 
 
47
  "datetime",
 
48
  "itertools",
49
- "time",
50
  "stat",
51
- "queue",
52
- "math",
53
- "collections",
54
- "statistics",
55
  "random",
56
- "re"
 
57
  ]
58
  }
 
43
  "smolagents"
44
  ],
45
  "authorized_imports": [
46
+ "re",
47
+ "queue",
48
+ "collections",
49
  "datetime",
50
+ "unicodedata",
51
  "itertools",
 
52
  "stat",
53
+ "time",
 
 
 
54
  "random",
55
+ "statistics",
56
+ "math"
57
  ]
58
  }
managed_agents/web_agent/agent.json CHANGED
@@ -42,9 +42,9 @@
42
  "name": "web_agent",
43
  "description": "does web searches",
44
  "requirements": [
 
45
  "markdownify",
46
  "duckduckgo_search",
47
- "requests",
48
  "smolagents"
49
  ]
50
  }
 
42
  "name": "web_agent",
43
  "description": "does web searches",
44
  "requirements": [
45
+ "requests",
46
  "markdownify",
47
  "duckduckgo_search",
 
48
  "smolagents"
49
  ]
50
  }
managed_agents/web_agent/requirements.txt CHANGED
@@ -1,4 +1,4 @@
 
1
  markdownify
2
  duckduckgo_search
3
- requests
4
  smolagents
 
1
+ requests
2
  markdownify
3
  duckduckgo_search
 
4
  smolagents
managed_agents/web_agent/tools/visit_webpage.py CHANGED
@@ -1,8 +1,8 @@
1
  from typing import Any, Optional
2
  from smolagents.tools import Tool
 
3
  import markdownify
4
  import smolagents
5
- import requests
6
 
7
  class VisitWebpageTool(Tool):
8
  name = "visit_webpage"
 
1
  from typing import Any, Optional
2
  from smolagents.tools import Tool
3
+ import requests
4
  import markdownify
5
  import smolagents
 
6
 
7
  class VisitWebpageTool(Tool):
8
  name = "visit_webpage"
requirements.txt CHANGED
@@ -1,5 +1,5 @@
 
1
  smolagents
2
  pandas
3
  markdownify
4
  duckduckgo_search
5
- requests
 
1
+ requests
2
  smolagents
3
  pandas
4
  markdownify
5
  duckduckgo_search