File size: 211 Bytes
3ac154d
 
43a5ab6
80973c7
3ac154d
c5f1d43
43a5ab6
1
2
3
4
5
6
7
import gradio as gr

def hello(name):
    return {"output":"hi"+name}

application = gr.Interface(fn=hello, inputs="textbox", outputs="textbox", title="Image Detection with API Integration")
application.launch()