import React from "react"; import { Box, Typography, Paper, IconButton, Tooltip, Alert, Link, } from "@mui/material"; import ContentCopyIcon from "@mui/icons-material/ContentCopy"; import PageHeader from "../../components/shared/PageHeader"; const citations = [ { title: "LLM Security Leaderboard", authors: "Pankaj Telang, Eleftheria Stein-Kousathana, Doug Wright, Daniel Kantor", citation: `@misc{llm-security-leaderboard-v1, author = {Pankaj Telang and Eleftheria Stein-Kousathana and Doug Wright and Daniel Kantor}, title = {LLM Security Leaderboard}, year = {2025}, publisher = {Hugging Face}, howpublished = "\\url{https://huggingface.co/spaces/stacklok/llm-security-leaderboard}", }`, type: "main", }, { title: "LLM Security Leaderboard Evaluation Backend", authors: "Pankaj Telang, Eleftheria Stein-Kousathana, Doug Wright, Daniel Kantor", citation: `@misc{stacklok/llm-security-evaluation-backend-v1, author = {Pankaj Telang and Eleftheria Stein-Kousathana and Doug Wright and Daniel Kantor}, title = {LLM Security Leaderboard Evaluation Backend}, year = {2025}, publisher = {Hugging Face}, howpublished = "\\url{https://huggingface.co/spaces/stacklok/llm-security-evaluation-backend}", }`, type: "main", }, ]; const priorWork = [ { title: "Open LLM Leaderboard v2", authors: "Clémentine Fourrier, Nathan Habib, Alina Lozovskaya, Konrad Szafer, Thomas Wolf", citation: `@misc{open-llm-leaderboard-v2, author = {Clémentine Fourrier and Nathan Habib and Alina Lozovskaya and Konrad Szafer and Thomas Wolf}, title = {Open LLM Leaderboard v2}, year = {2024}, publisher = {Hugging Face}, howpublished = "\\url{https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard}", }`, type: "main", }, { title: "Open LLM Leaderboard v1", authors: "Edward Beeching, Clémentine Fourrier, Nathan Habib, Sheon Han, Nathan Lambert, Nazneen Rajani, Omar Sanseviero, Lewis Tunstall, Thomas Wolf", citation: `@misc{open-llm-leaderboard-v1, author = {Edward Beeching and Clémentine Fourrier and Nathan Habib and Sheon Han and Nathan Lambert and Nazneen Rajani and Omar Sanseviero and Lewis Tunstall and Thomas Wolf}, title = {Open LLM Leaderboard (2023-2024)}, year = {2023}, publisher = {Hugging Face}, howpublished = "\\url{https://huggingface.co/spaces/open-llm-leaderboard-old/open_llm_leaderboard}" }`, type: "main", }, ]; const benchmarks = [ ]; const CitationBlock = ({ citation, title, authors, url, type }) => { const handleCopy = () => { navigator.clipboard.writeText(citation); }; return ( {title} {authors} {url && ( View paper → )} {citation} ); }; function QuotePage() { return ( The citations below include both the leaderboard itself and the individual benchmarks used in our evaluation suite. Leaderboard {citations.map((citation, index) => ( ))} Benchmarks {benchmarks.map((benchmark, index) => ( ))} Prior Work {priorWork.map((citation, index) => ( ))} ); } export default QuotePage;