1
2
3
4
5
6
7
8
9
10
import { scrape_gradio_data } from "https://esm.town/v/mattx/scrape_gradio_data";
export let scrape_open_llm_leaderboard = async () => {
const result = await scrape_gradio_data(
"https://huggingfaceh4-open-llm-leaderboard.hf.space/",
);
return result["components"][21]["props"]["value"]["data"].filter((x) =>
!x[1].includes("has been flagged!")
).map((x) => x[7]);
};