test-1 / app.py
blackbingris's picture
Upload app.py
7bd8406
raw
history blame contribute delete
No virus
194 Bytes
import gradio as gr
def modelscope_quickstart(name):
return "Welcome to modelscope, " + name + "!!"
demo = gr.Interface(fn=modelscope_quickstart, inputs="text", outputs="text")
demo.launch()