unsloth/studio/frontend/src/features
Daniel Han a8f7b3de57 Address review findings on the image-generation PR
Backend:
- Sanitize a blank hf_token to None in begin_load and load_pipeline, so the
  default empty Studio token loads anonymously instead of 401ing as an explicit
  empty credential.
- Free the ACTIVE diffusion engine before LLM training and in the delete-cached
  guard: on a native (sd_cpp) selection the diffusers singleton reports
  unloaded, so training could start against a live sd-cli generation and
  delete-cached could remove a GGUF the native engine is using. Both now go
  through diffusion_engine_router.get_active_diffusion_engine().
- Refuse delete-cached while a background image load is downloading the repo
  (or its companion base): status().loaded is False in that window, but the
  delete would yank blobs from under the in-flight assembly. Both engines
  expose the in-flight ids via a new loading_repo_ids().
- Cap request seeds at 2**53-1: seeds round-trip through JSON gallery recipes,
  where JavaScript rounds larger integers, so a restored recipe generated a
  different image. Random seeds were already masked to this range.
- Add the task field to CachedModelRepo: the handler sets it for cached
  diffusers image repos but response_model silently dropped it, letting
  image-only repos pass the chat picker's task gate.

Frontend:
- Offset sequential run seeds by the batch size: the native engine seeds image
  j of a run at seed+j, so a +1 run offset regenerated the previous run's
  batch-mates.
- Revert the optimistic quant selection when a load fails to start.
- Stop disabling the Images page on chat-only hosts: the native sd.cpp engine
  exists exactly for the no-GPU route.
2026-07-02 02:17:57 +00:00
..
auth studio: let users change their password from Settings (#6520) 2026-06-22 07:49:13 -07:00
chat Merge remote-tracking branch 'origin/main' into image-generation 2026-07-01 10:47:21 +00:00
data-recipes Fix recent trainings scope (#6571) 2026-06-22 06:24:04 -07:00
export Studio: imatrix GGUF option and FP8/NVFP4 compressed export in the export UI (#6729) 2026-06-30 03:41:02 -07:00
hub studio: allow updating HF models through UI (#5388) 2026-07-01 01:54:57 +03:00
images Address review findings on the image-generation PR 2026-07-02 02:17:57 +00:00
native-intents studio: let users change their password from Settings (#6520) 2026-06-22 07:49:13 -07:00
onboarding (feat) Add project names to studio training runs (#6512) 2026-06-29 16:06:36 +02:00
profile studio: persist personalization (profile, avatar, theme) server-side (#6516) 2026-06-22 04:09:48 -07:00
rag Whole-document context for RAG chat attachments (#6693) 2026-06-30 15:55:23 +02:00
recipe-studio Studio: harden background consumer loops and streaming paths against silent UI freezes (#6653) 2026-06-26 03:31:33 -07:00
security Studio: persistent per-user trust_remote_code approval cache (#6551) 2026-06-22 05:12:49 -07:00
settings Studio: require signed capability tokens for /p preview links (#6666) 2026-06-25 21:40:48 -07:00
studio (feat) Add project names to studio training runs (#6512) 2026-06-29 16:06:36 +02:00
tour Studio: unify shadows, backgrounds and dark mode consistency in chat UI (#6116) 2026-06-10 03:09:37 -07:00
training (feat) Add project names to studio training runs (#6512) 2026-06-29 16:06:36 +02:00