Himanshusingh's picture
Test Version
a11ee17
raw
history blame
No virus
223 Bytes
import gradio as gr
def my_inference_function(name):
return "Hello " + name + "!"
gr_interface = gr.Interface(
fn = "my_inference_function",
input = "texts",
outputs = "texts"
)
gr_interface.launch()