"""Finetuner Studio — Hugging Face Space demo (GUI-only mode). Spaces run on Linux, so MLX training is unavailable here; the Studio runs in planning mode: dataset loading + automatic format detection, the code generator, recipes and the full UI are live. Clone it on an Apple Silicon Mac for actual training: https://github.com/aykutcayir34/finetuner """ import gradio as gr from finetuner.app import build_app demo = build_app() if __name__ == "__main__": demo.launch(theme=gr.themes.Soft(primary_hue="orange", secondary_hue="slate"))