qingmai commited on
Commit
092b51d
·
verified ·
1 Parent(s): 550a7aa

Upload 5 files

Browse files
Files changed (5) hide show
  1. PKG-INFO +12 -0
  2. SOURCES.txt +30 -0
  3. dependency_links.txt +1 -0
  4. requires.txt +8 -0
  5. top_level.txt +4 -0
PKG-INFO ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Metadata-Version: 2.1
2
+ Name: webarena
3
+ Version: 0.0.0
4
+ Requires-Python: <4,>=3.7
5
+ License-File: LICENSE
6
+ Provides-Extra: dev
7
+ Requires-Dist: pre-commit==3.0.1; extra == "dev"
8
+ Requires-Dist: pytest==7.1.2; extra == "dev"
9
+ Requires-Dist: mypy==0.991; extra == "dev"
10
+ Requires-Dist: nbmake; extra == "dev"
11
+ Requires-Dist: pytest-asyncio; extra == "dev"
12
+ Requires-Dist: types-requests; extra == "dev"
SOURCES.txt ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ LICENSE
2
+ README.md
3
+ setup.cfg
4
+ setup.py
5
+ agent/__init__.py
6
+ agent/agent.py
7
+ browser_env/__init__.py
8
+ browser_env/actions.py
9
+ browser_env/async_envs.py
10
+ browser_env/auto_login.py
11
+ browser_env/constants.py
12
+ browser_env/env_config.py
13
+ browser_env/envs.py
14
+ browser_env/helper_functions.py
15
+ browser_env/processors.py
16
+ browser_env/py.typed
17
+ browser_env/trajectory.py
18
+ browser_env/utils.py
19
+ evaluation_harness/__init__.py
20
+ evaluation_harness/evaluators.py
21
+ evaluation_harness/helper_functions.py
22
+ llms/__init__.py
23
+ llms/lm_config.py
24
+ llms/tokenizers.py
25
+ llms/utils.py
26
+ webarena.egg-info/PKG-INFO
27
+ webarena.egg-info/SOURCES.txt
28
+ webarena.egg-info/dependency_links.txt
29
+ webarena.egg-info/requires.txt
30
+ webarena.egg-info/top_level.txt
dependency_links.txt ADDED
@@ -0,0 +1 @@
 
 
1
+
requires.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ [dev]
3
+ pre-commit==3.0.1
4
+ pytest==7.1.2
5
+ mypy==0.991
6
+ nbmake
7
+ pytest-asyncio
8
+ types-requests
top_level.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ agent
2
+ browser_env
3
+ evaluation_harness
4
+ llms