Spaces:
Running on Zero
Running on Zero
electblake commited on
Commit ·
464266f
1
Parent(s): 3765781
Add project links and model citation to app UI
Browse files
app.py
CHANGED
|
@@ -111,6 +111,9 @@ with gr.Blocks(css=CSS, title="Spreadsheet Data Agent") as demo:
|
|
| 111 |
gr.Markdown(
|
| 112 |
"""
|
| 113 |
# Spreadsheet Data Agent
|
|
|
|
|
|
|
|
|
|
| 114 |
Send instructions and optional file context to Spreadsheet-RL-4B. This first
|
| 115 |
inference surface implements the prompt-and-file entry point from the agent diagram.
|
| 116 |
"""
|
|
@@ -153,6 +156,31 @@ with gr.Blocks(css=CSS, title="Spreadsheet Data Agent") as demo:
|
|
| 153 |
buttons=["copy"],
|
| 154 |
)
|
| 155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 156 |
run.click(
|
| 157 |
fn=download_quant,
|
| 158 |
inputs=quantization,
|
|
|
|
| 111 |
gr.Markdown(
|
| 112 |
"""
|
| 113 |
# Spreadsheet Data Agent
|
| 114 |
+
|
| 115 |
+
[Code](https://github.com/electblake/Spreadsheet-RL-Data-Agent) | [Demo](https://huggingface.co/spaces/electblake/spreadsheet-data-agent) | [Paper](https://arxiv.org/abs/2605.22642) | [Spreadsheet-RL Model](https://huggingface.co/Spreadsheet-RL/Spreadsheet-RL-4B)
|
| 116 |
+
|
| 117 |
Send instructions and optional file context to Spreadsheet-RL-4B. This first
|
| 118 |
inference surface implements the prompt-and-file entry point from the agent diagram.
|
| 119 |
"""
|
|
|
|
| 156 |
buttons=["copy"],
|
| 157 |
)
|
| 158 |
|
| 159 |
+
gr.Markdown(
|
| 160 |
+
"""
|
| 161 |
+
---
|
| 162 |
+
|
| 163 |
+
### Citation
|
| 164 |
+
|
| 165 |
+
If you use Spreadsheet-RL-4B, please cite the model's paper:
|
| 166 |
+
|
| 167 |
+
```bibtex
|
| 168 |
+
@misc{chi2026spreadsheetrl,
|
| 169 |
+
title = {Spreadsheet-RL: Advancing Large Language Model Agents on Realistic Spreadsheet Tasks via Reinforcement Learning},
|
| 170 |
+
author = {Banghao Chi and Yining Xie and Mingyuan Wu and Jingcheng Yang and Jize Jiang and Zhaoheng Li and Shengyi Qian and Minjia Zhang and Klara Nahrstedt and Rui Hou and Xiangjun Fan and Hanchao Yu},
|
| 171 |
+
year = {2026},
|
| 172 |
+
eprint = {2605.22642},
|
| 173 |
+
archivePrefix = {arXiv},
|
| 174 |
+
primaryClass = {cs.AI},
|
| 175 |
+
doi = {10.48550/arXiv.2605.22642},
|
| 176 |
+
url = {https://arxiv.org/abs/2605.22642}
|
| 177 |
+
}
|
| 178 |
+
```
|
| 179 |
+
|
| 180 |
+
Citation from the [Spreadsheet-RL-4B model card](https://huggingface.co/Spreadsheet-RL/Spreadsheet-RL-4B#citation).
|
| 181 |
+
"""
|
| 182 |
+
)
|
| 183 |
+
|
| 184 |
run.click(
|
| 185 |
fn=download_quant,
|
| 186 |
inputs=quantization,
|