Spaces:
Running
Running
import gradio as gr, os | |
gr.load( | |
"models/tonyassi/mgm", # keep the models/ prefix | |
token=os.environ["HF_TOKEN"], # must be non-empty | |
inputs=gr.Textbox(...), | |
examples=[...], | |
title="MGM Film Diffusion", | |
theme=gr.themes.Base(primary_hue="teal", secondary_hue="teal", neutral_hue="slate"), | |
description="""by <a href="https://www.tonyassi.com">Tony Assi</a> ...""" | |
).launch() | |