"""Signpost for the merged Space. Kimodo's models and native runtime moved to Luminia/Kimodo-cpp_momask-codes, so this app holds no weights and starts instantly. Links carry target="_blank" because a Space renders inside a sandboxed iframe and huggingface.co refuses to load in a frame, so a same-frame click dies on X-Frame-Options. """ import gradio as gr NEW = "https://huggingface.co/spaces/Luminia/Kimodo-cpp_momask-codes" NOTICE = f"""

This Space has moved

Kimodo cpp now lives with MoMask

Kimodo text to motion has been merged into a single Space alongside MoMask. Both models are still on free CPU, one tab each, and nothing was removed.

Open Luminia/Kimodo-cpp_momask-codes

""" CSS = """ footer{display:none} .gradio-container{padding:8px !important} :where(a):focus-visible{outline:2px solid #c2185b !important;outline-offset:3px} @media (prefers-reduced-motion:reduce){*,*::before,*::after{ animation-duration:.01ms !important;transition-duration:.01ms !important}} """ with gr.Blocks(title="Kimodo cpp has moved", fill_width=True) as demo: gr.HTML(NOTICE) if __name__ == "__main__": demo.launch(css=CSS)