Spaces:
Running on Zero
Running on Zero
electblake commited on
Commit ·
9f79f58
1
Parent(s): 464266f
chore: release version 0.1.1
Browse files- CHANGELOG.md +26 -0
- pyproject.toml +1 -1
CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Changelog
|
| 2 |
+
|
| 3 |
+
All notable changes to this project will be documented in this file.
|
| 4 |
+
|
| 5 |
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
| 6 |
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
| 7 |
+
|
| 8 |
+
## [Unreleased]
|
| 9 |
+
|
| 10 |
+
## [0.1.1] - 2026-08-16
|
| 11 |
+
|
| 12 |
+
### Added
|
| 13 |
+
|
| 14 |
+
- Added project code, live demo, paper, and model links below the app title.
|
| 15 |
+
- Added the official Spreadsheet-RL paper citation to the app footer.
|
| 16 |
+
|
| 17 |
+
## [0.1.0] - 2026-08-16
|
| 18 |
+
|
| 19 |
+
### Added
|
| 20 |
+
|
| 21 |
+
- Added a Gradio spreadsheet reasoning interface with system and user prompts.
|
| 22 |
+
- Added optional text, CSV, TSV, XLS, and XLSX file context.
|
| 23 |
+
- Added selectable GGUF quantizations for Spreadsheet-RL-4B with direct llama.cpp inference.
|
| 24 |
+
- Added Hugging Face ZeroGPU execution and model preloading support.
|
| 25 |
+
- Added final-answer-only response handling for the model's reasoning output.
|
| 26 |
+
- Added a Gradio MCP server for programmatic access to inference.
|
pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[project]
|
| 2 |
name = "spreadsheetapp"
|
| 3 |
-
version = "0.1.
|
| 4 |
description = "Add your description here"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.12.10"
|
|
|
|
| 1 |
[project]
|
| 2 |
name = "spreadsheetapp"
|
| 3 |
+
version = "0.1.1"
|
| 4 |
description = "Add your description here"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.12.10"
|