Spaces:
Sleeping
Sleeping
pebaryan commited on
Commit ·
69bfb4c
1
Parent(s): 6733712
Bump gradio to 5.27, add help text below Run button
Browse files- README.md +1 -1
- app.py +5 -0
- requirements.txt +0 -1
README.md
CHANGED
|
@@ -4,7 +4,7 @@ emoji: ✅
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 5.
|
| 8 |
python_version: '3.11'
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
|
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 5.27.0
|
| 8 |
python_version: '3.11'
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
app.py
CHANGED
|
@@ -330,6 +330,11 @@ with gr.Blocks(title="qalmsw", theme=_THEME, css=_CSS) as demo:
|
|
| 330 |
placeholder="Optional; leave blank to use Space secret",
|
| 331 |
)
|
| 332 |
run = gr.Button("Run checks", variant="primary")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 333 |
|
| 334 |
summary = gr.Markdown()
|
| 335 |
findings_table = gr.DataFrame(
|
|
|
|
| 330 |
placeholder="Optional; leave blank to use Space secret",
|
| 331 |
)
|
| 332 |
run = gr.Button("Run checks", variant="primary")
|
| 333 |
+
gr.Markdown(
|
| 334 |
+
"Upload a .tex file (or paste source) and optional .bib files, "
|
| 335 |
+
"then click **Run checks**. Always-on checks run automatically; "
|
| 336 |
+
"toggle optional checks above. Results appear below.",
|
| 337 |
+
)
|
| 338 |
|
| 339 |
summary = gr.Markdown()
|
| 340 |
findings_table = gr.DataFrame(
|
requirements.txt
CHANGED
|
@@ -1,2 +1 @@
|
|
| 1 |
git+https://github.com/pebaryan/qalmsw.git
|
| 2 |
-
gradio[oauth]>=5.27.0
|
|
|
|
| 1 |
git+https://github.com/pebaryan/qalmsw.git
|
|
|