Spaces:
Running
Running
Commit
·
83290d2
1
Parent(s):
dc165c1
Update citation entries for ACL SRW and ICML TAIG; expand citation code block lines
Browse files- app.py +1 -1
- src/about.py +14 -5
app.py
CHANGED
@@ -270,7 +270,7 @@ with demo:
|
|
270 |
citation_button = gr.Code(
|
271 |
value=CITATION_BUTTON_TEXT,
|
272 |
label=CITATION_BUTTON_LABEL,
|
273 |
-
lines=
|
274 |
elem_id="citation-button",
|
275 |
language="yaml",
|
276 |
)
|
|
|
270 |
citation_button = gr.Code(
|
271 |
value=CITATION_BUTTON_TEXT,
|
272 |
label=CITATION_BUTTON_LABEL,
|
273 |
+
lines=14,
|
274 |
elem_id="citation-button",
|
275 |
language="yaml",
|
276 |
)
|
src/about.py
CHANGED
@@ -80,9 +80,18 @@ If your library shows as "FAILED" in the assessment queue, check that:
|
|
80 |
"""
|
81 |
|
82 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
83 |
-
CITATION_BUTTON_TEXT = r"""@
|
84 |
-
title={LibVulnWatch:
|
85 |
-
author={
|
86 |
-
|
87 |
-
year={2025}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}"""
|
|
|
80 |
"""
|
81 |
|
82 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
83 |
+
CITATION_BUTTON_TEXT = r"""@inproceedings{wu2025libvulnwatch,
|
84 |
+
title={LibVulnWatch: A Deep Assessment Agent System and Leaderboard for Uncovering Hidden Vulnerabilities in Open-Source {AI} Libraries},
|
85 |
+
author={Zekun Wu and Seonglae Cho and Umar Mohammed and CRISTIAN ENRIQUE MUNOZ VILLALOBOS and Kleyton Da Costa and Xin Guan and Theo King and Ze Wang and Emre Kazim and Adriano Koshiyama},
|
86 |
+
booktitle={ACL 2025 Student Research Workshop},
|
87 |
+
year={2025},
|
88 |
+
url={https://openreview.net/forum?id=yQzYEAL0BT}
|
89 |
+
}
|
90 |
+
|
91 |
+
@inproceedings{anonymous2025libvulnwatch,
|
92 |
+
title={LibVulnWatch: A Deep Assessment Agent System and Leaderboard for Uncovering Hidden Vulnerabilities in Open-Source {AI} Libraries},
|
93 |
+
author={Zekun Wu and Seonglae Cho and Umar Mohammed and CRISTIAN ENRIQUE MUNOZ VILLALOBOS and Kleyton Da Costa and Xin Guan and Theo King and Ze Wang and Emre Kazim and Adriano Koshiyama},
|
94 |
+
booktitle={ICML Workshop on Technical AI Governance (TAIG)},
|
95 |
+
year={2025},
|
96 |
+
url={https://openreview.net/forum?id=MHhrr8QHgR}
|
97 |
}"""
|