Daniel Kantor
commited on
Commit
·
d0e7f7a
1
Parent(s):
372c065
add citations for benchmarks
Browse files
frontend/src/pages/QuotePage/QuotePage.js
CHANGED
@@ -84,6 +84,58 @@ const priorWork = [
|
|
84 |
];
|
85 |
|
86 |
const benchmarks = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
];
|
88 |
|
89 |
const CitationBlock = ({ citation, title, authors, url, type }) => {
|
|
|
84 |
];
|
85 |
|
86 |
const benchmarks = [
|
87 |
+
{
|
88 |
+
title: "Bad Package Detection",
|
89 |
+
authors:
|
90 |
+
"Pankaj Telang, Eleftheria Stein-Kousathana, Doug Wright, Daniel Kantor, Luke Hinds",
|
91 |
+
citation: `@misc{llm-security-leaderboard-v1,
|
92 |
+
author = {Pankaj Telang and Eleftheria Stein-Kousathana and Doug Wright and Daniel Kantor and Luke Hinds},
|
93 |
+
title = {Bad Package Detection},
|
94 |
+
year = {2025},
|
95 |
+
publisher = {Hugging Face},
|
96 |
+
howpublished = "\\url{https://huggingface.co/spaces/stacklok/llm-security-leaderboard}",
|
97 |
+
}`,
|
98 |
+
type: "main",
|
99 |
+
},
|
100 |
+
{
|
101 |
+
title: "Insecure Code Detection",
|
102 |
+
authors:
|
103 |
+
"Pankaj Telang, Eleftheria Stein-Kousathana, Doug Wright, Daniel Kantor, Luke Hinds",
|
104 |
+
citation: `@misc{llm-security-leaderboard-v1,
|
105 |
+
author = {Pankaj Telang and Eleftheria Stein-Kousathana and Doug Wright and Daniel Kantor and Luke Hinds},
|
106 |
+
title = {Insecure Code Detection},
|
107 |
+
year = {2025},
|
108 |
+
publisher = {Hugging Face},
|
109 |
+
howpublished = "\\url{https://huggingface.co/spaces/stacklok/llm-security-leaderboard}",
|
110 |
+
}`,
|
111 |
+
type: "main",
|
112 |
+
},
|
113 |
+
{
|
114 |
+
title: "Safetensors Usage",
|
115 |
+
authors:
|
116 |
+
"Pankaj Telang, Eleftheria Stein-Kousathana, Doug Wright, Daniel Kantor, Luke Hinds",
|
117 |
+
citation: `@misc{llm-security-leaderboard-v1,
|
118 |
+
author = {Pankaj Telang and Eleftheria Stein-Kousathana and Doug Wright and Daniel Kantor and Luke Hinds},
|
119 |
+
title = {Safetensors Usage},
|
120 |
+
year = {2025},
|
121 |
+
publisher = {Hugging Face},
|
122 |
+
howpublished = "\\url{https://huggingface.co/spaces/stacklok/llm-security-leaderboard}",
|
123 |
+
}`,
|
124 |
+
type: "main",
|
125 |
+
},
|
126 |
+
{
|
127 |
+
title: "CVE Knowledge",
|
128 |
+
authors:
|
129 |
+
"Pankaj Telang, Eleftheria Stein-Kousathana, Doug Wright, Daniel Kantor, Luke Hinds",
|
130 |
+
citation: `@misc{llm-security-leaderboard-v1,
|
131 |
+
author = {Pankaj Telang and Eleftheria Stein-Kousathana and Doug Wright and Daniel Kantor and Luke Hinds},
|
132 |
+
title = {CVE Knowledge},
|
133 |
+
year = {2025},
|
134 |
+
publisher = {Hugging Face},
|
135 |
+
howpublished = "\\url{https://huggingface.co/spaces/stacklok/llm-security-leaderboard}",
|
136 |
+
}`,
|
137 |
+
type: "main",
|
138 |
+
},
|
139 |
];
|
140 |
|
141 |
const CitationBlock = ({ citation, title, authors, url, type }) => {
|