Commit
·
7613266
1
Parent(s):
0dfb8fc
update citation
Browse files
src/ui.py
CHANGED
|
@@ -194,19 +194,21 @@ def create_ui():
|
|
| 194 |
show_progress="full",
|
| 195 |
)
|
| 196 |
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
|
|
|
|
|
|
| 211 |
|
| 212 |
return demo
|
|
|
|
| 194 |
show_progress="full",
|
| 195 |
)
|
| 196 |
|
| 197 |
+
citation_text = """
|
| 198 |
+
```bibtex
|
| 199 |
+
@misc{michailidis2025cpbench,
|
| 200 |
+
title={CP-Bench: Evaluating Large Language Models for Constraint Modelling},
|
| 201 |
+
author={Kostis Michailidis and Dimos Tsouros and Tias Guns},
|
| 202 |
+
year={2025},
|
| 203 |
+
eprint={2506.06052},
|
| 204 |
+
archivePrefix={arXiv},
|
| 205 |
+
primaryClass={cs.AI},
|
| 206 |
+
url={https://arxiv.org/abs/2506.06052},
|
| 207 |
+
}
|
| 208 |
+
```
|
| 209 |
+
"""
|
| 210 |
+
|
| 211 |
+
gr.Markdown("### If you found our work useful, please consider citing it:")
|
| 212 |
+
gr.Markdown(citation_text)
|
| 213 |
|
| 214 |
return demo
|