my-space / app.py
rewebution
Creating app.py
fb7b0b1
raw history blame
No virus
229 Bytes
import gradio
def my_inference_function(name):
return "Hello " + name
gradio_interface = gradio.Interface(
fn=my_inference_function,
inputs="text",
outputs="text",
)
gradio.Interface.launch()