Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
dbfdab8
1
Parent(s):
5200fdc
Added citation
Browse files- app.py +1 -1
- content.py +9 -1
app.py
CHANGED
|
@@ -540,7 +540,7 @@ with demo:
|
|
| 540 |
)
|
| 541 |
|
| 542 |
with gr.Column():
|
| 543 |
-
with gr.Accordion("📙 Citation", open=
|
| 544 |
citation_button = gr.Textbox(
|
| 545 |
value=CITATION_BUTTON_TEXT,
|
| 546 |
label=CITATION_BUTTON_LABEL,
|
|
|
|
| 540 |
)
|
| 541 |
|
| 542 |
with gr.Column():
|
| 543 |
+
with gr.Accordion("📙 Citation", open=True):
|
| 544 |
citation_button = gr.Textbox(
|
| 545 |
value=CITATION_BUTTON_TEXT,
|
| 546 |
label=CITATION_BUTTON_LABEL,
|
content.py
CHANGED
|
@@ -63,4 +63,12 @@ Finally, log in to this page, complete the informations for logging, and provide
|
|
| 63 |
"""
|
| 64 |
|
| 65 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
| 66 |
-
CITATION_BUTTON_TEXT = r"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
"""
|
| 64 |
|
| 65 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
| 66 |
+
CITATION_BUTTON_TEXT = r"""@misc{andrews2025arescalingagentenvironments,
|
| 67 |
+
title={ARE: Scaling Up Agent Environments and Evaluations},
|
| 68 |
+
author={Pierre Andrews and Amine Benhalloum and Gerard Moreno-Torres Bertran and Matteo Bettini and Amar Budhiraja and Ricardo Silveira Cabral and Virginie Do and Romain Froger and Emilien Garreau and Jean-Baptiste Gaya and Hugo Laurençon and Maxime Lecanu and Kunal Malkan and Dheeraj Mekala and Pierre Ménard and Grégoire Mialon and Ulyana Piterbarg and Mikhail Plekhanov and Mathieu Rita and Andrey Rusakov and Thomas Scialom and Vladislav Vorotilov and Mengjue Wang and Ian Yu},
|
| 69 |
+
year={2025},
|
| 70 |
+
eprint={2509.17158},
|
| 71 |
+
archivePrefix={arXiv},
|
| 72 |
+
primaryClass={cs.AI},
|
| 73 |
+
url={https://arxiv.org/abs/2509.17158},
|
| 74 |
+
}"""
|