Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e880977
Add browser-local run history and loading
abidlabs Aug 6, 2026
54bacd3
Refine run history controls and storage UI
abidlabs Aug 6, 2026
77d5c57
Simplify storage label and emphasize loading
abidlabs Aug 6, 2026
26b60e1
Condense run history header
abidlabs Aug 6, 2026
6acafb4
Link run history from settings
abidlabs Aug 6, 2026
a505b07
Show run count in settings
abidlabs Aug 6, 2026
10792e0
Merge branch 'main' into agent/browser-run-history
abidlabs Aug 7, 2026
35b2c17
Merge branch 'main' into agent/browser-run-history
gradio-pr-bot Aug 10, 2026
e0de375
Merge branch 'main' into agent/browser-run-history
abidlabs Aug 10, 2026
c6af1ff
Add per-run runtime, a footer link, and gr.State handling to run history
abidlabs Aug 10, 2026
6e812c7
Time streamed runs by elapsed time, not their last chunk
abidlabs Aug 10, 2026
caa04dd
Rework the run history entry points and row chrome
abidlabs Aug 10, 2026
cbce975
Reveal a failed run's message on hover instead of via `title`
abidlabs Aug 10, 2026
7602b95
Only record real API endpoints, and never let saving break an app
abidlabs Aug 10, 2026
b4ab0ce
Key run history on the app id, and reshape values for the previews
abidlabs Aug 10, 2026
930b90a
Stop the dataframe overlay covering the page, and widen the file-name…
abidlabs Aug 10, 2026
968547b
Record the same endpoints the API page documents
abidlabs Aug 10, 2026
a57714e
Trim the run history tests and document the feature
abidlabs Aug 10, 2026
8a740e5
Merge branch 'main' into agent/browser-run-history
abidlabs Aug 10, 2026
9bfa4f0
Address review feedback on the run history
abidlabs Aug 10, 2026
49c444b
Merge remote-tracking branch 'origin/main' into agent/browser-run-his…
abidlabs Aug 11, 2026
b1fd4bf
Fix pruning of staged run replays
abidlabs Aug 11, 2026
18d03ac
Merge remote-tracking branch 'origin/main' into agent/browser-run-his…
abidlabs Aug 11, 2026
b5f1f8d
Merge branch 'main' into agent/browser-run-history
abidlabs Aug 11, 2026
2276c5c
add changeset
gradio-pr-bot Aug 11, 2026
de6034c
Scope run history per user and add a run_history switch
abidlabs Aug 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions client/js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ export { submit } from "./utils/submit";
export { upload_files } from "./utils/upload_files";
export { FileData, upload, prepare_files } from "./upload";
export { handle_file } from "./helpers/data";
export {
clear_run_history,
consume_run_history_replay,
delete_run_history,
on_run_history_change,
read_run_history,
run_history_url,
stage_run_history_replay,
type StoredRunComponent,
type StoredRun
} from "./utils/run_history";

export type {
SpaceStatus,
Expand Down
Loading
Loading