Himanshusingh's picture
Update app.py
29c5704
raw history blame
No virus
218 Bytes
import gradio
def my_inference_function(name):
return "Hello " + name + "!"
gr_interface = gradio.Interface(
fn = my_inference_function,
inputs = "text",
outputs = "text"
)
gr_interface.launch()