# SPDX-License-Identifier: AGPL-3.0-only # Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0 """ Colab helpers for Unsloth Studio. Uses Colab's built-in proxy. """ from pathlib import Path import sys # Seed platform._sys_version_cache before attrs->rich->structlog->platform crash on conda Python. # See: https://github.com/python/cpython/issues/102396 _backend_dir = str(Path(__file__).parent) if _backend_dir not in sys.path: sys.path.insert(0, _backend_dir) import _platform_compat # noqa: F401 from loggers import get_logger logger = get_logger(__name__) def get_colab_url(port: int = 8888) -> str: """ Get the Colab proxy URL for a port. Retries up to 3 times, validating the result is a real HTTPS Colab URL. Falls back to http://localhost:{port} only when all attempts fail. """ import time as _time fallback = f"http://localhost:{port}" try: from google.colab.output import eval_js except ImportError: return fallback for attempt in range(3): try: url = eval_js(f"google.colab.kernel.proxyPort({port})", timeout_sec = 10) # Valid proxy URL is https:// and embeds the port. if url and isinstance(url, str) and url.startswith("https://") and str(port) in url: return url.rstrip("/") except Exception as e: logger.info(f"Note: Could not get Colab URL (attempt {attempt + 1}/3: {e})") if attempt < 2: _time.sleep(1) logger.warning( f"Could not get a valid Colab proxy URL after 3 attempts — using localhost fallback. " f"The link/iframe may not work from outside the runtime." ) return fallback def show_link(port: int = 8888, *, _url: "str | None" = None): """Display a styled clickable link to the UI. *_url* is an optional pre-fetched proxy URL; pass it to avoid a second eval_js round-trip. """ from IPython.display import display, HTML url = _url if _url is not None else get_colab_url(port) # Truncated display URL; try/except so an odd URL shape still renders the link. try: port_prefix = f"{port}-" idx = url.index(port_prefix) next_dash = url.index("-", idx + len(port_prefix)) short_url = url[: next_dash + 1] + "..." except (ValueError, IndexError): short_url = url # Plain-text line so the URL shows even if HTML display fails. logger.info(f"🌐 Unsloth Studio URL: {url}") html = f"""

Unsloth Studio is Ready!

Open Unsloth Studio

If the link doesn't work, you can scroll down to view the UI generated directly in Colab.

{short_url}

""" display(HTML(html)) def _bootstrap_password_pending() -> bool: """True while the default admin still owes a bootstrap-password change. While pending, main.py injects that password into same-origin GETs, and a public tunnel GET (no Origin) reads as same-origin, so sharing the link would leak admin access. Fails safe to pending if the state cannot be read. """ try: from auth.storage import requires_password_change, DEFAULT_ADMIN_USERNAME return bool(requires_password_change(DEFAULT_ADMIN_USERNAME)) except Exception as e: logger.info(f"Could not check admin password state ({e}); refusing tunnel to be safe.") return True def start_cloudflare_tunnel(port: int) -> "str | None": """Open a shareable Cloudflare quick tunnel to localhost:*port*, or None. run_server suppresses the tunnel on Colab by design, so we start it directly. Refused while the bootstrap password is pending; any failure collapses to None and the Colab proxy still works. """ if _bootstrap_password_pending(): logger.warning( "Cloudflare link not started: the admin account still has its temporary " "bootstrap password, which is exposed to anyone who can load the page. " "Open Studio in this tab, log in and change the admin password, then re-run " "start(cloudflare=True) to get the shareable link." ) return None try: from cloudflare_tunnel import start_studio_tunnel except Exception as e: logger.info(f"Cloudflare tunnel unavailable ({e}); using Colab proxy only.") return None try: url = start_studio_tunnel(port) except Exception as e: logger.info(f"Cloudflare tunnel failed to start ({e}); using Colab proxy only.") return None # Success is logged by _show_and_embed; note only misses here. if not url: logger.info("Cloudflare tunnel did not produce a URL; using Colab proxy only.") return url def _publish_cloudflare_url(cloudflare_url: "str | None") -> None: """Publish a directly-started tunnel URL onto app.state so /api/health advertises it. run_server only sets this when it opens the tunnel itself, which it skips on Colab, so we set it here. Otherwise the frontend's API examples fall back to an unreachable server_url. Best-effort. """ if not cloudflare_url: return try: from main import app as _studio_app _studio_app.state.cloudflare_url = cloudflare_url except Exception as e: logger.info(f"Could not publish Cloudflare URL to /api/health ({e}).") def _stop_cloudflare_tunnel() -> None: """Best-effort teardown of the Cloudflare tunnel started by start_cloudflare_tunnel.""" try: from cloudflare_tunnel import stop_studio_tunnel stop_studio_tunnel() except Exception: pass # Stop /api/health advertising a dead tunnel. try: from main import app as _studio_app _studio_app.state.cloudflare_url = None except Exception: pass def _is_studio_healthy(port: int, timeout: float = 2.0) -> bool: """True only if Unsloth Studio (not some other app) answers /api/health on *port*. The service-marker check stops the reuse path reusing or tunneling a foreign process that merely serves /api/health. """ import json, urllib.request try: with urllib.request.urlopen(f"http://localhost:{port}/api/health", timeout = timeout) as r: return json.loads(r.read()).get("service") == "Unsloth UI Backend" except Exception: return False def _shareable_link_html(cloudflare_url: str) -> str: """Branded card for the shareable Cloudflare link, styled like the show_link banner.""" return f"""

