Replace standalone Studio wording with Unsloth (#7221)

* Replace standalone Studio wording with Unsloth

Replace the single word Studio with Unsloth wherever it is used as
shorthand for Unsloth Studio in docs, CLI output, UI strings, i18n
locales, workflow display names, comments and docstrings.

Kept unchanged: the full name Unsloth Studio, third party product
names (LM Studio, Visual Studio, Mac Studio), feature names
(Recipe Studio, Fine-tuning Studio and its translations), and all
identifiers such as env vars, commands, paths and filenames.

* Address review feedback on the Studio wording rename

Use "an" before Unsloth where the rename left the article as "a".
Restore the split brand where Unsloth and Studio render as two halves
of the full product name: the onboarding sidebar subtitle and the
IPv6 localhost warning. Scope two messages to the full name Unsloth
Studio where plain Unsloth was misleading: the AMD README bullet and
the CLI studio setup error.
This commit is contained in:
Michael Han 2026-07-19 00:47:04 -07:00 committed by GitHub
commit 6d8c18cd1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
264 changed files with 1095 additions and 1095 deletions

View file

@ -20,7 +20,7 @@ client-error responses on the ``/v1/*`` surface:
CRITICAL: the exception handlers installed by :func:`install_api_error_handlers`
are global, but they ONLY transform responses for paths that start with ``/v1/``.
For every other path (``/api/...``, frontend routes) they reproduce FastAPI's
default behavior byte-for-byte, because the Studio frontend depends on the
default behavior byte-for-byte, because the Unsloth frontend depends on the
``{"detail": ...}`` shape for ``/api/*``.
Public contract (other modules depend on these):
@ -107,7 +107,7 @@ def anthropic_error_body(
Returns ``{"type": "error", "request_id": None, "error": {"type", "message"}}``.
``request_id`` is a required (nullable) field on the spec's ErrorResponse;
Studio has no request-id system, so it is null. ``err_type`` defaults to
Unsloth has no request-id system, so it is null. ``err_type`` defaults to
:data:`ANTHROPIC_TYPE_BY_STATUS` for ``status`` (``"api_error"`` fallback).
"""
return {
@ -192,7 +192,7 @@ def install_api_error_handlers(app) -> None:
Both handlers are global but only transform responses for OpenAI/Anthropic-
compatible surfaces (see :func:`wants_api_error_envelope`: the ``/v1/*`` mount
and the preview ``/p/.../v1/*`` mount). Every other path reproduces FastAPI's
default ``{"detail": ...}`` behavior exactly so the Studio frontend keeps working.
default ``{"detail": ...}`` behavior exactly so the Unsloth frontend keeps working.
"""
@app.exception_handler(RequestValidationError)