pierreguillou's picture
Update app.py
e3ce249
raw
history blame
351 Bytes
import gradio as gr
title = "How to duplicate an existing Space?"
description = "POC with [spaces/sberbank-ai/mGPT](https://huggingface.co/spaces/sberbank-ai/mGPT)."
article="""
import gradio as gr
gr.Interface.load('spaces/....').launch()
"""
iface = gr.Interface.load('spaces/sberbank-ai/mGPT', title=title, description=description)
iface.launch()