Shareable Studio Link is Ready!

Open Unsloth Studio

This Cloudflare HTTPS link works from any device — share it with anyone. The Colab view below only works in this tab.

🔗 {cloudflare_url}

""" def _show_and_embed(port: int, *, cloudflare_url: "str | None" = None): """Render the Studio header + iframe for *port*, with a shareable-link card above when *cloudflare_url* is set. Falls back to serve_kernel_port_as_iframe.""" url = get_colab_url(port) logger.info(f"🌐 Unsloth Studio URL: {url}") if cloudflare_url: logger.info(f"🔗 Shareable Cloudflare link: {cloudflare_url}") try: from IPython.display import HTML, display iframe_id = f"unsloth-studio-{port}" # Truncated header URL — best-effort, falls back to full URL. try: port_prefix = f"{port}-" idx = url.index(port_prefix) next_dash = url.index("-", idx + len(port_prefix)) short_url = url[: next_dash + 1] + "..." except (ValueError, IndexError): short_url = url if cloudflare_url: display(HTML(_shareable_link_html(cloudflare_url))) display( HTML(f"""
Unsloth Studio {short_url}
""") ) except Exception: # Fallback: Colab's built-in helper. try: from google.colab import output as colab_output colab_output.serve_kernel_port_as_iframe(port, height = 900, width = "100%") except ImportError: pass def start(port: int = 8888, *, cloudflare: bool = False): """Start Unsloth Studio in Colab and display the URL. Args: port: Port to bind/serve on. cloudflare: Opt in to a shareable Cloudflare HTTPS link reachable from any device (default OFF). It exposes Studio's login page beyond Colab, so it stays an explicit opt-in; the default shows only the in-tab proxy iframe. Usage: start() # Colab-proxy iframe only (default) start(cloudflare=True) # also open a shareable Cloudflare link """ import time logger.info("🦥 Starting Unsloth Studio...") # Fast path: Studio already running (cell re-run). Re-launching would collide on # the port, so just re-show the link and iframe. if _is_studio_healthy(port): logger.info(f" Studio is already running on port {port} — reusing existing server.") # try/finally: tear the tunnel down even if interrupted mid-start/render. try: cf_url = start_cloudflare_tunnel(port) if cloudflare else None _publish_cloudflare_url(cf_url) _show_and_embed(port, cloudflare_url = cf_url) for _ in range(10000): time.sleep(300) print("=", end = "", flush = True) except KeyboardInterrupt: logger.info("\nUnsloth Studio keepalive stopped.") finally: _stop_cloudflare_tunnel() return logger.info(" Loading backend...") from run import run_server # Auto-detect frontend path repo_root = Path(__file__).parent.parent frontend_path = repo_root / "frontend" / "dist" if not (frontend_path / "index.html").exists(): logger.info("❌ Frontend not built! Please run the setup cell first.") return logger.info(" Starting server...") try: # cloudflare=False: this helper owns the tunnel. run_server's default True # would tunnel this 0.0.0.0 bind if Colab detection fails, breaking the opt-out. app = run_server( host = "0.0.0.0", port = port, frontend_path = frontend_path, silent = True, cloudflare = False, ) except SystemExit as exc: logger.error(f"❌ Unsloth Studio failed to start: {exc}") return except Exception as exc: logger.error(f"❌ Unsloth Studio failed to start: {exc}") return # run_server auto-increments the port if in use; read back the bound port so the # proxy URL and iframe point at the right place. actual_port: int = getattr(getattr(app, "state", None), "server_port", None) or port logger.info(f" Server started on port {actual_port}!") # Poll health endpoint before showing the link — avoids the race where ready_event # fires but the process hasn't finished binding. import urllib.request server_ready = False for _ in range(40): try: with urllib.request.urlopen(f"http://localhost:{actual_port}/api/health", timeout = 1): server_ready = True break except Exception: time.sleep(0.5) if not server_ready: logger.error( f"❌ Unsloth Studio did not become healthy on port {actual_port}. " "Check for errors above." ) return # Open the tunnel now the server is healthy, publish its URL for /api/health, and # tear it down on interrupt (try/finally) rather than orphan the process. try: cf_url = start_cloudflare_tunnel(actual_port) if cloudflare else None _publish_cloudflare_url(cf_url) _show_and_embed(actual_port, cloudflare_url = cf_url) # Keep kernel alive so the daemon server thread runs. for _ in range(10000): time.sleep(300) print("=", end = "", flush = True) except KeyboardInterrupt: logger.info("\nUnsloth Studio keepalive stopped.") finally: _stop_cloudflare_tunnel() if __name__ == "__main__": start()