-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (147 loc) · 4.19 KB
/
Copy pathindex.html
File metadata and controls
161 lines (147 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="WebArena: A suite of benchmarks for building autonomous web agents.">
<title>WebArena-x</title>
<style>
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
body{
font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
background:#fff;color:#111;
min-height:100vh;
display:flex;flex-direction:column;
-webkit-font-smoothing:antialiased;
}
header{
display:flex;align-items:center;justify-content:center;
padding:14px 32px;
border-bottom:1px solid #e5e5e5;
}
.logo{
font-size:14px;font-weight:700;letter-spacing:-.02em;color:#111;
display:flex;align-items:center;gap:8px;text-decoration:none;
}
.logo-mark{
width:22px;height:22px;
object-fit:contain;
}
main{
flex:1;
max-width:720px;width:100%;margin:0 auto;
padding:48px 32px 40px;
}
.page-title{
font-size:20px;font-weight:700;color:#111;
letter-spacing:-.03em;margin-bottom:4px;
}
.page-sub{
font-size:12px;color:#999;margin-bottom:32px;
line-height:1.5;
}
.card-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
}
.card{
background:#fafafa;
border:1px solid #ebebeb;
border-radius:10px;
padding:20px 20px 16px;
text-decoration:none;color:inherit;
display:flex;flex-direction:column;
transition:border-color .15s,box-shadow .15s,background .15s;
}
.card:hover{
border-color:#ccc;
box-shadow:0 2px 12px rgba(0,0,0,.06);
background:#fff;
}
.card-name{
font-size:14px;font-weight:650;color:#111;
line-height:1.3;letter-spacing:-.01em;
margin-bottom:6px;
}
.card-desc{
font-size:11px;color:#888;line-height:1.5;
flex:1;
}
.card-meta{
display:flex;align-items:center;justify-content:space-between;
margin-top:14px;
padding-top:10px;
border-top:1px solid #eee;
}
.venue{
font-size:10px;color:#aaa;font-weight:500;
}
.arrow{
font-size:11px;color:#ccc;
transition:color .15s,transform .15s;
}
.card:hover .arrow{
color:#888;
transform:translateX(2px);
}
footer{
text-align:center;padding:16px 24px;
border-top:1px solid #f0f0f0;
font-size:10px;color:#bbb;
}
@media(max-width:560px){
.card-grid{grid-template-columns:1fr;}
main{padding:32px 16px;}
header{padding:12px 16px;}
}
</style>
</head>
<body>
<header>
<a class="logo" href="/">
<img class="logo-mark" src="./static/images/webarena-logo.png" alt="WebArena-x">
WebArena-x
</a>
</header>
<main>
<div class="page-title">Projects</div>
<div class="page-sub">A suite of benchmarks for building autonomous web agents.</div>
<div class="card-grid">
<a class="card" href="./og/">
<div class="card-name">WebArena</div>
<div class="card-desc">A realistic web environment for building autonomous agents.</div>
<div class="card-meta">
<span class="venue">NeurIPS 2024 · Oral</span>
<span class="arrow">→</span>
</div>
</a>
<a class="card" href="../webarena-infinity">
<div class="card-name">WebArena-Infinity</div>
<div class="card-desc">Continuous and scalable web agent evaluation in evolving environments.</div>
<div class="card-meta">
<span class="venue"></span>
<span class="arrow">→</span>
</div>
</a>
<a class="card" href="https://jykoh.com/vwa">
<div class="card-name">VisualWebArena</div>
<div class="card-desc">Evaluating multimodal agents on realistic visual web tasks.</div>
<div class="card-meta">
<span class="venue">ACL 2024</span>
<span class="arrow">↗</span>
</div>
</a>
<a class="card" href="https://the-agent-company.com/">
<div class="card-name">TheAgentCompany</div>
<div class="card-desc">Benchmarking LLM agents on consequential real-world tasks in a simulated company.</div>
<div class="card-meta">
<span class="venue">ICML 2025</span>
<span class="arrow">↗</span>
</div>
</a>
</div>
</main>
<footer>WebArena-x</footer>
</body>
</html>