Skip to content

Commit 4ceeb67

Browse files
Merge pull request #39 from ucbepic/leaderboard/add-pr31-32-38
Add PR #31, #32, #38 to leaderboard
2 parents 9cd1cdd + 798817c commit 4ceeb67

4 files changed

Lines changed: 68 additions & 18 deletions

File tree

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,19 @@ Unlike prior SQL-only or single-database benchmarks, DAB stresses agents under *
2121

2222
## 🏆 Leaderboard
2323

24-
| Rank | Model | Pass@1 | Date |
25-
| ---- | -------------- | ------------------- | ------- |
26-
| 1 | PromptQL (Gemini-3.1-Pro) (5 trials/query) | 0.543 | 2026-03-018 |
27-
| 2 | PromptQL (Claude-Opus-4.6) (5 trials/query) | 0.508 | 2026-03-02 |
28-
| 3 | Claude-Opus-4.6 (5 trials/query) | 0.4376 | 2026-03-18 |
29-
| 4 | Gemini-3-Pro | 0.38 | 2026-03-02 |
30-
| 5 | GPT-5-mini | 0.30 | 2026-03-02 |
31-
| 6 | GPT-5.2 | 0.25 | 2026-03-02 |
32-
| 7 | Kimi-K2 | 0.23 | 2026-03-02 |
33-
| 8 | Gemini-2.5-Flash | 0.09 | 2026-03-02 |
24+
| Rank | Model | Pass@1 | Date | Submission |
25+
| ---- | -------------- | ------------------- | ------- | ---------- |
26+
| 1 | Pi Coding Agent (Claude-Opus-4.6) (5 trials/query) | 0.5603 | 2026-04-21 | [#31](https://github.com/ucbepic/DataAgentBench/pull/31) |
27+
| 2 | PromptQL (Gemini-3.1-Pro) (5 trials/query) | 0.543 | 2026-03-18 | [#24](https://github.com/ucbepic/DataAgentBench/pull/24) |
28+
| 3 | PromptQL (Claude-Opus-4.6) (5 trials/query) | 0.508 | 2026-03-02 | [#23](https://github.com/ucbepic/DataAgentBench/pull/23) |
29+
| 4 | Oracle Forge — Tenacious Intelligence (Claude-Sonnet-4.6) (5–7 trials/query) | 0.4554 | 2026-04-21 | [#32](https://github.com/ucbepic/DataAgentBench/pull/32) |
30+
| 5 | Claude-Opus-4.6 (5 trials/query) | 0.4376 | 2026-03-18 | [#22](https://github.com/ucbepic/DataAgentBench/pull/22) |
31+
| 6 | Gemini-3-Pro | 0.38 | 2026-03-02 ||
32+
| 7 | GPT-5-mini | 0.30 | 2026-03-02 ||
33+
| 8 | GPT-5.2 | 0.25 | 2026-03-02 ||
34+
| 9 | Kimi-K2 | 0.23 | 2026-03-02 ||
35+
| 10 | Oracle Forge — Team Cohere (Gemini-2.0-Flash) (5 trials/query) | 0.128 | 2026-04-21 | [#38](https://github.com/ucbepic/DataAgentBench/pull/38) |
36+
| 11 | Gemini-2.5-Flash | 0.09 | 2026-03-02 ||
3437

3538

3639
### How to Submit to the Leaderboard

docs/app.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,26 @@ function renderOverallLeaderboard(rows) {
172172
const trialsTd = createElement("td", "num", String(row.trials));
173173
const passTd = createElement("td", "num", formatPercentFromScore(row.passAt1));
174174
const dateTd = createElement("td", "", row.date);
175+
const prTd = document.createElement("td");
176+
if (row.prUrl) {
177+
const prMatch = row.prUrl.match(/\/pull\/(\d+)/);
178+
const prLabel = prMatch ? `PR #${prMatch[1]}` : "PR";
179+
const prLink = createElement("a", "", prLabel);
180+
prLink.href = row.prUrl;
181+
prLink.target = "_blank";
182+
prLink.rel = "noopener noreferrer";
183+
prTd.appendChild(prLink);
184+
} else {
185+
prTd.textContent = "—";
186+
}
175187

176188
tr.appendChild(rankTd);
177189
tr.appendChild(agentTd);
178190
tr.appendChild(teamTd);
179191
tr.appendChild(trialsTd);
180192
tr.appendChild(passTd);
181193
tr.appendChild(dateTd);
194+
tr.appendChild(prTd);
182195
tbody.appendChild(tr);
183196
});
184197
}

docs/data/leaderboards.json

Lines changed: 41 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"updatedAt": "2026-03-21",
2+
"updatedAt": "2026-04-21",
33
"sources": [
44
"README leaderboard table",
55
"PromptQL stratified table shared by maintainers",
@@ -8,33 +8,56 @@
88
"overallLeaderboard": [
99
{
1010
"rank": 1,
11+
"agent": "Pi Coding Agent + Claude Opus 4.6",
12+
"trials": 5,
13+
"passAt1": 0.5603,
14+
"team": "Pi Coding Agent",
15+
"teamUrl": "https://github.com/mariozechner/pi-coding-agent",
16+
"prUrl": "https://github.com/ucbepic/DataAgentBench/pull/31",
17+
"date": "2026-04-21"
18+
},
19+
{
20+
"rank": 2,
1121
"agent": "PromptQL + Gemini 3.1 Pro",
1222
"trials": 5,
1323
"passAt1": 0.543,
1424
"team": "Hasura PromptQL",
1525
"teamUrl": "https://promptql.io/",
26+
"prUrl": "https://github.com/ucbepic/DataAgentBench/pull/24",
1627
"date": "2026-03-18"
1728
},
1829
{
19-
"rank": 2,
30+
"rank": 3,
2031
"agent": "PromptQL + Claude Opus 4.6",
2132
"trials": 5,
2233
"passAt1": 0.508,
2334
"team": "Hasura PromptQL",
2435
"teamUrl": "https://promptql.io/",
36+
"prUrl": "https://github.com/ucbepic/DataAgentBench/pull/23",
2537
"date": "2026-03-02"
2638
},
2739
{
28-
"rank": 3,
40+
"rank": 4,
41+
"agent": "Oracle Forge (Tenacious Intelligence) + Claude Sonnet 4.6",
42+
"trials": 5,
43+
"passAt1": 0.4554,
44+
"team": "Tenacious Intelligence Corp",
45+
"teamUrl": "https://github.com/ucbepic/DataAgentBench/pull/32",
46+
"prUrl": "https://github.com/ucbepic/DataAgentBench/pull/32",
47+
"date": "2026-04-21"
48+
},
49+
{
50+
"rank": 5,
2951
"agent": "Claude Opus 4.6 ReAct",
3052
"trials": 5,
3153
"passAt1": 0.4376,
3254
"team": "EPIC Data Lab",
3355
"teamUrl": "https://epic.berkeley.edu/",
56+
"prUrl": "https://github.com/ucbepic/DataAgentBench/pull/22",
3457
"date": "2026-03-18"
3558
},
3659
{
37-
"rank": 4,
60+
"rank": 6,
3861
"agent": "Gemini-3-Pro ReAct",
3962
"trials": 50,
4063
"passAt1": 0.38,
@@ -43,7 +66,7 @@
4366
"date": "2026-03-02"
4467
},
4568
{
46-
"rank": 5,
69+
"rank": 7,
4770
"agent": "GPT-5-mini ReAct",
4871
"trials": 50,
4972
"passAt1": 0.3,
@@ -52,7 +75,7 @@
5275
"date": "2026-03-02"
5376
},
5477
{
55-
"rank": 6,
78+
"rank": 8,
5679
"agent": "GPT-5.2 ReAct",
5780
"trials": 50,
5881
"passAt1": 0.25,
@@ -61,7 +84,7 @@
6184
"date": "2026-03-02"
6285
},
6386
{
64-
"rank": 7,
87+
"rank": 9,
6588
"agent": "Kimi-K2 ReAct",
6689
"trials": 50,
6790
"passAt1": 0.23,
@@ -70,7 +93,17 @@
7093
"date": "2026-03-02"
7194
},
7295
{
73-
"rank": 8,
96+
"rank": 10,
97+
"agent": "Oracle Forge (Team Cohere) + Gemini 2.0 Flash",
98+
"trials": 5,
99+
"passAt1": 0.128,
100+
"team": "Team Cohere",
101+
"teamUrl": "https://github.com/trp1-cohere-team/data-analytics-agent",
102+
"prUrl": "https://github.com/ucbepic/DataAgentBench/pull/38",
103+
"date": "2026-04-21"
104+
},
105+
{
106+
"rank": 11,
74107
"agent": "Gemini-2.5-Flash ReAct",
75108
"trials": 50,
76109
"passAt1": 0.09,

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ <h2>Leaderboard</h2>
128128
<th><em>n</em></th>
129129
<th>Pass@1</th>
130130
<th>Date</th>
131+
<th>Submission</th>
131132
</tr>
132133
</thead>
133134
<tbody></tbody>

0 commit comments

Comments
 (0)