kostis-init commited on
Commit
7613266
·
1 Parent(s): 0dfb8fc

update citation

Browse files
Files changed (1) hide show
  1. src/ui.py +16 -14
src/ui.py CHANGED
@@ -194,19 +194,21 @@ def create_ui():
194
  show_progress="full",
195
  )
196
 
197
- gr.Markdown(
198
- "### If you found our work useful, please consider citing it:\n"
199
- "```bibtex\n"
200
- "@dataset{michailidis_2025_15592407,\n"
201
- "author = {Michailidis, Kostis and Tsouros, Dimosthenis and Guns, Tias},\n"
202
- "title = {CP-Bench},\n"
203
- "month = jun,\n"
204
- "year = 2025,\n"
205
- "publisher = {Zenodo},\n"
206
- "version = {1.0.0},\n"
207
- "doi = {10.5281/zenodo.15592407},\n"
208
- "url = {https://doi.org/10.5281/zenodo.15592407},\n"
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