tonyassi's picture
Update app.py
cc765d2 verified
raw
history blame
409 Bytes
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()