ImageX-Clone-16 / app.py
clone3's picture
Update app.py
1de9bec
raw
history blame
235 Bytes
#!/usr/bin/env python
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()