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